1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202
|
/***********************************************************************************
Snes9x - Portable Super Nintendo Entertainment System (TM) emulator.
(c) Copyright 1996 - 2002 Gary Henderson (gary.henderson@ntlworld.com),
Jerremy Koot (jkoot@snes9x.com)
(c) Copyright 2002 - 2004 Matthew Kendora
(c) Copyright 2002 - 2005 Peter Bortas (peter@bortas.org)
(c) Copyright 2004 - 2005 Joel Yliluoma (http://iki.fi/bisqwit/)
(c) Copyright 2001 - 2006 John Weidman (jweidman@slip.net)
(c) Copyright 2002 - 2006 funkyass (funkyass@spam.shaw.ca),
Kris Bleakley (codeviolation@hotmail.com)
(c) Copyright 2002 - 2010 Brad Jorsch (anomie@users.sourceforge.net),
Nach (n-a-c-h@users.sourceforge.net),
(c) Copyright 2002 - 2011 zones (kasumitokoduck@yahoo.com)
(c) Copyright 2006 - 2007 nitsuja
(c) Copyright 2009 - 2011 BearOso,
OV2
BS-X C emulator code
(c) Copyright 2005 - 2006 Dreamer Nom,
zones
C4 x86 assembler and some C emulation code
(c) Copyright 2000 - 2003 _Demo_ (_demo_@zsnes.com),
Nach,
zsKnight (zsknight@zsnes.com)
C4 C++ code
(c) Copyright 2003 - 2006 Brad Jorsch,
Nach
DSP-1 emulator code
(c) Copyright 1998 - 2006 _Demo_,
Andreas Naive (andreasnaive@gmail.com),
Gary Henderson,
Ivar (ivar@snes9x.com),
John Weidman,
Kris Bleakley,
Matthew Kendora,
Nach,
neviksti (neviksti@hotmail.com)
DSP-2 emulator code
(c) Copyright 2003 John Weidman,
Kris Bleakley,
Lord Nightmare (lord_nightmare@users.sourceforge.net),
Matthew Kendora,
neviksti
DSP-3 emulator code
(c) Copyright 2003 - 2006 John Weidman,
Kris Bleakley,
Lancer,
z80 gaiden
DSP-4 emulator code
(c) Copyright 2004 - 2006 Dreamer Nom,
John Weidman,
Kris Bleakley,
Nach,
z80 gaiden
OBC1 emulator code
(c) Copyright 2001 - 2004 zsKnight,
pagefault (pagefault@zsnes.com),
Kris Bleakley
Ported from x86 assembler to C by sanmaiwashi
SPC7110 and RTC C++ emulator code used in 1.39-1.51
(c) Copyright 2002 Matthew Kendora with research by
zsKnight,
John Weidman,
Dark Force
SPC7110 and RTC C++ emulator code used in 1.52+
(c) Copyright 2009 byuu,
neviksti
S-DD1 C emulator code
(c) Copyright 2003 Brad Jorsch with research by
Andreas Naive,
John Weidman
S-RTC C emulator code
(c) Copyright 2001 - 2006 byuu,
John Weidman
ST010 C++ emulator code
(c) Copyright 2003 Feather,
John Weidman,
Kris Bleakley,
Matthew Kendora
Super FX x86 assembler emulator code
(c) Copyright 1998 - 2003 _Demo_,
pagefault,
zsKnight
Super FX C emulator code
(c) Copyright 1997 - 1999 Ivar,
Gary Henderson,
John Weidman
Sound emulator code used in 1.5-1.51
(c) Copyright 1998 - 2003 Brad Martin
(c) Copyright 1998 - 2006 Charles Bilyue'
Sound emulator code used in 1.52+
(c) Copyright 2004 - 2007 Shay Green (gblargg@gmail.com)
SH assembler code partly based on x86 assembler code
(c) Copyright 2002 - 2004 Marcus Comstedt (marcus@mc.pp.se)
2xSaI filter
(c) Copyright 1999 - 2001 Derek Liauw Kie Fa
HQ2x, HQ3x, HQ4x filters
(c) Copyright 2003 Maxim Stepin (maxim@hiend3d.com)
NTSC filter
(c) Copyright 2006 - 2007 Shay Green
GTK+ GUI code
(c) Copyright 2004 - 2011 BearOso
Win32 GUI code
(c) Copyright 2003 - 2006 blip,
funkyass,
Matthew Kendora,
Nach,
nitsuja
(c) Copyright 2009 - 2011 OV2
Mac OS GUI code
(c) Copyright 1998 - 2001 John Stiles
(c) Copyright 2001 - 2011 zones
Specific ports contains the works of other authors. See headers in
individual files.
Snes9x homepage: http://www.snes9x.com/
Permission to use, copy, modify and/or distribute Snes9x in both binary
and source form, for non-commercial purposes, is hereby granted without
fee, providing that this license information and copyright notice appear
with all copies and any derived work.
This software is provided 'as-is', without any express or implied
warranty. In no event shall the authors be held liable for any damages
arising from the use of this software or it's derivatives.
Snes9x is freeware for PERSONAL USE only. Commercial users should
seek permission of the copyright holders first. Commercial use includes,
but is not limited to, charging money for Snes9x or software derived from
Snes9x, including Snes9x or derivatives in commercial game bundles, and/or
using Snes9x as a promotion for your commercial product.
The copyright holders request that bug fixes and improvements to the code
should be forwarded to them so everyone can benefit from the modifications
in future versions.
Super NES and Super Nintendo Entertainment System are trademarks of
Nintendo Co., Limited and its subsidiary companies.
***********************************************************************************/
// Input recording/playback code
// (c) Copyright 2004 blip
#ifndef __WIN32__
#include <unistd.h>
#endif
#include "snes9x.h"
#include "memmap.h"
#include "controls.h"
#include "snapshot.h"
#include "movie.h"
#include "language.h"
#ifdef NETPLAY_SUPPORT
#include "netplay.h"
#endif
#ifdef __WIN32__
#include <io.h>
#ifndef W_OK
#define W_OK 2
#endif
#define ftruncate chsize
#endif
#define SMV_MAGIC 0x1a564d53 // SMV0x1a
#define SMV_VERSION 5
#define SMV_HEADER_SIZE 64
#define SMV_EXTRAROMINFO_SIZE 30
#define BUFFER_GROWTH_SIZE 4096
enum MovieState
{
MOVIE_STATE_NONE = 0,
MOVIE_STATE_PLAY,
MOVIE_STATE_RECORD
};
struct SMovie
{
enum MovieState State;
FILE *File;
char Filename[PATH_MAX + 1];
char ROMName[23];
uint32 ROMCRC32;
uint32 MovieId;
uint32 Version;
uint32 SaveStateOffset;
uint32 ControllerDataOffset;
uint8 ControllersMask;
uint8 Opts;
uint8 SyncFlags;
uint32 MaxFrame;
uint32 MaxSample;
uint32 CurrentFrame;
uint32 CurrentSample;
uint32 BytesPerSample;
uint32 RerecordCount;
bool8 ReadOnly;
uint8 PortType[2];
int8 PortIDs[2][4];
uint8 *InputBuffer;
uint8 *InputBufferPtr;
uint32 InputBufferSize;
};
static struct SMovie Movie;
static uint8 prevPortType[2];
static int8 prevPortIDs[2][4];
static bool8 prevMouseMaster, prevSuperScopeMaster, prevJustifierMaster, prevMultiPlayer5Master;
static uint8 Read8 (uint8 *&);
static uint16 Read16 (uint8 *&);
static uint32 Read32 (uint8 *&);
static void Write8 (uint8, uint8 *&);
static void Write16 (uint16, uint8 *&);
static void Write32 (uint32, uint8 *&);
static void store_previous_settings (void);
static void restore_previous_settings (void);
static void store_movie_settings (void);
static void restore_movie_settings (void);
static int bytes_per_sample (void);
static void reserve_buffer_space (uint32);
static void reset_controllers (void);
static void read_frame_controller_data (bool);
static void write_frame_controller_data (void);
static void flush_movie (void);
static void truncate_movie (void);
static int read_movie_header (FILE *, SMovie *);
static int read_movie_extrarominfo (FILE *, SMovie *);
static void write_movie_header (FILE *, SMovie *);
static void write_movie_extrarominfo (FILE *, SMovie *);
static void change_state (MovieState);
// HACK: reduce movie size by not storing changes that can only affect polled input in the movie for these types,
// because currently no port sets these types to polling
#define SKIPPED_POLLING_PORT_TYPE(x) (((x) == CTL_NONE) || ((x) == CTL_JOYPAD) || ((x) == CTL_MP5))
#ifndef max
#define max(a, b) (((a) > (b)) ? (a) : (b))
#endif
static uint8 Read8 (uint8 *&ptr)
{
uint8 v = *ptr++;
return (v);
}
static uint16 Read16 (uint8 *&ptr)
{
uint16 v = READ_WORD(ptr);
ptr += 2;
return (v);
}
static uint32 Read32 (uint8 *&ptr)
{
uint32 v = READ_DWORD(ptr);
ptr += 4;
return (v);
}
static void Write8 (uint8 v, uint8 *&ptr)
{
*ptr++ = v;
}
static void Write16 (uint16 v, uint8 *&ptr)
{
WRITE_WORD(ptr, v);
ptr += 2;
}
static void Write32 (uint32 v, uint8 *&ptr)
{
WRITE_DWORD(ptr, v);
ptr += 4;
}
static void store_previous_settings (void)
{
for (int i = 0; i < 2; i++)
{
enum controllers pt;
S9xGetController(i, &pt, &prevPortIDs[i][0], &prevPortIDs[i][1], &prevPortIDs[i][2], &prevPortIDs[i][3]);
prevPortType[i] = (uint8) pt;
}
prevMouseMaster = Settings.MouseMaster;
prevSuperScopeMaster = Settings.SuperScopeMaster;
prevJustifierMaster = Settings.JustifierMaster;
prevMultiPlayer5Master = Settings.MultiPlayer5Master;
}
static void restore_previous_settings (void)
{
Settings.MouseMaster = prevMouseMaster;
Settings.SuperScopeMaster = prevSuperScopeMaster;
Settings.JustifierMaster = prevJustifierMaster;
Settings.MultiPlayer5Master = prevMultiPlayer5Master;
S9xSetController(0, (enum controllers) prevPortType[0], prevPortIDs[0][0], prevPortIDs[0][1], prevPortIDs[0][2], prevPortIDs[0][3]);
S9xSetController(1, (enum controllers) prevPortType[1], prevPortIDs[1][0], prevPortIDs[1][1], prevPortIDs[1][2], prevPortIDs[1][3]);
}
static void store_movie_settings (void)
{
for (int i = 0; i < 2; i++)
{
enum controllers pt;
S9xGetController(i, &pt, &Movie.PortIDs[i][0], &Movie.PortIDs[i][1], &Movie.PortIDs[i][2], &Movie.PortIDs[i][3]);
Movie.PortType[i] = (uint8) pt;
}
}
static void restore_movie_settings (void)
{
Settings.MouseMaster = (Movie.PortType[0] == CTL_MOUSE || Movie.PortType[1] == CTL_MOUSE);
Settings.SuperScopeMaster = (Movie.PortType[0] == CTL_SUPERSCOPE || Movie.PortType[1] == CTL_SUPERSCOPE);
Settings.JustifierMaster = (Movie.PortType[0] == CTL_JUSTIFIER || Movie.PortType[1] == CTL_JUSTIFIER);
Settings.MultiPlayer5Master = (Movie.PortType[0] == CTL_MP5 || Movie.PortType[1] == CTL_MP5);
S9xSetController(0, (enum controllers) Movie.PortType[0], Movie.PortIDs[0][0], Movie.PortIDs[0][1], Movie.PortIDs[0][2], Movie.PortIDs[0][3]);
S9xSetController(1, (enum controllers) Movie.PortType[1], Movie.PortIDs[1][0], Movie.PortIDs[1][1], Movie.PortIDs[1][2], Movie.PortIDs[1][3]);
}
static int bytes_per_sample (void)
{
int num_controllers = 0;
for (int i = 0; i < 8; i++)
{
if (Movie.ControllersMask & (1 << i))
num_controllers++;
}
int bytes = CONTROLLER_DATA_SIZE * num_controllers;
for (int p = 0; p < 2; p++)
{
if (Movie.PortType[p] == CTL_MOUSE)
bytes += MOUSE_DATA_SIZE;
else
if (Movie.PortType[p] == CTL_SUPERSCOPE)
bytes += SCOPE_DATA_SIZE;
else
if (Movie.PortType[p] == CTL_JUSTIFIER)
bytes += JUSTIFIER_DATA_SIZE;
}
return (bytes);
}
static void reserve_buffer_space (uint32 space_needed)
{
if (space_needed > Movie.InputBufferSize)
{
uint32 ptr_offset = Movie.InputBufferPtr - Movie.InputBuffer;
uint32 alloc_chunks = space_needed / BUFFER_GROWTH_SIZE;
Movie.InputBufferSize = BUFFER_GROWTH_SIZE * (alloc_chunks + 1);
Movie.InputBuffer = (uint8 *) realloc(Movie.InputBuffer, Movie.InputBufferSize);
Movie.InputBufferPtr = Movie.InputBuffer + ptr_offset;
}
}
static void reset_controllers (void)
{
for (int i = 0; i < 8; i++)
MovieSetJoypad(i, 0);
uint8 clearedMouse[MOUSE_DATA_SIZE];
memset(clearedMouse, 0, MOUSE_DATA_SIZE);
clearedMouse[4] = 1;
uint8 clearedScope[SCOPE_DATA_SIZE];
memset(clearedScope, 0, SCOPE_DATA_SIZE);
uint8 clearedJustifier[JUSTIFIER_DATA_SIZE];
memset(clearedJustifier, 0, JUSTIFIER_DATA_SIZE);
for (int p = 0; p < 2; p++)
{
MovieSetMouse(p, clearedMouse, true);
MovieSetScope(p, clearedScope);
MovieSetJustifier(p, clearedJustifier);
}
}
static void read_frame_controller_data (bool addFrame)
{
// reset code check
if (Movie.InputBufferPtr[0] == 0xff)
{
bool reset = true;
for (int i = 1; i < (int) Movie.BytesPerSample; i++)
{
if (Movie.InputBufferPtr[i] != 0xff)
{
reset = false;
break;
}
}
if (reset)
{
Movie.InputBufferPtr += Movie.BytesPerSample;
S9xSoftReset();
return;
}
}
for (int i = 0; i < 8; i++)
{
if (Movie.ControllersMask & (1 << i))
MovieSetJoypad(i, Read16(Movie.InputBufferPtr));
else
MovieSetJoypad(i, 0); // pretend the controller is disconnected
}
for (int p = 0; p < 2; p++)
{
if (Movie.PortType[p] == CTL_MOUSE)
{
uint8 buf[MOUSE_DATA_SIZE];
memcpy(buf, Movie.InputBufferPtr, MOUSE_DATA_SIZE);
Movie.InputBufferPtr += MOUSE_DATA_SIZE;
MovieSetMouse(p, buf, !addFrame);
}
else
if (Movie.PortType[p] == CTL_SUPERSCOPE)
{
uint8 buf[SCOPE_DATA_SIZE];
memcpy(buf, Movie.InputBufferPtr, SCOPE_DATA_SIZE);
Movie.InputBufferPtr += SCOPE_DATA_SIZE;
MovieSetScope(p, buf);
}
else
if (Movie.PortType[p] == CTL_JUSTIFIER)
{
uint8 buf[JUSTIFIER_DATA_SIZE];
memcpy(buf, Movie.InputBufferPtr, JUSTIFIER_DATA_SIZE);
Movie.InputBufferPtr += JUSTIFIER_DATA_SIZE;
MovieSetJustifier(p, buf);
}
}
}
static void write_frame_controller_data (void)
{
reserve_buffer_space((uint32) (Movie.InputBufferPtr + Movie.BytesPerSample - Movie.InputBuffer));
for (int i = 0; i < 8; i++)
{
if (Movie.ControllersMask & (1 << i))
Write16(MovieGetJoypad(i), Movie.InputBufferPtr);
else
MovieSetJoypad(i, 0); // pretend the controller is disconnected
}
for (int p = 0; p < 2; p++)
{
if (Movie.PortType[p] == CTL_MOUSE)
{
uint8 buf[MOUSE_DATA_SIZE];
MovieGetMouse(p, buf);
memcpy(Movie.InputBufferPtr, buf, MOUSE_DATA_SIZE);
Movie.InputBufferPtr += MOUSE_DATA_SIZE;
}
else
if (Movie.PortType[p] == CTL_SUPERSCOPE)
{
uint8 buf[SCOPE_DATA_SIZE];
MovieGetScope(p, buf);
memcpy(Movie.InputBufferPtr, buf, SCOPE_DATA_SIZE);
Movie.InputBufferPtr += SCOPE_DATA_SIZE;
}
else
if (Movie.PortType[p] == CTL_JUSTIFIER)
{
uint8 buf[JUSTIFIER_DATA_SIZE];
MovieGetJustifier(p, buf);
memcpy(Movie.InputBufferPtr, buf, JUSTIFIER_DATA_SIZE);
Movie.InputBufferPtr += JUSTIFIER_DATA_SIZE;
}
}
}
static void flush_movie (void)
{
if (!Movie.File)
return;
fseek(Movie.File, 0, SEEK_SET);
write_movie_header(Movie.File, &Movie);
fseek(Movie.File, Movie.ControllerDataOffset, SEEK_SET);
size_t ignore;
ignore = fwrite(Movie.InputBuffer, 1, Movie.BytesPerSample * (Movie.MaxSample + 1), Movie.File);
}
static void truncate_movie (void)
{
if (!Movie.File || !Settings.MovieTruncate)
return;
if (Movie.SaveStateOffset > Movie.ControllerDataOffset)
return;
int ignore;
ignore = ftruncate(fileno(Movie.File), Movie.ControllerDataOffset + Movie.BytesPerSample * (Movie.MaxSample + 1));
}
static int read_movie_header (FILE *fd, SMovie *movie)
{
uint32 value;
uint8 buf[SMV_HEADER_SIZE], *ptr = buf;
if (fread(buf, 1, SMV_HEADER_SIZE, fd) != SMV_HEADER_SIZE)
return (WRONG_FORMAT);
value = Read32(ptr);
if (value != SMV_MAGIC)
return (WRONG_FORMAT);
value = Read32(ptr);
if(value > SMV_VERSION || value < 4)
return (WRONG_VERSION);
movie->Version = value;
movie->MovieId = Read32(ptr);
movie->RerecordCount = Read32(ptr);
movie->MaxFrame = Read32(ptr);
movie->ControllersMask = Read8(ptr);
movie->Opts = Read8(ptr);
ptr++;
movie->SyncFlags = Read8(ptr);
movie->SaveStateOffset = Read32(ptr);
movie->ControllerDataOffset = Read32(ptr);
movie->MaxSample = Read32(ptr);
movie->PortType[0] = Read8(ptr);
movie->PortType[1] = Read8(ptr);
for (int p = 0; p < 2; p++)
{
for (int i = 0; i < 4; i++)
movie->PortIDs[p][i] = Read8(ptr);
}
if (movie->MaxSample < movie->MaxFrame)
movie->MaxSample = movie->MaxFrame;
return (SUCCESS);
}
static int read_movie_extrarominfo (FILE *fd, SMovie *movie)
{
uint8 buf[SMV_EXTRAROMINFO_SIZE], *ptr = buf;
fseek(fd, movie->SaveStateOffset - SMV_EXTRAROMINFO_SIZE, SEEK_SET);
if (fread(buf, 1, SMV_EXTRAROMINFO_SIZE, fd) != SMV_EXTRAROMINFO_SIZE)
return (WRONG_FORMAT);
ptr += 3; // zero bytes
movie->ROMCRC32 = Read32(ptr);
strncpy(movie->ROMName, (char *) ptr, 23);
return (SUCCESS);
}
static void write_movie_header (FILE *fd, SMovie *movie)
{
uint8 buf[SMV_HEADER_SIZE], *ptr = buf;
memset(buf, 0, sizeof(buf));
Write32(SMV_MAGIC, ptr);
Write32(SMV_VERSION, ptr);
Write32(movie->MovieId, ptr);
Write32(movie->RerecordCount, ptr);
Write32(movie->MaxFrame, ptr);
Write8(movie->ControllersMask, ptr);
Write8(movie->Opts, ptr);
ptr++;
Write8(movie->SyncFlags, ptr);
Write32(movie->SaveStateOffset, ptr);
Write32(movie->ControllerDataOffset, ptr);
Write32(movie->MaxSample, ptr);
Write8(movie->PortType[0], ptr);
Write8(movie->PortType[1], ptr);
for (int p = 0; p < 2; p++)
{
for (int i = 0; i < 4; i++)
Write8(movie->PortIDs[p][i], ptr);
}
size_t ignore;
ignore = fwrite(buf, 1, SMV_HEADER_SIZE, fd);
}
static void write_movie_extrarominfo (FILE *fd, SMovie *movie)
{
uint8 buf[SMV_EXTRAROMINFO_SIZE], *ptr = buf;
Write8(0, ptr);
Write8(0, ptr);
Write8(0, ptr);
Write32(movie->ROMCRC32, ptr);
strncpy((char *) ptr, movie->ROMName, 23);
size_t ignore;
ignore = fwrite(buf, 1, SMV_EXTRAROMINFO_SIZE, fd);
}
static void change_state (MovieState new_state)
{
if (new_state == Movie.State)
return;
if (Movie.State == MOVIE_STATE_RECORD)
flush_movie();
if (new_state == MOVIE_STATE_NONE)
{
truncate_movie();
fclose(Movie.File);
Movie.File = NULL;
if (S9xMoviePlaying() || S9xMovieRecording())
restore_previous_settings();
}
Movie.State = new_state;
}
void S9xMovieFreeze (uint8 **buf, uint32 *size)
{
if (!S9xMovieActive())
return;
uint32 size_needed;
uint8 *ptr;
size_needed = sizeof(Movie.MovieId) + sizeof(Movie.CurrentFrame) + sizeof(Movie.MaxFrame) + sizeof(Movie.CurrentSample) + sizeof(Movie.MaxSample);
size_needed += (uint32) (Movie.BytesPerSample * (Movie.MaxSample + 1));
*size = size_needed;
*buf = new uint8[size_needed];
ptr = *buf;
if (!ptr)
return;
Write32(Movie.MovieId, ptr);
Write32(Movie.CurrentFrame, ptr);
Write32(Movie.MaxFrame, ptr);
Write32(Movie.CurrentSample, ptr);
Write32(Movie.MaxSample, ptr);
memcpy(ptr, Movie.InputBuffer, Movie.BytesPerSample * (Movie.MaxSample + 1));
}
int S9xMovieUnfreeze (uint8 *buf, uint32 size)
{
if (!S9xMovieActive())
return (FILE_NOT_FOUND);
if (size < sizeof(Movie.MovieId) + sizeof(Movie.CurrentFrame) + sizeof(Movie.MaxFrame) + sizeof(Movie.CurrentSample) + sizeof(Movie.MaxSample))
return (WRONG_FORMAT);
uint8 *ptr = buf;
uint32 movie_id = Read32(ptr);
uint32 current_frame = Read32(ptr);
uint32 max_frame = Read32(ptr);
uint32 current_sample = Read32(ptr);
uint32 max_sample = Read32(ptr);
uint32 space_needed = (Movie.BytesPerSample * (max_sample + 1));
if (current_frame > max_frame || current_sample > max_sample || space_needed > size)
return (WRONG_MOVIE_SNAPSHOT);
if (Settings.WrongMovieStateProtection)
if (movie_id != Movie.MovieId)
if (max_frame < Movie.MaxFrame || max_sample < Movie.MaxSample || memcmp(Movie.InputBuffer, ptr, space_needed))
return (WRONG_MOVIE_SNAPSHOT);
if (!Movie.ReadOnly)
{
change_state(MOVIE_STATE_RECORD);
Movie.CurrentFrame = current_frame;
Movie.MaxFrame = max_frame;
Movie.CurrentSample = current_sample;
Movie.MaxSample = max_sample;
Movie.RerecordCount++;
store_movie_settings();
reserve_buffer_space(space_needed);
memcpy(Movie.InputBuffer, ptr, space_needed);
flush_movie();
fseek(Movie.File, Movie.ControllerDataOffset + (Movie.BytesPerSample * (Movie.CurrentSample + 1)), SEEK_SET);
}
else
{
uint32 space_processed = (Movie.BytesPerSample * (current_sample + 1));
if (current_frame > Movie.MaxFrame || current_sample > Movie.MaxSample || memcmp(Movie.InputBuffer, ptr, space_processed))
return (SNAPSHOT_INCONSISTENT);
change_state(MOVIE_STATE_PLAY);
Movie.CurrentFrame = current_frame;
Movie.CurrentSample = current_sample;
}
Movie.InputBufferPtr = Movie.InputBuffer + (Movie.BytesPerSample * Movie.CurrentSample);
read_frame_controller_data(true);
return (SUCCESS);
}
int S9xMovieOpen (const char *filename, bool8 read_only)
{
FILE *fd;
STREAM stream;
int result;
int fn;
if (!(fd = fopen(filename, "rb+")))
{
if (!(fd = fopen(filename, "rb")))
return (FILE_NOT_FOUND);
else
read_only = TRUE;
}
change_state(MOVIE_STATE_NONE);
result = read_movie_header(fd, &Movie);
if (result != SUCCESS)
{
fclose(fd);
return (result);
}
read_movie_extrarominfo(fd, &Movie);
fflush(fd);
fn = fileno(fd);
store_previous_settings();
restore_movie_settings();
lseek(fn, Movie.SaveStateOffset, SEEK_SET);
stream = REOPEN_STREAM(fn, "rb");
if (!stream)
return (FILE_NOT_FOUND);
if (Movie.Opts & MOVIE_OPT_FROM_RESET)
{
S9xReset();
reset_controllers();
result = (READ_STREAM(Memory.SRAM, 0x20000, stream) == 0x20000) ? SUCCESS : WRONG_FORMAT;
}
else
result = S9xUnfreezeFromStream(stream);
CLOSE_STREAM(stream);
if (result != SUCCESS)
return (result);
if (!(fd = fopen(filename, "rb+")))
{
if (!(fd = fopen(filename, "rb")))
return (FILE_NOT_FOUND);
else
read_only = TRUE;
}
if (fseek(fd, Movie.ControllerDataOffset, SEEK_SET))
return (WRONG_FORMAT);
Movie.File = fd;
Movie.BytesPerSample = bytes_per_sample();
Movie.InputBufferPtr = Movie.InputBuffer;
reserve_buffer_space(Movie.BytesPerSample * (Movie.MaxSample + 1));
size_t ignore;
ignore = fread(Movie.InputBufferPtr, 1, Movie.BytesPerSample * (Movie.MaxSample + 1), fd);
// read "baseline" controller data
if (Movie.MaxSample && Movie.MaxFrame)
read_frame_controller_data(true);
Movie.CurrentFrame = 0;
Movie.CurrentSample = 0;
Movie.ReadOnly = read_only;
strncpy(Movie.Filename, filename, PATH_MAX + 1);
Movie.Filename[PATH_MAX] = 0;
change_state(MOVIE_STATE_PLAY);
S9xUpdateFrameCounter(-1);
S9xMessage(S9X_INFO, S9X_MOVIE_INFO, MOVIE_INFO_REPLAY);
return (SUCCESS);
}
int S9xMovieCreate (const char *filename, uint8 controllers_mask, uint8 opts, const wchar_t *metadata, int metadata_length)
{
FILE *fd;
STREAM stream;
if (controllers_mask == 0)
return (WRONG_FORMAT);
if (!(fd = fopen(filename, "wb")))
return (FILE_NOT_FOUND);
if (metadata_length > MOVIE_MAX_METADATA)
metadata_length = MOVIE_MAX_METADATA;
change_state(MOVIE_STATE_NONE);
store_previous_settings();
store_movie_settings();
Movie.MovieId = (uint32) time(NULL);
Movie.RerecordCount = 0;
Movie.MaxFrame = 0;
Movie.MaxSample = 0;
Movie.SaveStateOffset = SMV_HEADER_SIZE + (sizeof(uint16) * metadata_length) + SMV_EXTRAROMINFO_SIZE;
Movie.ControllerDataOffset = 0;
Movie.ControllersMask = controllers_mask;
Movie.Opts = opts;
Movie.SyncFlags = MOVIE_SYNC_DATA_EXISTS | MOVIE_SYNC_HASROMINFO;
write_movie_header(fd, &Movie);
// convert wchar_t metadata string/array to a uint16 array
// XXX: UTF-8 is much better...
if (metadata_length > 0)
{
uint8 meta_buf[sizeof(uint16) * MOVIE_MAX_METADATA];
for (int i = 0; i < metadata_length; i++)
{
uint16 c = (uint16) metadata[i];
meta_buf[i * 2] = (uint8) (c & 0xff);
meta_buf[i * 2 + 1] = (uint8) ((c >> 8) & 0xff);
}
size_t ignore;
ignore = fwrite(meta_buf, sizeof(uint16), metadata_length, fd);
}
Movie.ROMCRC32 = Memory.ROMCRC32;
strncpy(Movie.ROMName, Memory.RawROMName, 23);
write_movie_extrarominfo(fd, &Movie);
fclose(fd);
stream = OPEN_STREAM(filename, "ab");
if (!stream)
return (FILE_NOT_FOUND);
if (opts & MOVIE_OPT_FROM_RESET)
{
S9xReset();
reset_controllers();
WRITE_STREAM(Memory.SRAM, 0x20000, stream);
}
else
S9xFreezeToStream(stream);
CLOSE_STREAM(stream);
if (!(fd = fopen(filename, "rb+")))
return (FILE_NOT_FOUND);
fseek(fd, 0, SEEK_END);
Movie.ControllerDataOffset = (uint32) ftell(fd);
// 16-byte align the controller input, for hex-editing friendliness if nothing else
while (Movie.ControllerDataOffset % 16)
{
fputc(0xcc, fd); // arbitrary
Movie.ControllerDataOffset++;
}
// write "baseline" controller data
Movie.File = fd;
Movie.BytesPerSample = bytes_per_sample();
Movie.InputBufferPtr = Movie.InputBuffer;
write_frame_controller_data();
Movie.CurrentFrame = 0;
Movie.CurrentSample = 0;
Movie.ReadOnly = false;
strncpy(Movie.Filename, filename, PATH_MAX + 1);
Movie.Filename[PATH_MAX] = 0;
change_state(MOVIE_STATE_RECORD);
S9xUpdateFrameCounter(-1);
S9xMessage(S9X_INFO, S9X_MOVIE_INFO, MOVIE_INFO_RECORD);
return (SUCCESS);
}
int S9xMovieGetInfo (const char *filename, struct MovieInfo *info)
{
FILE *fd;
SMovie local_movie;
int metadata_length;
int result, i;
flush_movie();
memset(info, 0, sizeof(*info));
if (!(fd = fopen(filename, "rb")))
return (FILE_NOT_FOUND);
result = read_movie_header(fd, &local_movie);
if (result != SUCCESS)
return (result);
info->TimeCreated = (time_t) local_movie.MovieId;
info->Version = local_movie.Version;
info->Opts = local_movie.Opts;
info->SyncFlags = local_movie.SyncFlags;
info->ControllersMask = local_movie.ControllersMask;
info->RerecordCount = local_movie.RerecordCount;
info->LengthFrames = local_movie.MaxFrame;
info->LengthSamples = local_movie.MaxSample;
info->PortType[0] = local_movie.PortType[0];
info->PortType[1] = local_movie.PortType[1];
if (local_movie.SaveStateOffset > SMV_HEADER_SIZE)
{
uint8 meta_buf[sizeof(uint16) * MOVIE_MAX_METADATA];
int curRomInfoSize = (local_movie.SyncFlags & MOVIE_SYNC_HASROMINFO) ? SMV_EXTRAROMINFO_SIZE : 0;
metadata_length = ((int) local_movie.SaveStateOffset - SMV_HEADER_SIZE - curRomInfoSize) / sizeof(uint16);
metadata_length = (metadata_length >= MOVIE_MAX_METADATA) ? MOVIE_MAX_METADATA - 1 : metadata_length;
metadata_length = (int) fread(meta_buf, sizeof(uint16), metadata_length, fd);
for (i = 0; i < metadata_length; i++)
{
uint16 c = meta_buf[i * 2] | (meta_buf[i * 2 + 1] << 8);
info->Metadata[i] = (wchar_t) c;
}
info->Metadata[i] = '\0';
}
else
info->Metadata[0] = '\0';
read_movie_extrarominfo(fd, &local_movie);
info->ROMCRC32 = local_movie.ROMCRC32;
strncpy(info->ROMName, local_movie.ROMName, 23);
fclose(fd);
if ((fd = fopen(filename, "r+")) == NULL)
info->ReadOnly = true;
else
fclose(fd);
return (SUCCESS);
}
void S9xMovieUpdate (bool addFrame)
{
switch (Movie.State)
{
case MOVIE_STATE_PLAY:
{
if (Movie.CurrentFrame >= Movie.MaxFrame || Movie.CurrentSample >= Movie.MaxSample)
{
change_state(MOVIE_STATE_NONE);
S9xMessage(S9X_INFO, S9X_MOVIE_INFO, MOVIE_INFO_END);
return;
}
else
{
if (addFrame)
S9xUpdateFrameCounter();
else
if (SKIPPED_POLLING_PORT_TYPE(Movie.PortType[0]) && SKIPPED_POLLING_PORT_TYPE(Movie.PortType[1]))
return;
read_frame_controller_data(addFrame);
Movie.CurrentSample++;
if (addFrame)
Movie.CurrentFrame++;
}
break;
}
case MOVIE_STATE_RECORD:
{
if (addFrame)
S9xUpdateFrameCounter();
else
if (SKIPPED_POLLING_PORT_TYPE(Movie.PortType[0]) && SKIPPED_POLLING_PORT_TYPE(Movie.PortType[1]))
return;
write_frame_controller_data();
Movie.MaxSample = ++Movie.CurrentSample;
if (addFrame)
Movie.MaxFrame = ++Movie.CurrentFrame;
size_t ignore;
ignore = fwrite((Movie.InputBufferPtr - Movie.BytesPerSample), 1, Movie.BytesPerSample, Movie.File);
break;
}
default:
{
if (addFrame)
S9xUpdateFrameCounter();
break;
}
}
}
void S9xMovieUpdateOnReset (void)
{
if (Movie.State == MOVIE_STATE_RECORD)
{
reserve_buffer_space((uint32) (Movie.InputBufferPtr + Movie.BytesPerSample - Movie.InputBuffer));
memset(Movie.InputBufferPtr, 0xFF, Movie.BytesPerSample);
Movie.InputBufferPtr += Movie.BytesPerSample;
Movie.MaxSample = ++Movie.CurrentSample;
Movie.MaxFrame = ++Movie.CurrentFrame;
size_t ignore;
ignore = fwrite((Movie.InputBufferPtr - Movie.BytesPerSample), 1, Movie.BytesPerSample, Movie.File);
}
}
void S9xMovieInit (void)
{
memset(&Movie, 0, sizeof(Movie));
Movie.State = MOVIE_STATE_NONE;
}
void S9xMovieStop (bool8 suppress_message)
{
if (Movie.State != MOVIE_STATE_NONE)
{
change_state(MOVIE_STATE_NONE);
if (!suppress_message)
S9xMessage(S9X_INFO, S9X_MOVIE_INFO, MOVIE_INFO_STOP);
}
}
void S9xMovieShutdown (void)
{
if (S9xMovieActive())
S9xMovieStop(TRUE);
}
bool8 S9xMovieActive (void)
{
return (Movie.State != MOVIE_STATE_NONE);
}
bool8 S9xMoviePlaying (void)
{
return (Movie.State == MOVIE_STATE_PLAY);
}
bool8 S9xMovieRecording (void)
{
return (Movie.State == MOVIE_STATE_RECORD);
}
uint8 S9xMovieControllers (void)
{
return (Movie.ControllersMask);
}
bool8 S9xMovieReadOnly (void)
{
if (!S9xMovieActive())
return (FALSE);
return (Movie.ReadOnly);
}
uint32 S9xMovieGetId (void)
{
if (!S9xMovieActive())
return (0);
return (Movie.MovieId);
}
uint32 S9xMovieGetLength (void)
{
if (!S9xMovieActive())
return (0);
return (Movie.MaxFrame);
}
uint32 S9xMovieGetFrameCounter (void)
{
if (!S9xMovieActive())
return (0);
return (Movie.CurrentFrame);
}
void S9xMovieToggleRecState (void)
{
Movie.ReadOnly = !Movie.ReadOnly;
if (Movie.ReadOnly)
S9xMessage(S9X_INFO, S9X_MOVIE_INFO, "Movie is now read-only.");
else
S9xMessage(S9X_INFO, S9X_MOVIE_INFO, "Movie is now read+write.");
}
void S9xMovieToggleFrameDisplay (void)
{
Settings.DisplayMovieFrame = !Settings.DisplayMovieFrame;
S9xReRefresh();
}
void S9xUpdateFrameCounter (int offset)
{
extern bool8 pad_read;
offset++;
if (!Settings.DisplayMovieFrame)
*GFX.FrameDisplayString = 0;
else
if (Movie.State == MOVIE_STATE_RECORD)
sprintf(GFX.FrameDisplayString, "Recording frame: %d%s",
max(0, (int) (Movie.CurrentFrame + offset)), pad_read || !Settings.MovieNotifyIgnored ? "" : " (ignored)");
else
if (Movie.State == MOVIE_STATE_PLAY)
sprintf(GFX.FrameDisplayString, "Playing frame: %d / %d",
max(0, (int) (Movie.CurrentFrame + offset)), Movie.MaxFrame);
#ifdef NETPLAY_SUPPORT
else
if (Settings.NetPlay)
sprintf(GFX.FrameDisplayString, "%s frame: %d", Settings.NetPlayServer ? "Server" : "Client",
max(0, (int) (NetPlay.FrameCount + offset)));
#endif
}
|