States in movies are now compressed, corrected more usage of input enabled. Todo: Fix SRAM from compressed ZST.
This commit is contained in:
@@ -58,8 +58,9 @@ extern bool romispal;
|
||||
void GUIDoReset();
|
||||
void powercycle(bool);
|
||||
void zst_sram_load(FILE *);
|
||||
void zst_save(FILE *, bool);
|
||||
bool zst_load(FILE *);
|
||||
void zst_save(FILE *, bool, bool);
|
||||
bool zst_load(FILE *, size_t);
|
||||
bool zst_compressed_loader(FILE *);
|
||||
|
||||
/////////////////////////////////////////////////////////
|
||||
|
||||
@@ -212,7 +213,7 @@ enum zmv_start_methods { zmv_sm_zst, zmv_sm_power, zmv_sm_reset, zmv_sm_clear_al
|
||||
enum zmv_video_modes { zmv_vm_ntsc, zmv_vm_pal };
|
||||
enum zmv_commands { zmv_command_reset };
|
||||
|
||||
#define INT_CHAP_SIZE (cur_zst_size+4+2+8)
|
||||
#define INT_CHAP_SIZE(offset) (internal_chapter_length(offset)+4+2+8)
|
||||
#define EXT_CHAP_SIZE (cur_zst_size+4+2+8+4)
|
||||
|
||||
#define INT_CHAP_INDEX_SIZE (zmv_vars.header.internal_chapters*4)
|
||||
@@ -683,6 +684,20 @@ static void flush_input_if_needed()
|
||||
}
|
||||
}
|
||||
|
||||
//For various ZMV calculations, the length of the last chapter needs to be known
|
||||
static size_t internal_chapter_length(size_t offset)
|
||||
{
|
||||
size_t current_loc = ftell(zmv_vars.fp);
|
||||
size_t icl = 0;
|
||||
|
||||
fseek(zmv_vars.fp, offset, SEEK_SET);
|
||||
icl = fread3(zmv_vars.fp) & 0x007FFFFF; //The upper 9 bits are not part of the length
|
||||
icl += 3; //Add 3 for the header which says how long it is
|
||||
|
||||
fseek(zmv_vars.fp, current_loc, SEEK_SET);
|
||||
return(icl);
|
||||
}
|
||||
|
||||
/*
|
||||
|
||||
Create and record ZMV
|
||||
@@ -729,7 +744,7 @@ static void zmv_create(char *filename)
|
||||
break;
|
||||
}
|
||||
|
||||
zst_save(zmv_vars.fp, false);
|
||||
zst_save(zmv_vars.fp, false, true);
|
||||
zmv_vars.filename = (char *)malloc(filename_len+1); //+1 for null
|
||||
strcpy(zmv_vars.filename, filename);
|
||||
|
||||
@@ -817,7 +832,8 @@ static void zmv_record(bool slow, unsigned char combos_used)
|
||||
static bool zmv_insert_chapter()
|
||||
{
|
||||
if ((zmv_vars.header.internal_chapters < 65535) && zmv_vars.header.frames &&
|
||||
(zmv_vars.last_internal_chapter_offset != (ftell(zmv_vars.fp) + zmv_vars.write_buffer_loc - INT_CHAP_SIZE)))
|
||||
(zmv_vars.last_internal_chapter_offset != (ftell(zmv_vars.fp) +
|
||||
zmv_vars.write_buffer_loc - INT_CHAP_SIZE(zmv_vars.last_internal_chapter_offset))))
|
||||
{
|
||||
unsigned char flag = BIT(2);
|
||||
|
||||
@@ -829,7 +845,7 @@ static bool zmv_insert_chapter()
|
||||
zmv_vars.header.internal_chapters++;
|
||||
zmv_vars.last_internal_chapter_offset = ftell(zmv_vars.fp);
|
||||
|
||||
zst_save(zmv_vars.fp, false);
|
||||
zst_save(zmv_vars.fp, false, true);
|
||||
fwrite4(zmv_vars.header.frames, zmv_vars.fp);
|
||||
write_last_joy_state(zmv_vars.fp);
|
||||
|
||||
@@ -876,6 +892,7 @@ static struct
|
||||
unsigned short external_chapter_count;
|
||||
unsigned int frames_replayed;
|
||||
size_t last_chapter_frame;
|
||||
size_t first_chapter_pos;
|
||||
size_t input_start_pos;
|
||||
} zmv_open_vars; //Additional vars for open/replay of a ZMV
|
||||
|
||||
@@ -897,10 +914,12 @@ static bool zmv_open(char *filename)
|
||||
}
|
||||
|
||||
MovieStartMethod = (unsigned char)zmv_vars.header.zmv_flag.start_method;
|
||||
zmv_vars.inputs_enabled = zmv_vars.header.initial_input;
|
||||
zmv_open_vars.first_chapter_pos = ftell(zmv_vars.fp);
|
||||
|
||||
if (zmv_vars.header.zsnes_version != (versionNumber & 0xFFFF))
|
||||
{
|
||||
zst_load(zmv_vars.fp);
|
||||
zst_compressed_loader(zmv_vars.fp);
|
||||
Msgptr = "MOVIE VERSION MISMATCH - MAY DESYNC.";
|
||||
}
|
||||
else
|
||||
@@ -908,7 +927,7 @@ static bool zmv_open(char *filename)
|
||||
switch (zmv_vars.header.zmv_flag.start_method)
|
||||
{
|
||||
case zmv_sm_zst:
|
||||
zst_load(zmv_vars.fp);
|
||||
zst_compressed_loader(zmv_vars.fp);
|
||||
break;
|
||||
case zmv_sm_power:
|
||||
powercycle(false);
|
||||
@@ -968,7 +987,7 @@ static bool zmv_replay_command(enum zmv_commands command)
|
||||
}
|
||||
|
||||
#define RESTORE_PAD(cur, prev, bit) \
|
||||
cur = prev | ((zmv_vars.inputs_enabled & BIT(bit)) ? 0x8000 : 0);
|
||||
cur = prev |= ((zmv_vars.inputs_enabled & BIT(bit)) ? 0x8000 : 0);
|
||||
|
||||
|
||||
#define REPLAY_PAD(prev, cur, bit) \
|
||||
@@ -1032,7 +1051,7 @@ static bool zmv_replay()
|
||||
|
||||
else if (flag & BIT(2)) //Internal Chapter
|
||||
{
|
||||
fseek(zmv_vars.fp, INT_CHAP_SIZE, SEEK_CUR);
|
||||
fseek(zmv_vars.fp, INT_CHAP_SIZE(ftell(zmv_vars.fp)), SEEK_CUR);
|
||||
return(zmv_replay());
|
||||
}
|
||||
|
||||
@@ -1085,7 +1104,7 @@ static bool zmv_next_chapter()
|
||||
if (next == next_internal)
|
||||
{
|
||||
fseek(zmv_vars.fp, next_internal, SEEK_SET);
|
||||
zst_load(zmv_vars.fp);
|
||||
zst_compressed_loader(zmv_vars.fp);
|
||||
zmv_open_vars.frames_replayed = fread4(zmv_vars.fp);
|
||||
read_last_joy_state(zmv_vars.fp);
|
||||
}
|
||||
@@ -1093,7 +1112,7 @@ static bool zmv_next_chapter()
|
||||
{
|
||||
size_t ext_chapter_loc = EXT_CHAP_END_DIST - internal_chapter_pos(&zmv_open_vars.external_chapters, next)*EXT_CHAP_SIZE;
|
||||
fseek(zmv_vars.fp, -(ext_chapter_loc), SEEK_END);
|
||||
zst_load(zmv_vars.fp);
|
||||
zst_load(zmv_vars.fp, 0);
|
||||
zmv_open_vars.frames_replayed = fread4(zmv_vars.fp);
|
||||
read_last_joy_state(zmv_vars.fp);
|
||||
|
||||
@@ -1107,13 +1126,16 @@ static bool zmv_next_chapter()
|
||||
return(false);
|
||||
}
|
||||
|
||||
//Have playback start movie from beginning
|
||||
static void zmv_rewind_playback()
|
||||
{
|
||||
fseek(zmv_vars.fp, zmv_open_vars.input_start_pos - cur_zst_size, SEEK_SET);
|
||||
zst_load(zmv_vars.fp);
|
||||
fseek(zmv_vars.fp, zmv_open_vars.first_chapter_pos, SEEK_SET);
|
||||
zst_compressed_loader(zmv_vars.fp);
|
||||
zmv_open_vars.frames_replayed = 0;
|
||||
zmv_open_vars.last_chapter_frame = 0;
|
||||
zmv_vars.rle_count = 0;
|
||||
zmv_vars.inputs_enabled = zmv_vars.header.initial_input;
|
||||
memset(&zmv_vars.last_joy_state, 0, sizeof(zmv_vars.last_joy_state));
|
||||
}
|
||||
|
||||
static void zmv_prev_chapter()
|
||||
@@ -1174,7 +1196,7 @@ static void zmv_prev_chapter()
|
||||
if (prev == prev_internal)
|
||||
{
|
||||
fseek(zmv_vars.fp, prev_internal, SEEK_SET);
|
||||
zst_load(zmv_vars.fp);
|
||||
zst_compressed_loader(zmv_vars.fp);
|
||||
zmv_open_vars.frames_replayed = fread4(zmv_vars.fp);
|
||||
read_last_joy_state(zmv_vars.fp);
|
||||
}
|
||||
@@ -1182,7 +1204,7 @@ static void zmv_prev_chapter()
|
||||
{
|
||||
size_t ext_chapter_loc = EXT_CHAP_END_DIST - internal_chapter_pos(&zmv_open_vars.external_chapters, prev)*EXT_CHAP_SIZE;
|
||||
fseek(zmv_vars.fp, -(ext_chapter_loc), SEEK_END);
|
||||
zst_load(zmv_vars.fp);
|
||||
zst_load(zmv_vars.fp, 0);
|
||||
zmv_open_vars.frames_replayed = fread4(zmv_vars.fp);
|
||||
read_last_joy_state(zmv_vars.fp);
|
||||
|
||||
@@ -1192,15 +1214,17 @@ static void zmv_prev_chapter()
|
||||
zmv_vars.rle_count = 0;
|
||||
}
|
||||
|
||||
//External chapter
|
||||
static void zmv_add_chapter()
|
||||
{
|
||||
if ((zmv_open_vars.external_chapter_count < 65535) && zmv_open_vars.frames_replayed)
|
||||
{
|
||||
size_t current_loc = ftell(zmv_vars.fp);
|
||||
|
||||
//Check if previous input contained internal chapter to here, or if there is external here already
|
||||
if ((internal_chapter_pos(&zmv_vars.internal_chapters, current_loc-(INT_CHAP_SIZE)) == ~0) &&
|
||||
(internal_chapter_pos(&zmv_open_vars.external_chapters, current_loc)) == ~0)
|
||||
//Check if there is external here already - should possibly modify this to use
|
||||
//intern_chapter_lesser() to see if an internal chapter was made right before this
|
||||
//point in the stream
|
||||
if ((internal_chapter_pos(&zmv_open_vars.external_chapters, current_loc)) == ~0)
|
||||
{
|
||||
//Check if we have internal right here
|
||||
unsigned char flag;
|
||||
@@ -1223,7 +1247,7 @@ static void zmv_add_chapter()
|
||||
}
|
||||
|
||||
fseek(zmv_vars.fp, -(EXT_CHAP_COUNT_END_DIST), SEEK_END);
|
||||
zst_save(zmv_vars.fp, false);
|
||||
zst_save(zmv_vars.fp, false, false);
|
||||
fwrite4(zmv_open_vars.frames_replayed, zmv_vars.fp);
|
||||
write_last_joy_state(zmv_vars.fp);
|
||||
fwrite4(current_loc, zmv_vars.fp);
|
||||
@@ -1240,7 +1264,7 @@ static void zmv_add_chapter()
|
||||
}
|
||||
else //Just skip the internal
|
||||
{
|
||||
fseek(zmv_vars.fp, INT_CHAP_SIZE, SEEK_CUR);
|
||||
fseek(zmv_vars.fp, INT_CHAP_SIZE(ftell(zmv_vars.fp)), SEEK_CUR);
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -1390,7 +1414,7 @@ bool mzt_save(char *statename, bool thumb, bool playback)
|
||||
gzFile gzp = 0;
|
||||
size_t rewind_point;
|
||||
|
||||
zst_save(fp, thumb);
|
||||
zst_save(fp, thumb, false);
|
||||
fclose(fp);
|
||||
|
||||
flush_input_buffer();
|
||||
@@ -1461,7 +1485,7 @@ bool mzt_load(char *statename, bool playback)
|
||||
{
|
||||
char FileExt[3];
|
||||
|
||||
zst_load(fp);
|
||||
zst_load(fp, 0);
|
||||
fclose(fp);
|
||||
|
||||
memcpy(FileExt, statename+filename_len-3, 3);
|
||||
|
||||
@@ -29,8 +29,10 @@ Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
||||
#include <stdio.h>
|
||||
#include <stdlib.h>
|
||||
#include <string.h>
|
||||
#include <zlib.h>
|
||||
#define DIR_SLASH "\\"
|
||||
#endif
|
||||
#include "numconv.h"
|
||||
#include "gblvars.h"
|
||||
#include "asm_call.h"
|
||||
|
||||
@@ -432,8 +434,43 @@ void calculate_state_sizes()
|
||||
old_zst_size = state_size + sizeof(zst_header_old)-1;
|
||||
}
|
||||
|
||||
//copy_state_data(RewindBufferPos, memcpyinc, false);
|
||||
void zst_save(FILE *fp, bool Thumbnail)
|
||||
static bool zst_save_compressed(FILE *fp)
|
||||
{
|
||||
size_t data_size = cur_zst_size - (sizeof(zst_header_cur)-1);
|
||||
unsigned char *buffer = 0;
|
||||
|
||||
bool worked = false;
|
||||
|
||||
if ((buffer = (unsigned char *)malloc(data_size)))
|
||||
{
|
||||
//Compressed buffer which must be at least 0.1% larger than source buffer plus 12 bytes
|
||||
//We devide by 999 as a quick way to get a buffer large enough when using integer division
|
||||
unsigned long compressed_size = data_size + data_size/999 + 12;
|
||||
unsigned char *compressed_buffer = 0;
|
||||
|
||||
if ((compressed_buffer = (unsigned char *)malloc(compressed_size)))
|
||||
{
|
||||
copy_state_data(buffer, memcpyinc, false);
|
||||
if (compress2(compressed_buffer, &compressed_size, buffer, data_size, Z_BEST_COMPRESSION) == Z_OK)
|
||||
{
|
||||
fwrite3(compressed_size, fp);
|
||||
fwrite(compressed_buffer, 1, compressed_size, fp);
|
||||
worked = true;
|
||||
}
|
||||
free(compressed_buffer);
|
||||
}
|
||||
free(buffer);
|
||||
}
|
||||
|
||||
if (!worked) //Compression failed for whatever reason
|
||||
{
|
||||
fwrite3(cur_zst_size | 0x00800000, fp); //Uncompressed ZST will never break 8MB
|
||||
}
|
||||
|
||||
return(worked);
|
||||
}
|
||||
|
||||
void zst_save(FILE *fp, bool Thumbnail, bool Compress)
|
||||
{
|
||||
PrepareOffset();
|
||||
PrepareSaveState();
|
||||
@@ -450,6 +487,8 @@ void zst_save(FILE *fp, bool Thumbnail)
|
||||
SaveSA1(); //Convert SA-1 stuff to standard, non displacement format
|
||||
}
|
||||
|
||||
if (!Compress || !zst_save_compressed(fp)) //If we don't want compressed or compression failed
|
||||
{
|
||||
fwrite(zst_header_cur, 1, sizeof(zst_header_cur)-1, fp); //-1 for null
|
||||
|
||||
fhandle = fp; //Set global file handle
|
||||
@@ -460,6 +499,7 @@ void zst_save(FILE *fp, bool Thumbnail)
|
||||
CapturePicture();
|
||||
fwrite(PrevPicture, 1, 64*56*sizeof(unsigned short), fp);
|
||||
}
|
||||
}
|
||||
|
||||
if (SFXEnable)
|
||||
{
|
||||
@@ -521,7 +561,7 @@ void statesaver()
|
||||
|
||||
if ((fhandle = fopen(fnamest+1,"wb")))
|
||||
{
|
||||
zst_save(fhandle, (bool)(cbitmode && !NoPictureSave));
|
||||
zst_save(fhandle, (bool)(cbitmode && !NoPictureSave), false);
|
||||
fclose(fhandle);
|
||||
|
||||
//Display message onscreen, 'STATE X SAVED.'
|
||||
@@ -550,8 +590,43 @@ static void read_save_state_data(unsigned char **dest, void *data, size_t len)
|
||||
load_save_size += fread(data, 1, len, fhandle);
|
||||
}
|
||||
|
||||
bool zst_load(FILE *fp)
|
||||
static bool zst_load_compressed(FILE *fp, size_t compressed_size)
|
||||
{
|
||||
unsigned long data_size = cur_zst_size - (sizeof(zst_header_cur)-1);
|
||||
unsigned char *buffer = 0;
|
||||
bool worked = false;
|
||||
|
||||
if ((buffer = (unsigned char *)malloc(data_size)))
|
||||
{
|
||||
unsigned char *compressed_buffer = 0;
|
||||
|
||||
if ((compressed_buffer = (unsigned char *)malloc(compressed_size)))
|
||||
{
|
||||
fread(compressed_buffer, 1, compressed_size, fp);
|
||||
if (uncompress(buffer, &data_size, compressed_buffer, compressed_size) == Z_OK)
|
||||
{
|
||||
zst_version = 143; //v1.43+
|
||||
copy_state_data(buffer, memcpyrinc, true);
|
||||
worked = true;
|
||||
}
|
||||
free(compressed_buffer);
|
||||
}
|
||||
free(buffer);
|
||||
}
|
||||
return(worked);
|
||||
}
|
||||
|
||||
bool zst_load(FILE *fp, size_t Compressed)
|
||||
{
|
||||
if (Compressed)
|
||||
{
|
||||
if (!zst_load_compressed(fp, Compressed))
|
||||
{
|
||||
return(false);
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
char zst_header_check[sizeof(zst_header_cur)-1];
|
||||
zst_version = 0;
|
||||
|
||||
@@ -573,6 +648,7 @@ bool zst_load(FILE *fp)
|
||||
fhandle = fp; //Set global file handle
|
||||
copy_state_data(0, read_save_state_data, true);
|
||||
Totalbyteloaded += load_save_size;
|
||||
}
|
||||
|
||||
if (SFXEnable)
|
||||
{
|
||||
@@ -617,6 +693,13 @@ bool zst_load(FILE *fp)
|
||||
return(true);
|
||||
}
|
||||
|
||||
//Wrapper for above
|
||||
bool zst_compressed_loader(FILE *fp)
|
||||
{
|
||||
size_t data_size = fread3(fp);
|
||||
return((data_size & 0x00800000) ? zst_load(fp, 0) : zst_load(fp, data_size));
|
||||
}
|
||||
|
||||
void zst_sram_load(FILE *fp)
|
||||
{
|
||||
fseek(fp, sizeof(zst_header_cur)-1 + PH65816regsize + 199635, SEEK_CUR);
|
||||
@@ -680,7 +763,7 @@ void stateloader (unsigned char *statename, unsigned char keycheck, unsigned cha
|
||||
{
|
||||
if (xfercheck) { Totalbyteloaded = 0; }
|
||||
|
||||
Msgptr = (zst_load(fhandle)) ? txtloadmsg : txtconvmsg;
|
||||
Msgptr = (zst_load(fhandle, 0)) ? txtloadmsg : txtconvmsg;
|
||||
// 'STATE X LOADED.' or 'STATE X TOO OLD.'
|
||||
fclose(fhandle);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user