dsekai
World engine for retrocomputers.
Loading...
Searching...
No Matches
serial.h
Go to the documentation of this file.
1
2#ifndef SERIAL_H
3#define SERIAL_H
4
15#define SERIAL_ERROR -1
16
17#define serial_asn_write_seq_start( p_asn_buffer_h, p_mark, desc, idx, cleanup ) debug_printf( 2, "(offset 0x%02x) writing %s seq start", idx, desc ); idx = asn_write_seq_start( p_asn_buffer_h, idx, p_mark ); if( 0 > idx ) { error_printf( "error writing %s seq start", desc ); idx = SERIAL_ERROR; goto cleanup; }
18
19#define serial_asn_write_seq_end( p_asn_buffer_h, p_mark, desc, idx, cleanup ) debug_printf( 2, "(offset 0x%02x) writing %s seq end", idx, desc ); idx = asn_write_seq_end( p_asn_buffer_h, idx, p_mark ); if( 0 > idx ) { error_printf( "error writing %s seq end", desc ); idx = SERIAL_ERROR; goto cleanup; }
20
21#define serial_asn_write_int( p_asn_buffer_h, val, x_val_sz, desc, idx, cleanup ) debug_printf( 2, "(offset 0x%02x) writing %s: %d", idx, desc, val ); idx = asn_write_int( p_asn_buffer_h, idx, val ); if( 0 > idx ) { error_printf( "error writing %s: %d", desc, idx ); goto cleanup; }
22
23#define serial_asn_write_string( p_asn_buffer_h, str, str_sz, desc, idx, cleanup ) debug_printf( 2, "(offset 0x%02x) writing %s: %s", idx, desc, str ); idx = asn_write_string( p_asn_buffer_h, idx, str, str_sz ); if( 0 > idx ) { error_printf( "error writing %s: %d", desc, idx ); goto cleanup; }
24
25#define serial_asn_read_seq( asn_buffer, p_type, p_sz, desc, idx, read_sz, cleanup ) read_sz = asn_read_meta_ptr( asn_buffer, idx, p_type, p_sz ); if( ASN_SEQUENCE != *(p_type) ) { error_printf( "invalid %s sequence type: 0x%02x", desc, *(p_type) ); idx = SERIAL_ERROR; goto cleanup; } debug_printf( 2, "(offset 0x%02x) read %s seq start (%d bytes)", idx, desc, *(p_sz) ); idx += read_sz;
26
27#define serial_asn_read_int( asn_buffer, p_val, val_sz, flags, desc, idx, read_sz, cleanup ) read_sz = asn_read_int( (uint8_t*)(p_val), val_sz, flags, asn_buffer, idx ); if( 0 >= read_sz ) { error_printf( "error reading %s", desc ); idx = SERIAL_ERROR; goto cleanup; } debug_printf( 2, "(offset 0x%02x) read %s (%d bytes): %d", idx, desc, read_sz, *(p_val) ); idx += read_sz;
28
29#define serial_asn_read_string( asn_buffer, str_buffer, str_buffer_sz, desc, idx, read_sz, cleanup ) read_sz = asn_read_string( str_buffer, str_buffer_sz, asn_buffer, idx ); if( 0 >= read_sz ) { error_printf( "error reading %s", desc ); idx = SERIAL_ERROR; goto cleanup; } debug_printf( 2, "(offset 0x%02x) read %s (%d bytes): %s", idx, desc, read_sz, str_buffer ); idx += read_sz;
30
31/* int16_t engines_asn_load( RESOURCE_ID id, struct DSEKAI_STATE* state ); */
32
38int32_t serial_save( const char* save_name, struct DSEKAI_STATE* state
39 ) SECTION_ASN; /* Stuff it in ASN section even if it's a different fmt. */
40
46int32_t serial_load( const char* save_name, struct DSEKAI_STATE* state
47 ) SECTION_ASN; /* Stuff it in ASN section even if it's a different fmt. */
48 /* dsekai_engines */
50
51#endif /* !SERIAL_H */
52
int32_t serial_save(const char *save_name, struct DSEKAI_STATE *state) SECTION_ASN
Serialize the engine struct to a save state and call the unilayer_save to write that save state to st...
Definition: asn.c:75
int32_t serial_load(const char *save_name, struct DSEKAI_STATE *state) SECTION_ASN
Call the unilayer_save to provide the save state with the given name and deserialize it into the give...
Definition: asn.c:204
General/shared state of the running engine in memory.
Definition: engines.h:196