X-Git-Url: https://notaz.gp2x.de/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=host%2Fmain.c;h=434eaa9282a2fec90ac8fc83a71ac5947ca62689;hb=c28a7c811e2c4a565acfa04f57ad02d406692b7e;hp=2f1305984c06cb5880a0fbe9a47104001db87273;hpb=3749560710748f1dce697d6933bd8a101567a764;p=megadrive.git diff --git a/host/main.c b/host/main.c index 2f13059..434eaa9 100644 --- a/host/main.c +++ b/host/main.c @@ -1,3 +1,28 @@ +/* + * TeensyTAS, TAS input player for MegaDrive + * Copyright (c) 2014 notaz + * + * Permission is hereby granted, free of charge, to any person obtaining + * a copy of this software and associated documentation files (the + * "Software"), to deal in the Software without restriction, including + * without limitation the rights to use, copy, modify, merge, publish, + * distribute, sublicense, and/or sell copies of the Software, and to + * permit persons to whom the Software is furnished to do so, subject to + * the following conditions: + * + * The above copyright notice and this permission notice shall be + * included in all copies or substantial portions of the Software. + * + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, + * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF + * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND + * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS + * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN + * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN + * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE + * SOFTWARE. + */ + #include #include #include @@ -587,13 +612,22 @@ out: return 2; } -static int tas_data_to_teensy(uint8_t b, uint8_t *data) +static int tas_data_to_teensy(uint8_t b, uint8_t *data, FILE *logf) { + uint8_t t; + /* SCBA RLDU */ /* v */ /* ?0SA 00DU, ?1CB RLDU */ data[0] = (b & 0x13) | ((b >> 2) & 0x20); data[1] = (b & 0x0f) | ((b >> 1) & 0x30); + + if (logf != NULL) { + fwrite(&data[0], 1, 1, logf); + t = data[1] | 0x40; // expected TH + fwrite(&t, 1, 1, logf); + } + return 2; } @@ -636,6 +670,7 @@ int main(int argc, char *argv[]) fd_set rfds, wfds; const char *tasfn = NULL; const char *outfn = NULL; + const char *logfn = NULL; uint8_t *tas_data = NULL; int use_vsync = 0; // frame increment on vsync int tas_skip = 0; @@ -649,6 +684,7 @@ int main(int argc, char *argv[]) struct timeval *timeout = NULL; struct timeval tout; FILE *outf = NULL; + FILE *logf = NULL; int i, ret = -1; int fd; @@ -667,6 +703,12 @@ int main(int argc, char *argv[]) missing_arg(i); outfn = argv[i]; continue; + case 'l': + i++; + if (argv[i] == NULL) + missing_arg(i); + logfn = argv[i]; + continue; case 's': i++; if (argv[i] == NULL) @@ -775,7 +817,16 @@ int main(int argc, char *argv[]) if (outfn != NULL) { outf = fopen(outfn, "w"); if (outf == NULL) { - fprintf(stderr, "fopen %s: ", tasfn); + fprintf(stderr, "fopen %s: ", outfn); + perror(""); + return 1; + } + } + + if (logfn != NULL) { + logf = fopen(logfn, "wb"); + if (logf == NULL) { + fprintf(stderr, "fopen %s: ", logfn); perror(""); return 1; } @@ -863,6 +914,8 @@ int main(int argc, char *argv[]) switch (c) { case 'r': enable_sent = 0; + if (logf != NULL) + rewind(logf); break; } } @@ -921,7 +974,7 @@ int main(int argc, char *argv[]) for (i = 0; i < sizeof(pkt_out.data); ) { i += tas_data_to_teensy(tas_data[frames_sent], - pkt_out.data + i); + pkt_out.data + i, logf); frames_sent++; if (frames_sent >= frame_count) @@ -929,8 +982,11 @@ int main(int argc, char *argv[]) } pkt_out.size = i; } - else + else { pkt_out.type = PKT_STREAM_END; + if (logf != NULL) + fflush(logf); + } ret = submit_urb(dev.fd, &urb[URB_DATA_OUT], dev.ifaces[0].ep_out, &pkt_out, sizeof(pkt_out)); @@ -963,6 +1019,12 @@ int main(int argc, char *argv[]) /* debug text */ buf_dbg[reaped_urb->actual_length] = 0; printf("%s", buf_dbg); + + // continue receiving debug before sending out stuff + tout.tv_sec = 0; + tout.tv_usec = 1000; + timeout = &tout; + continue; } else { fprintf(stderr, "reaped unknown urb? %p #%zu\n", @@ -1033,6 +1095,8 @@ dev_close: if (outf != NULL) fclose(outf); + if (logf != NULL) + fclose(logf); if (dev.fd != -1) { /* deal with pending URBs */