2020-03-27 21:47:29 +01:00
# include "THISDUST.H"
2020-04-10 01:29:12 +02:00
2020-04-11 17:04:02 +02:00
# ifndef PSX
# include <SDL.h>
# endif // !PSX
# include <STRINGS.H>
2020-04-10 01:29:12 +02:00
# include "LIBETC.H"
2020-04-10 13:56:11 +02:00
# include "PAD.H"
2020-03-27 21:47:29 +01:00
# include "SPOOL.H"
2020-04-09 19:15:54 +02:00
# include "MAP.H"
2020-04-05 23:04:50 +02:00
# include "SYSTEM.H"
2020-04-09 20:22:38 +02:00
# include "MAIN.H"
2020-04-09 20:50:21 +02:00
# include "XAPLAY.H"
# include "DIRECTOR.H"
2020-04-10 01:29:12 +02:00
# include "SOUND.H"
# include "TEXTURE.H"
# include "MODELS.H"
# include "OBJANIM.H"
# include "GLAUNCH.H"
2020-04-10 01:37:20 +02:00
# include "CARS.H"
2020-04-10 01:52:35 +02:00
# include "COSMETIC.H"
# include "DENTING.H"
# include "HANDLING.H"
# include "MISSION.H"
2020-04-10 13:56:11 +02:00
# include "CIV_AI.H"
2020-04-16 21:14:56 +02:00
# include "CAMERA.H"
2020-04-20 07:14:19 +02:00
# include "DR2ROADS.H"
2020-03-27 21:47:29 +01:00
int date_date = 0xA11 ;
int date_time = 0x27220B ;
int pvsSize [ 4 ] = { 0 , 0 , 0 , 0 } ;
int SpecialByRegion [ 4 ] [ 20 ] = {
{ 5 , 1 , 3 , 3 , 2 , 2 , 2 , 3 , 3 , 3 , 3 , 1 , 1 , 1 , 2 , 3 , 2 , 2 , 3 , 0 } ,
{ 2 , 4 , 1 , 1 , 4 , 4 , 3 , 3 , 3 , 3 , 5 , 0 , 0 , 0 , 0 , 0 , 0 , 0 , 0 , 0 } ,
{ 2 , 4 , 1 , 1 , 1 , 1 , 1 , 1 , 4 , 2 , 3 , 3 , 5 , 0 , 0 , 0 , 0 , 0 , 0 , 0 } ,
{ 2 , 5 , 4 , 1 , 2 , 1 , 4 , 3 , 2 , 2 , 2 , 2 , 3 , 3 , 3 , 0 , 0 , 0 , 0 , 0 } ,
} ;
2020-04-09 19:10:34 +02:00
char * model_spool_buffer = NULL ;
int cell_objects_add [ 5 ] ;
int cell_slots_add [ 5 ] ;
SXYPAIR * Music_And_AmbientOffsets ;
AreaDataStr * AreaData ;
unsigned char * AreaTPages ;
int NumAreas ;
char * RegionSpoolInfo ;
unsigned short * spoolinfo_offsets ;
2020-04-09 17:36:53 +02:00
char * specmallocptr ;
char * specLoadBuffer ;
2020-04-09 19:10:34 +02:00
int doSpooling = 1 ;
short loading_region [ 4 ] ;
int regions_unpacked [ 4 ] ;
int spool_regioncounter ;
int spoolerror ; // UNUSED
int spool_regionpos ;
2020-04-12 13:41:42 +02:00
volatile int spoolactive ; // volatile is required at least for PC
2020-04-12 18:15:14 +02:00
volatile int quickSpool ;
2020-04-09 19:10:34 +02:00
int models_ready ;
2020-04-12 17:29:49 +02:00
short specspooldata [ 3 ] = { 20 , 10 } ;
2020-04-09 19:10:34 +02:00
int tsetcounter ;
int tsetpos ;
int spoolcounter ;
int spoolseek ; // Probably UNUSED
int loadbank_read ;
int loadbank_write ;
int spoolpos ;
int spoolpos_reading ;
int spoolpos_writing ;
2020-04-10 13:56:11 +02:00
int allowSpecSpooling ;
int startSpecSpool ;
2020-04-09 19:10:34 +02:00
int unpack_roadmap_flag ;
int unpack_cellptr_flag ;
2020-04-09 19:45:55 +02:00
char * packed_cell_pointers ;
SPL_REGIONINFO spool_regioninfo [ 8 ] ;
2020-04-20 06:55:53 +02:00
//unsigned long unpack_cellptr_tbl[3];
2020-04-09 19:45:55 +02:00
2020-04-10 01:29:12 +02:00
static int sectors_this_chunk ;
2020-04-20 06:55:53 +02:00
static volatile int sectors_to_read ;
2020-04-10 01:29:12 +02:00
static char * target_address ;
static int nTPchunks ;
static int nTPchunks_reading ;
static int nTPchunks_writing ;
static int ntpages ;
static int current_sector ;
static int switch_spooltype ;
static int endchunk ;
int send_bank ;
int sample_chunk ;
int chunk_complete ;
2020-04-10 13:56:11 +02:00
int new_area_location ;
int LoadingArea = 0 ;
unsigned short * newmodels ;
2020-04-10 01:29:12 +02:00
struct SPOOLQ spooldata [ 48 ] ;
2020-04-11 17:04:02 +02:00
# ifndef PSX
# include <assert.h>
typedef void ( * data_callbackFn ) ( void ) ;
typedef void ( * ready_callbackFn ) ( unsigned char intr , unsigned char * result ) ;
data_callbackFn g_dataCallbackPC = NULL ;
ready_callbackFn g_readyCallbackPC = NULL ;
char g_sectorData [ 2048 ] = { 0 } ;
bool g_isSectorDataRead = false ;
2020-04-12 17:48:56 +02:00
bool g_spoolDoneFlag = false ;
2020-04-11 17:04:02 +02:00
extern char g_CurrentLevelFileName [ 64 ] ;
2020-04-12 17:48:56 +02:00
SDL_Thread * levelSpoolerPCThread = NULL ;
SDL_mutex * levelSpoolerPCMutex = NULL ;
2020-04-19 12:53:18 +02:00
volatile int levelSpoolerSeekCmd = 0 ;
2020-04-12 17:48:56 +02:00
2020-04-11 17:04:02 +02:00
//-----------------------------------------------------
// copies read sector data to addr
//-----------------------------------------------------
void getLevSectorPC ( char * dest , int count )
{
2020-04-11 18:03:57 +02:00
count * = 4 ;
2020-04-20 06:55:53 +02:00
# ifdef _DEBUG
SPOOLQ * which = & spooldata [ spoolpos_reading ] ;
sectors_this_chunk ;
current_sector ;
sectors_to_read ;
# endif // _DEBUG
2020-04-11 17:04:02 +02:00
assert ( count < = 2048 ) ;
2020-04-20 06:55:53 +02:00
assert ( dest ) ;
assert ( sectors_to_read > 0 ) ;
2020-04-11 17:04:02 +02:00
2020-04-12 17:48:56 +02:00
SDL_LockMutex ( levelSpoolerPCMutex ) ;
2020-04-11 17:04:02 +02:00
2020-04-12 17:48:56 +02:00
memcpy ( dest , g_sectorData , count ) ;
2020-04-11 17:04:02 +02:00
g_isSectorDataRead = true ;
2020-04-12 17:48:56 +02:00
SDL_UnlockMutex ( levelSpoolerPCMutex ) ;
2020-04-11 17:04:02 +02:00
}
2020-04-19 12:53:18 +02:00
void levelSpoolerPCDataCallback ( data_callbackFn cb )
{
SDL_LockMutex ( levelSpoolerPCMutex ) ;
g_dataCallbackPC = cb ;
SDL_UnlockMutex ( levelSpoolerPCMutex ) ;
}
void levelSpoolerPCReadyCallback ( ready_callbackFn cb )
{
SDL_LockMutex ( levelSpoolerPCMutex ) ;
g_readyCallbackPC = cb ;
SDL_UnlockMutex ( levelSpoolerPCMutex ) ;
}
2020-04-12 17:48:56 +02:00
// Main spooler thread function
2020-04-11 17:04:02 +02:00
int levelSpoolerPCFunc ( void * data )
{
//Print incoming data
2020-04-11 20:33:58 +02:00
printf ( " Running SPOOL thread... \n " ) ;
2020-04-11 17:04:02 +02:00
2020-04-12 15:56:52 +02:00
g_spoolDoneFlag = false ;
g_isSectorDataRead = false ;
2020-04-11 17:04:02 +02:00
ready_callbackFn readyCb = g_readyCallbackPC ;
2020-04-11 20:15:11 +02:00
data_callbackFn dataCb = g_dataCallbackPC ;
2020-04-11 17:04:02 +02:00
FILE * fp = fopen ( g_CurrentLevelFileName , " rb " ) ;
if ( ! fp )
{
char errPrint [ 1024 ] ;
sprintf ( errPrint , " Cannot open '%s' \n " , g_CurrentLevelFileName ) ;
SDL_ShowSimpleMessageBox ( SDL_MESSAGEBOX_ERROR , " ERROR " , errPrint , NULL ) ;
if ( readyCb )
readyCb ( 0 , { 0x0 } ) ;
return - 1 ;
}
do
{
2020-04-19 12:53:18 +02:00
SDL_LockMutex ( levelSpoolerPCMutex ) ;
2020-04-11 17:04:02 +02:00
if ( levelSpoolerSeekCmd ! = 0 )
{
int sector = levelSpoolerSeekCmd ;
if ( sector = = - 1 )
{
2020-04-19 14:32:14 +02:00
//printf("SPOOL thread recieved 'CdlPause'\n", sector);
2020-04-12 17:48:56 +02:00
2020-04-11 17:04:02 +02:00
levelSpoolerSeekCmd = 0 ;
2020-04-12 17:29:49 +02:00
g_spoolDoneFlag = true ;
2020-04-11 17:04:02 +02:00
}
2020-04-12 17:29:49 +02:00
else
{
printf ( " SPOOL thread recieved 'CdlReadS' at %d \n " , sector ) ;
2020-04-11 17:04:02 +02:00
2020-04-12 17:29:49 +02:00
// seek
fseek ( fp , sector * 2048 , SEEK_SET ) ;
levelSpoolerSeekCmd = 0 ;
}
2020-04-11 17:04:02 +02:00
}
2020-04-19 14:32:14 +02:00
dataCb = g_dataCallbackPC ;
readyCb = g_readyCallbackPC ;
2020-04-12 17:48:56 +02:00
SDL_UnlockMutex ( levelSpoolerPCMutex ) ;
2020-04-11 17:04:02 +02:00
// clear sector before proceed
ClearMem ( g_sectorData , sizeof ( g_sectorData ) ) ;
fread ( g_sectorData , 1 , 2048 , fp ) ;
g_isSectorDataRead = false ;
if ( readyCb )
{
2020-04-26 14:19:33 +02:00
//SDL_LockMutex(levelSpoolerPCMutex);
2020-04-19 14:32:14 +02:00
2020-04-19 12:53:18 +02:00
readyCb ( 1 , { 0x0 } ) ;
2020-04-11 20:15:11 +02:00
if ( g_isSectorDataRead & & dataCb )
dataCb ( ) ;
2020-04-19 14:32:14 +02:00
2020-04-26 14:19:33 +02:00
//SDL_UnlockMutex(levelSpoolerPCMutex);
2020-04-11 17:04:02 +02:00
}
else
break ;
2020-04-19 14:32:14 +02:00
2020-04-12 17:29:49 +02:00
} while ( ! g_spoolDoneFlag ) ;
2020-04-11 17:04:02 +02:00
2020-04-11 20:33:58 +02:00
printf ( " SPOOLER thread work done. \n " ) ;
2020-04-11 17:04:02 +02:00
fclose ( fp ) ;
return 0 ;
}
//-----------------------------------------------------
// reads sector from LEV file
//-----------------------------------------------------
void startReadLevSectorsPC ( int sector )
{
2020-04-12 17:48:56 +02:00
if ( ! levelSpoolerPCMutex )
levelSpoolerPCMutex = SDL_CreateMutex ( ) ;
SDL_LockMutex ( levelSpoolerPCMutex ) ;
2020-04-11 17:04:02 +02:00
levelSpoolerSeekCmd = sector ;
2020-04-12 17:48:56 +02:00
SDL_UnlockMutex ( levelSpoolerPCMutex ) ;
2020-04-11 17:04:02 +02:00
2020-04-12 15:56:52 +02:00
if ( levelSpoolerPCThread & & g_spoolDoneFlag )
2020-04-11 17:04:02 +02:00
{
int returnValue ;
SDL_WaitThread ( levelSpoolerPCThread , & returnValue ) ;
levelSpoolerPCThread = NULL ;
}
if ( ! levelSpoolerPCThread )
{
levelSpoolerPCThread = SDL_CreateThread ( levelSpoolerPCFunc , " Spooler " , NULL ) ;
if ( NULL = = levelSpoolerPCThread )
{
printf ( " SDL_CreateThread failed: %s \n " , SDL_GetError ( ) ) ;
}
}
}
# endif // !PSX
2020-03-27 21:47:29 +01:00
// decompiled code
// original method signature:
// void /*$ra*/ test_changemode()
// line 532, offset 0x0007b228
/* begin block 1 */
// Start line: 534
// Start offset: 0x0007B228
// Variables:
// struct SPOOLQ *current; // $a3
/* end block 1 */
// End offset: 0x0007B3B4
// End Line: 588
/* begin block 2 */
// Start line: 1064
/* end block 2 */
// End Line: 1065
/* begin block 3 */
// Start line: 1065
/* end block 3 */
// End Line: 1066
/* begin block 4 */
// Start line: 1067
/* end block 4 */
// End Line: 1068
/* WARNING: Unknown calling convention yet parameter storage is locked */
2020-04-10 01:29:12 +02:00
// [D]
2020-03-27 21:47:29 +01:00
void test_changemode ( void )
{
2020-04-10 01:29:12 +02:00
char bVar1 ;
2020-04-04 06:49:28 +02:00
2020-04-10 01:29:12 +02:00
if ( spoolpos_reading = = spoolcounter )
{
2020-04-04 06:49:28 +02:00
switch_spooltype = 0 ;
2020-04-11 17:04:02 +02:00
# ifdef PSX
2020-04-04 06:49:28 +02:00
CdReadyCallback ( 0 ) ;
2020-04-11 13:21:25 +02:00
CdControlF ( CdlPause , 0 ) ;
2020-04-11 17:04:02 +02:00
# else
2020-04-19 12:53:18 +02:00
levelSpoolerPCReadyCallback ( NULL ) ;
2020-04-11 17:04:02 +02:00
levelSpoolerSeekCmd = - 1 ;
# endif // PSX
2020-04-04 06:49:28 +02:00
}
2020-04-10 01:29:12 +02:00
else if ( current_sector = = spooldata [ spoolpos_reading ] . sector )
{
target_address = spooldata [ spoolpos_reading ] . addr ;
bVar1 = spooldata [ spoolpos_reading ] . type ;
switch_spooltype = 1 ;
if ( bVar1 = = 0 )
{
sectors_to_read = spool_regioninfo [ spool_regionpos + 1 ] . nsectors ;
sectors_this_chunk = ( spooldata [ spoolpos_reading ] . nsectors ) ;
2020-04-11 17:04:02 +02:00
# ifdef PSX
2020-04-10 01:29:12 +02:00
CdReadyCallback ( ready_cb_regions ) ;
2020-04-11 17:04:02 +02:00
# else
2020-04-19 12:53:18 +02:00
levelSpoolerPCReadyCallback ( ready_cb_regions ) ;
2020-04-11 17:04:02 +02:00
# endif // PSX
2020-04-04 06:49:28 +02:00
}
2020-04-10 01:29:12 +02:00
else if ( bVar1 = = 1 )
{
2020-05-11 20:34:38 +02:00
sectors_to_read = 17 ;
target_address + = 0x4000 ;
2020-04-10 01:29:12 +02:00
nTPchunks_reading = 0 ;
nTPchunks_writing = 0 ;
ntpages = tsetcounter ;
sectors_this_chunk = ( uint ) bVar1 ;
2020-04-11 17:04:02 +02:00
# ifdef PSX
2020-04-10 01:29:12 +02:00
CdReadyCallback ( ready_cb_textures ) ;
2020-04-11 17:04:02 +02:00
# else
2020-04-19 12:53:18 +02:00
levelSpoolerPCReadyCallback ( ready_cb_textures ) ;
2020-04-11 17:04:02 +02:00
# endif // PSX
2020-04-10 01:29:12 +02:00
}
else if ( bVar1 = = 2 )
{
sectors_to_read = ( spooldata [ spoolpos_reading ] . nsectors ) ;
send_bank = ( spooldata [ spoolpos_reading ] . data ) ;
sample_chunk = 0 ;
nTPchunks_reading = 0 ;
nTPchunks_writing = 0 ;
target_address = target_address + ( loadbank_read & 1U ) * 0x1000 ;
sectors_this_chunk = ( uint ) bVar1 ;
2020-04-11 17:04:02 +02:00
# ifdef PSX
2020-04-10 01:29:12 +02:00
CdReadyCallback ( ready_cb_soundbank ) ;
2020-04-11 17:04:02 +02:00
# else
2020-04-19 12:53:18 +02:00
levelSpoolerPCReadyCallback ( ready_cb_soundbank ) ;
2020-04-11 17:04:02 +02:00
# endif // PSX
2020-04-10 01:29:12 +02:00
}
else if ( bVar1 = = 3 )
{
sectors_to_read = ( spooldata [ spoolpos_reading ] . nsectors ) ;
2020-04-11 17:04:02 +02:00
# ifdef PSX
2020-04-10 01:29:12 +02:00
CdReadyCallback ( ready_cb_misc ) ;
2020-04-11 17:04:02 +02:00
# else
2020-04-19 12:53:18 +02:00
levelSpoolerPCReadyCallback ( ready_cb_misc ) ;
2020-04-11 17:04:02 +02:00
# endif // PSX
2020-04-04 06:49:28 +02:00
}
}
2020-04-10 01:29:12 +02:00
else
{
switch_spooltype = 0 ;
2020-04-11 17:04:02 +02:00
# ifdef PSX
2020-04-10 01:29:12 +02:00
CdReadyCallback ( 0 ) ;
2020-04-11 17:04:02 +02:00
# else
2020-04-19 12:53:18 +02:00
levelSpoolerPCReadyCallback ( NULL ) ;
2020-04-11 17:04:02 +02:00
# endif // PSX
2020-04-10 01:29:12 +02:00
}
2020-03-27 21:47:29 +01:00
}
// decompiled code
// original method signature:
// void /*$ra*/ changemode(struct SPOOLQ *current /*$a0*/)
// line 591, offset 0x0007e1a8
/* begin block 1 */
// Start line: 1182
/* end block 1 */
// End Line: 1183
/* begin block 2 */
// Start line: 5397
/* end block 2 */
// End Line: 5398
2020-04-10 01:29:12 +02:00
// [D]
2020-03-27 21:47:29 +01:00
void changemode ( SPOOLQ * current )
{
2020-04-10 01:29:12 +02:00
char bVar1 ;
2020-04-04 06:49:28 +02:00
switch_spooltype = 0 ;
endchunk = 0 ;
2020-04-10 01:29:12 +02:00
2020-04-04 06:49:28 +02:00
bVar1 = current - > type ;
2020-04-10 01:29:12 +02:00
if ( bVar1 = = 0 )
{
2020-04-11 17:04:02 +02:00
# ifdef PSX
2020-04-10 01:29:12 +02:00
CdDataCallback ( data_cb_regions ) ;
2020-04-11 17:04:02 +02:00
# else
2020-04-19 12:53:18 +02:00
levelSpoolerPCDataCallback ( data_cb_regions ) ;
2020-04-11 17:04:02 +02:00
# endif // PSX
2020-04-10 01:29:12 +02:00
}
2020-04-11 17:04:02 +02:00
else if ( bVar1 = = 1 )
{
# ifdef PSX
2020-04-04 06:49:28 +02:00
CdDataCallback ( data_cb_textures ) ;
2020-04-11 17:04:02 +02:00
# else
2020-04-19 12:53:18 +02:00
levelSpoolerPCDataCallback ( data_cb_textures ) ;
2020-04-11 17:04:02 +02:00
# endif // PSX
2020-04-04 06:49:28 +02:00
}
2020-04-10 01:29:12 +02:00
else if ( bVar1 = = 2 )
{
2020-04-11 17:04:02 +02:00
# ifdef PSX
2020-04-10 01:29:12 +02:00
CdDataCallback ( data_cb_soundbank ) ;
2020-04-11 17:04:02 +02:00
# else
2020-04-19 12:53:18 +02:00
levelSpoolerPCDataCallback ( data_cb_soundbank ) ;
2020-04-11 17:04:02 +02:00
# endif // PSX
2020-04-10 01:29:12 +02:00
}
else if ( bVar1 = = 3 )
{
2020-04-11 17:04:02 +02:00
# ifdef PSX
2020-04-10 01:29:12 +02:00
CdDataCallback ( data_cb_misc ) ;
2020-04-11 17:04:02 +02:00
# else
2020-04-19 12:53:18 +02:00
levelSpoolerPCDataCallback ( data_cb_misc ) ;
2020-04-11 17:04:02 +02:00
# endif // PSX
2020-04-04 06:49:28 +02:00
}
2020-03-27 21:47:29 +01:00
}
// decompiled code
// original method signature:
// int /*$ra*/ check_regions_present()
// line 625, offset 0x0007b3c4
/* begin block 1 */
// Start line: 627
// Start offset: 0x0007B3C4
// Variables:
// struct AREA_LOAD_INFO regions_to_unpack[3]; // stack offset -160
// int leftright_unpack; // $a2
// int topbottom_unpack; // $a3
// int num_regions_to_unpack; // $a1
// int x; // $v1
// int z; // $v0
// int loop; // $t1
// int retval; // $a3
// int region_to_unpack; // $a0
// int barrel_region; // $v1
// char textbuf[128]; // stack offset -136
/* end block 1 */
// End offset: 0x0007B6C4
// End Line: 771
/* begin block 2 */
// Start line: 1267
/* end block 2 */
// End Line: 1268
/* begin block 3 */
// Start line: 1268
/* end block 3 */
// End Line: 1269
/* begin block 4 */
// Start line: 1269
/* end block 4 */
// End Line: 1270
/* WARNING: Unknown calling convention yet parameter storage is locked */
2020-04-10 13:56:11 +02:00
// [D]
2020-03-27 21:47:29 +01:00
int check_regions_present ( void )
{
2020-04-10 13:56:11 +02:00
AREA_LOAD_INFO * pAVar1 ;
2020-04-04 06:49:28 +02:00
int iVar2 ;
int iVar3 ;
int iVar4 ;
int iVar5 ;
2020-04-10 13:56:11 +02:00
AREA_LOAD_INFO * pAVar6 ;
AREA_LOAD_INFO region_to_unpack [ 3 ] ;
char textbuf [ 128 ] ;
2020-04-04 06:49:28 +02:00
2020-04-10 13:56:11 +02:00
pAVar6 = region_to_unpack ;
2020-04-04 06:49:28 +02:00
iVar4 = 0 ;
iVar5 = 0 ;
iVar3 = 0 ;
if ( current_barrel_region_xcell < 9 ) {
2020-04-10 13:56:11 +02:00
region_to_unpack [ 0 ] . xoffset = - 1 ;
2020-04-04 06:49:28 +02:00
if ( region_x ! = 0 ) {
iVar4 = 1 ;
LAB_0007b44c :
iVar3 = 1 ;
2020-04-10 13:56:11 +02:00
region_to_unpack [ 0 ] . zoffset = 0 ;
2020-04-04 06:49:28 +02:00
}
}
else {
if ( 0x17 < current_barrel_region_xcell ) {
iVar2 = cells_across ;
if ( cells_across < 0 ) {
iVar2 = cells_across + 0x1f ;
}
2020-04-10 13:56:11 +02:00
region_to_unpack [ 0 ] . xoffset = 1 ;
2020-04-04 06:49:28 +02:00
if ( region_x < iVar2 > > 5 ) {
iVar4 = 2 ;
goto LAB_0007b44c ;
}
}
}
if ( current_barrel_region_zcell < 9 ) {
if ( region_z = = 0 ) goto LAB_0007b4e0 ;
iVar5 = 1 ;
2020-04-10 13:56:11 +02:00
region_to_unpack [ iVar3 ] . xoffset = 0 ;
2020-04-04 06:49:28 +02:00
iVar2 = - 1 ;
}
else {
if ( ( current_barrel_region_zcell < 0x18 ) | | ( region_z = = 0 ) ) goto LAB_0007b4e0 ;
iVar5 = 2 ;
2020-04-10 13:56:11 +02:00
region_to_unpack [ iVar3 ] . xoffset = 0 ;
2020-04-04 06:49:28 +02:00
iVar2 = 1 ;
}
2020-04-10 13:56:11 +02:00
pAVar1 = region_to_unpack + iVar3 ;
2020-04-04 06:49:28 +02:00
iVar3 = iVar3 + 1 ;
2020-04-10 13:56:11 +02:00
pAVar1 - > zoffset = iVar2 ;
2020-03-27 21:47:29 +01:00
LAB_0007b4e0 :
2020-04-04 06:49:28 +02:00
if ( iVar3 = = 2 ) {
if ( iVar5 = = 1 ) {
iVar3 = 3 ;
if ( iVar4 = = 1 ) {
2020-04-10 13:56:11 +02:00
region_to_unpack [ 2 ] . xoffset = - 1 ;
region_to_unpack [ 2 ] . zoffset = - 1 ;
2020-04-04 06:49:28 +02:00
}
else {
2020-04-10 13:56:11 +02:00
region_to_unpack [ 2 ] . xoffset = 1 ;
region_to_unpack [ 2 ] . zoffset = - 1 ;
2020-04-04 06:49:28 +02:00
}
}
else {
iVar3 = 3 ;
if ( iVar4 = = 1 ) {
2020-04-10 13:56:11 +02:00
region_to_unpack [ 2 ] . xoffset = - 1 ;
2020-04-04 06:49:28 +02:00
}
else {
2020-04-10 13:56:11 +02:00
region_to_unpack [ 2 ] . xoffset = 1 ;
2020-04-04 06:49:28 +02:00
}
2020-04-10 13:56:11 +02:00
region_to_unpack [ 2 ] . zoffset = 1 ;
2020-04-04 06:49:28 +02:00
}
}
iVar4 = 0 ;
while ( iVar3 ! = 0 ) {
iVar5 = cells_across ;
if ( cells_across < 0 ) {
iVar5 = cells_across + 0x1f ;
}
2020-04-10 13:56:11 +02:00
iVar5 = current_region + * ( int * ) pAVar6 + ( ( int * ) pAVar6 ) [ 1 ] * ( iVar5 > > 5 ) ;
if ( ( ( ( int ) loading_region [ ( region_x + * ( int * ) pAVar6 & 1U ) + ( region_z + ( ( int * ) pAVar6 ) [ 1 ] & 1U ) * 2 ] ! =
- 1 ) & & ( spoolinfo_offsets [ iVar5 ] ! = 0xffff ) ) & &
( ( int ) loading_region
[ ( region_x + * ( int * ) pAVar6 & 1U ) + ( region_z + ( ( int * ) pAVar6 ) [ 1 ] & 1U ) * 2 ] = =
iVar5 ) ) {
2020-04-04 06:49:28 +02:00
iVar4 = iVar4 + 1 ;
}
iVar3 = iVar3 + - 1 ;
2020-04-10 13:56:11 +02:00
pAVar6 = ( AREA_LOAD_INFO * ) ( ( int * ) pAVar6 + 2 ) ;
2020-04-04 06:49:28 +02:00
}
if ( LoadingArea ! = 0 ) {
if ( new_area_location = = 1 ) {
if ( 0x1a < current_barrel_region_xcell ) {
iVar4 = iVar4 + 1 ;
}
}
else {
if ( new_area_location < 2 ) {
if ( ( new_area_location = = 0 ) & & ( 0x1a < current_barrel_region_zcell ) ) {
iVar4 = iVar4 + 1 ;
}
}
else {
iVar3 = current_barrel_region_zcell ;
if ( ( ( new_area_location = = 2 ) | |
( iVar3 = current_barrel_region_xcell , new_area_location = = 3 ) ) & & ( iVar3 < 6 ) ) {
iVar4 = iVar4 + 1 ;
}
}
}
}
2020-04-10 13:56:11 +02:00
return iVar4 ;
2020-03-27 21:47:29 +01:00
}
// decompiled code
// original method signature:
// void /*$ra*/ stopgame()
// line 818, offset 0x0007e958
/* begin block 1 */
// Start line: 822
// Start offset: 0x0007E958
/* end block 1 */
// End offset: 0x0007E9A0
// End Line: 827
/* begin block 2 */
// Start line: 1636
/* end block 2 */
// End Line: 1637
/* begin block 3 */
// Start line: 8809
/* end block 3 */
// End Line: 8810
/* WARNING: Unknown calling convention yet parameter storage is locked */
2020-04-10 13:56:11 +02:00
// [D]
2020-03-27 21:47:29 +01:00
void stopgame ( void )
{
2020-04-04 06:49:28 +02:00
StopPadVibration ( 0 ) ;
StopPadVibration ( 1 ) ;
PauseSFX ( ) ;
DrawSync ( 0 ) ;
PutDrawEnv ( & last - > draw ) ;
2020-03-27 21:47:29 +01:00
}
// decompiled code
// original method signature:
// void /*$ra*/ startgame()
// line 829, offset 0x0007e9a0
/* begin block 1 */
// Start line: 831
// Start offset: 0x0007E9A0
/* end block 1 */
// End offset: 0x0007E9D0
// End Line: 833
/* begin block 2 */
// Start line: 8825
/* end block 2 */
// End Line: 8826
/* begin block 3 */
// Start line: 8828
/* end block 3 */
// End Line: 8829
/* begin block 4 */
// Start line: 8829
/* end block 4 */
// End Line: 8830
/* WARNING: Unknown calling convention yet parameter storage is locked */
2020-04-10 13:56:11 +02:00
// [D]
2020-03-27 21:47:29 +01:00
void startgame ( void )
{
2020-04-04 06:49:28 +02:00
PutDrawEnv ( & current - > draw ) ;
UnPauseSFX ( ) ;
2020-03-27 21:47:29 +01:00
}
// decompiled code
// original method signature:
// void /*$ra*/ DrawCDicon()
// line 836, offset 0x0007e24c
/* begin block 1 */
// Start line: 838
// Start offset: 0x0007E24C
// Variables:
// unsigned short *palette; // $a1
// int temp; // $a2
// int i; // $a0
// struct RECT dest; // stack offset -16
/* end block 1 */
// End offset: 0x0007E2CC
// End Line: 856
/* begin block 2 */
// Start line: 5885
/* end block 2 */
// End Line: 5886
/* begin block 3 */
// Start line: 5886
/* end block 3 */
// End Line: 5887
/* WARNING: Unknown calling convention yet parameter storage is locked */
2020-04-10 13:56:11 +02:00
extern POLY_FT4 cd_sprite ;
extern unsigned short cd_icon [ 288 ] ;
// [D]
2020-03-27 21:47:29 +01:00
void DrawCDicon ( void )
{
2020-04-10 13:56:11 +02:00
ushort * puVar1 ;
2020-04-04 06:49:28 +02:00
int iVar2 ;
2020-04-10 13:56:11 +02:00
RECT16 local_10 ;
2020-04-04 06:49:28 +02:00
2020-04-10 13:56:11 +02:00
cd_icon [ 23 ] = cd_icon [ 11 ] ;
2020-04-04 06:49:28 +02:00
iVar2 = 0xb ;
2020-04-10 13:56:11 +02:00
puVar1 = cd_icon + 10 ;
2020-04-04 06:49:28 +02:00
do {
iVar2 = iVar2 + - 1 ;
puVar1 [ 1 ] = puVar1 [ 2 ] ;
puVar1 = puVar1 + 1 ;
} while ( - 1 < iVar2 ) ;
2020-04-10 13:56:11 +02:00
local_10 . x = 960 ;
local_10 . y = 433 ;
local_10 . w = 16 ;
local_10 . h = 1 ;
LoadImage ( & local_10 , ( u_long * ) ( cd_icon + 10 ) ) ;
2020-04-04 06:49:28 +02:00
DrawPrim ( & cd_sprite ) ;
DrawSync ( 0 ) ;
2020-03-27 21:47:29 +01:00
}
// decompiled code
// original method signature:
// void /*$ra*/ CheckValidSpoolData()
// line 859, offset 0x0007e2cc
/* begin block 1 */
// Start line: 861
// Start offset: 0x0007E2CC
// Variables:
// struct RECT dest; // stack offset -16
/* end block 1 */
// End offset: 0x0007E35C
// End Line: 918
/* begin block 2 */
// Start line: 5946
/* end block 2 */
// End Line: 5947
/* begin block 3 */
// Start line: 5950
/* end block 3 */
// End Line: 5951
/* begin block 4 */
// Start line: 5951
/* end block 4 */
// End Line: 5952
/* begin block 5 */
// Start line: 5962
/* end block 5 */
// End Line: 5963
/* WARNING: Unknown calling convention yet parameter storage is locked */
2020-04-10 01:29:12 +02:00
// [D]
2020-03-27 21:47:29 +01:00
void CheckValidSpoolData ( void )
{
2020-04-04 06:49:28 +02:00
int iVar1 ;
2020-04-10 01:29:12 +02:00
if ( models_ready ! = 0 )
{
2020-04-04 06:49:28 +02:00
init_spooled_models ( ) ;
}
2020-04-10 01:29:12 +02:00
if ( spoolactive ! = 0 )
{
iVar1 = check_regions_present ( ) ;
if ( iVar1 ! = 0 )
{
2020-04-19 12:53:18 +02:00
printf ( " Waiting to load regions... \n " ) ; // [A]
2020-04-10 01:29:12 +02:00
stopgame ( ) ;
while ( spoolactive ! = 0 )
{
DrawCDicon ( ) ;
VSync ( 0 ) ;
}
startgame ( ) ;
2020-04-19 12:53:18 +02:00
2020-04-10 01:29:12 +02:00
PutDrawEnv ( & current - > draw ) ;
UnPauseSFX ( ) ;
2020-04-04 06:49:28 +02:00
}
}
2020-03-27 21:47:29 +01:00
}
// decompiled code
// original method signature:
// void /*$ra*/ UpdateSpool()
// line 925, offset 0x0007b6c4
/* begin block 1 */
// Start line: 927
// Start offset: 0x0007B6C4
// Variables:
// struct SPOOLQ *current; // $s0
// struct CdlLOC pos; // stack offset -16
/* end block 1 */
// End offset: 0x0007B87C
// End Line: 977
/* begin block 2 */
// Start line: 1793
/* end block 2 */
// End Line: 1794
/* begin block 3 */
// Start line: 1903
/* end block 3 */
// End Line: 1904
/* begin block 4 */
// Start line: 1904
/* end block 4 */
// End Line: 1905
/* begin block 5 */
// Start line: 1908
/* end block 5 */
// End Line: 1909
/* WARNING: Unknown calling convention yet parameter storage is locked */
2020-04-09 20:50:21 +02:00
// [D]
2020-03-27 21:47:29 +01:00
void UpdateSpool ( void )
{
2020-04-09 20:50:21 +02:00
char bVar1 ;
2020-04-04 06:49:28 +02:00
int iVar3 ;
2020-04-09 20:50:21 +02:00
CdlLOC pos ;
2020-04-04 06:49:28 +02:00
iVar3 = XAPrepared ( ) ;
2020-04-09 20:50:21 +02:00
if ( iVar3 ! = 1 )
{
2020-04-04 06:49:28 +02:00
target_address = spooldata [ spoolpos_reading ] . addr ;
bVar1 = spooldata [ spoolpos_reading ] . type ;
2020-04-09 20:50:21 +02:00
if ( bVar1 = = 0 ) // SPOOLTYPE_REGIONS
{
sectors_this_chunk = ( spooldata [ spoolpos_reading ] . nsectors ) ;
sectors_to_read = spool_regioninfo [ spool_regionpos ] . nsectors ;
2020-04-04 06:49:28 +02:00
spoolseek = 5 ;
2020-04-09 21:32:19 +02:00
# ifdef PSX
2020-04-09 20:50:21 +02:00
CdDataCallback ( data_cb_regions ) ;
CdReadyCallback ( ready_cb_regions ) ;
2020-04-09 21:32:19 +02:00
# else
2020-04-19 12:53:18 +02:00
levelSpoolerPCDataCallback ( data_cb_regions ) ;
levelSpoolerPCReadyCallback ( ready_cb_regions ) ;
2020-04-09 21:32:19 +02:00
# endif // PSX
2020-04-09 20:50:21 +02:00
}
else if ( bVar1 = = 1 ) // SPOOLTYPE_TEXTURES
{
spoolseek = 5 ;
2020-04-04 06:49:28 +02:00
nTPchunks_reading = 0 ;
nTPchunks_writing = 0 ;
2020-04-11 17:04:02 +02:00
sectors_to_read = 17 ;
2020-04-04 06:49:28 +02:00
ntpages = tsetcounter ;
sectors_this_chunk = ( uint ) bVar1 ;
2020-04-09 20:50:21 +02:00
2020-04-09 21:32:19 +02:00
# ifdef PSX
2020-04-04 06:49:28 +02:00
CdDataCallback ( data_cb_textures ) ;
CdReadyCallback ( ready_cb_textures ) ;
2020-04-11 17:04:02 +02:00
# else
2020-04-19 12:53:18 +02:00
levelSpoolerPCDataCallback ( data_cb_textures ) ;
levelSpoolerPCReadyCallback ( ready_cb_textures ) ;
2020-04-09 21:32:19 +02:00
# endif // PSX
2020-04-09 20:50:21 +02:00
2020-04-04 06:49:28 +02:00
target_address = target_address + 0x4000 ;
}
2020-04-09 20:50:21 +02:00
else if ( bVar1 = = 2 ) // SPOOLTYPE_SOUNDBANK
{
sectors_to_read = ( spooldata [ spoolpos_reading ] . nsectors ) ;
send_bank = ( spooldata [ spoolpos_reading ] . data ) ;
spoolseek = 5 ;
sample_chunk = 0 ;
nTPchunks_reading = 0 ;
nTPchunks_writing = 0 ;
sectors_this_chunk = ( uint ) bVar1 ;
2020-04-09 21:32:19 +02:00
# ifdef PSX
2020-04-09 20:50:21 +02:00
CdDataCallback ( data_cb_soundbank ) ;
CdReadyCallback ( ready_cb_soundbank ) ;
2020-04-09 21:32:19 +02:00
# else
2020-04-19 12:53:18 +02:00
levelSpoolerPCDataCallback ( data_cb_soundbank ) ;
levelSpoolerPCReadyCallback ( ready_cb_soundbank ) ;
2020-04-09 21:32:19 +02:00
# endif // PSX
2020-04-09 20:50:21 +02:00
target_address = target_address + ( loadbank_read & 1U ) * 0x1000 ;
2020-04-04 06:49:28 +02:00
}
2020-04-10 01:29:12 +02:00
else if ( bVar1 = = 3 ) // SPOOLTYPE_MISC
2020-04-09 20:50:21 +02:00
{
sectors_to_read = ( spooldata [ spoolpos_reading ] . nsectors ) ;
spoolseek = 5 ;
2020-04-09 21:32:19 +02:00
# ifdef PSX
2020-04-09 20:50:21 +02:00
CdDataCallback ( data_cb_misc ) ;
CdReadyCallback ( ready_cb_misc ) ;
2020-04-09 21:32:19 +02:00
# else
2020-04-19 12:53:18 +02:00
levelSpoolerPCDataCallback ( data_cb_misc ) ;
levelSpoolerPCReadyCallback ( ready_cb_misc ) ;
2020-04-09 21:32:19 +02:00
# endif // PSX
2020-04-09 20:50:21 +02:00
}
2020-04-11 17:04:02 +02:00
current_sector = spooldata [ spoolpos_reading ] . sector ;
2020-04-04 06:49:28 +02:00
endchunk = 0 ;
switch_spooltype = 0 ;
2020-04-09 20:50:21 +02:00
2020-04-11 17:04:02 +02:00
// run sector reading
2020-04-09 21:32:19 +02:00
# ifdef PSX
2020-04-09 20:50:21 +02:00
CdIntToPos ( current_sector , & pos ) ;
2020-04-11 13:21:25 +02:00
CdControlF ( CdlReadS , ( u_char * ) & pos ) ;
# else
2020-04-11 17:04:02 +02:00
startReadLevSectorsPC ( current_sector ) ;
2020-04-09 21:32:19 +02:00
# endif // PSX
2020-04-04 06:49:28 +02:00
}
2020-03-27 21:47:29 +01:00
}
// decompiled code
// original method signature:
// void /*$ra*/ RequestSpool(int type /*$a0*/, int data /*$a1*/, int offset /*$a2*/, int loadsize /*$a3*/, char *address /*stack 16*/, TDRFuncPtr_RequestSpool5func func /*stack 20*/)
// line 1104, offset 0x0007e36c
/* begin block 1 */
// Start line: 1105
// Start offset: 0x0007E36C
// Variables:
// struct SPOOLQ *next; // $t0
// int sector; // $v0
/* end block 1 */
// End offset: 0x0007E3E4
// End Line: 1126
/* begin block 2 */
// Start line: 6440
/* end block 2 */
// End Line: 6441
/* begin block 3 */
// Start line: 6447
/* end block 3 */
// End Line: 6448
2020-04-09 20:50:21 +02:00
// [D]
2020-04-20 06:55:53 +02:00
# ifdef _DEBUG
void _RequestSpool ( int type , int data , int offset , int loadsize , char * address , spooledFuncPtr func , const char * requestby , int line )
2020-05-12 06:13:05 +02:00
# define RequestSpool(type, data, offset, loadsize, loadaddr, func) _RequestSpool(type, data, offset, loadsize, loadaddr, func, __FUNCTION__, __LINE__)
2020-04-20 06:55:53 +02:00
# else
2020-04-04 06:49:28 +02:00
void RequestSpool ( int type , int data , int offset , int loadsize , char * address , spooledFuncPtr func )
2020-04-20 06:55:53 +02:00
# endif _DEBUG
2020-03-27 21:47:29 +01:00
{
2020-05-11 20:34:38 +02:00
if ( loadsize = = 0 )
{
printf ( " DENY RequesySpool, loadsize==0! \n " ) ;
return ;
2020-04-04 06:49:28 +02:00
}
2020-04-09 20:50:21 +02:00
2020-05-11 20:34:38 +02:00
SPOOLQ * next ;
2020-04-09 20:50:21 +02:00
next = & spooldata [ spoolcounter ] ;
2020-05-11 20:34:38 +02:00
next - > type = type ;
next - > data = data ;
next - > sector = ( citylumps [ GameLevel ] [ 3 ] . x / 2048 ) + offset ;
next - > nsectors = loadsize ;
2020-04-09 20:50:21 +02:00
next - > addr = address ;
next - > func = func ;
2020-04-20 06:55:53 +02:00
# ifdef _DEBUG
next - > requestby = requestby ;
next - > requestbyline = line ;
# endif // _DEBUG
2020-04-09 20:50:21 +02:00
spoolcounter + + ;
2020-03-27 21:47:29 +01:00
}
// decompiled code
// original method signature:
// void /*$ra*/ InitSpooling()
// line 1129, offset 0x0007e494
/* begin block 1 */
// Start line: 1131
// Start offset: 0x0007E494
// Variables:
// int i; // $s0
// char namebuffer[128]; // stack offset -152
// struct CdlLOC pos; // stack offset -24
/* end block 1 */
// End offset: 0x0007E528
// End Line: 1158
/* begin block 2 */
// Start line: 7099
/* end block 2 */
// End Line: 7100
/* begin block 3 */
// Start line: 2258
/* end block 3 */
// End Line: 2259
/* begin block 4 */
// Start line: 7100
/* end block 4 */
// End Line: 7101
/* begin block 5 */
// Start line: 7105
/* end block 5 */
// End Line: 7106
/* WARNING: Unknown calling convention yet parameter storage is locked */
2020-04-09 19:10:34 +02:00
// [D]
2020-03-27 21:47:29 +01:00
void InitSpooling ( void )
{
2020-04-04 06:49:28 +02:00
int target_region ;
target_region = 0 ;
2020-04-09 19:10:34 +02:00
2020-04-04 06:49:28 +02:00
do {
2020-05-11 20:34:38 +02:00
loading_region [ target_region ] = - 1 ;
2020-04-04 06:49:28 +02:00
ClearRegion ( target_region ) ;
2020-05-11 20:34:38 +02:00
target_region + + ;
2020-04-04 06:49:28 +02:00
} while ( target_region < 4 ) ;
2020-04-09 19:10:34 +02:00
2020-04-04 06:49:28 +02:00
spool_regioncounter = 0 ;
spoolerror = 0 ;
spool_regionpos = 0 ;
spoolactive = 0 ;
tsetcounter = 0 ;
models_ready = 0 ;
tsetpos = 0 ;
spoolcounter = 0 ;
loadbank_read = 0 ;
spoolpos = 0 ;
unpack_roadmap_flag = 0 ;
loadbank_write = 0 ;
spoolseek = 0 ;
unpack_cellptr_flag = 0 ;
2020-03-27 21:47:29 +01:00
}
// decompiled code
// original method signature:
// void /*$ra*/ SendTPage()
// line 1161, offset 0x0007b88c
/* begin block 1 */
// Start line: 1163
// Start offset: 0x0007B88C
// Variables:
// int tpage2send; // $s2
// int slot; // $s0
// int old; // $v1
// char *tpageaddress; // $t0
/* begin block 1.1 */
// Start line: 1176
// Start offset: 0x0007B900
// Variables:
// struct RECT cluts; // stack offset -32
// int npalettes; // $s1
// int i; // $a3
// unsigned long *clutptr; // $a1
/* end block 1.1 */
// End offset: 0x0007BA24
// End Line: 1208
/* end block 1 */
// End offset: 0x0007BB14
// End Line: 1235
/* begin block 2 */
// Start line: 2385
/* end block 2 */
// End Line: 2386
/* begin block 3 */
// Start line: 2386
/* end block 3 */
// End Line: 2387
/* begin block 4 */
// Start line: 2390
/* end block 4 */
// End Line: 2391
/* WARNING: Unknown calling convention yet parameter storage is locked */
2020-04-10 01:29:12 +02:00
int tsetinfo [ 32 ] ;
// [D]
2020-03-27 21:47:29 +01:00
void SendTPage ( void )
{
2020-04-10 01:29:12 +02:00
unsigned char bVar1 ;
2020-05-12 06:46:52 +02:00
ulong * clutptr ;
2020-04-04 06:49:28 +02:00
int iVar5 ;
2020-05-12 06:46:52 +02:00
int npalettes ;
2020-04-04 06:49:28 +02:00
int iVar7 ;
2020-04-10 01:29:12 +02:00
RECT16 cluts ;
2020-04-04 06:49:28 +02:00
iVar7 = tsetinfo [ tsetpos * 2 ] ;
2020-05-12 06:46:52 +02:00
iVar5 = tsetinfo [ tsetpos * 2 + 1 ] ;
2020-04-10 01:29:12 +02:00
if ( nTPchunks = = 0 )
{
2020-05-12 06:46:52 +02:00
if ( iVar5 ! = tpageloaded [ iVar7 ] - 1 )
2020-04-10 01:29:12 +02:00
{
2020-05-12 06:46:52 +02:00
npalettes = * ( int * ) ( model_spool_buffer + 0xE000 ) ;
2020-04-10 01:29:12 +02:00
tpage . w = 64 ;
tpage . h = 64 ;
cluts . w = 64 ;
2020-05-12 06:46:52 +02:00
tpage . x = slot_tpagepos [ iVar5 ] . vx ;
2020-04-10 01:29:12 +02:00
tpage . y = slot_tpagepos [ iVar5 ] . vy ;
2020-05-12 06:46:52 +02:00
2020-04-10 01:29:12 +02:00
cluts . y = slot_clutpos [ iVar5 ] . vy ;
cluts . x = slot_clutpos [ iVar5 ] . vx ;
2020-05-12 06:46:52 +02:00
cluts . h = npalettes / 4 + 1 ;
LoadImage ( & cluts , ( u_long * ) ( model_spool_buffer + 0xE000 + 4 ) ) ;
2020-04-10 01:29:12 +02:00
2020-05-12 06:46:52 +02:00
clutptr = ( ulong * ) ( texture_cluts [ iVar7 ] ) ;
2020-04-04 06:49:28 +02:00
iVar5 = 0 ;
2020-04-10 01:29:12 +02:00
2020-05-12 06:46:52 +02:00
if ( 0 < npalettes )
2020-04-10 01:29:12 +02:00
{
2020-04-04 06:49:28 +02:00
do {
2020-05-12 06:46:52 +02:00
//int test1 = (uVar3 | iVar2 + 0x10 >> 4 & 0x3fU) << 0x10 | uVar3 | (int)((uint)cluts.x << 0x10) >> 0x14 & 0x3fU;
//int test2 = (uVar3 | iVar2 + 0x30 >> 4 & 0x3fU) << 0x10 | uVar3 | iVar2 + 0x20 >> 4 & 0x3fU;
2020-04-10 01:29:12 +02:00
2020-05-12 06:46:52 +02:00
clutptr [ 0 ] = getClut ( cluts . x + 16 , cluts . y ) < < 0x10 | getClut ( cluts . x , cluts . y ) ;
clutptr [ 1 ] = getClut ( cluts . x + 48 , cluts . y ) < < 0x10 | getClut ( cluts . x + 32 , cluts . y ) ;
2020-04-10 01:29:12 +02:00
2020-05-12 06:46:52 +02:00
clutptr + = 2 ;
cluts . y + + ;
iVar5 + = 4 ; ;
} while ( iVar5 < npalettes ) ;
2020-04-04 06:49:28 +02:00
}
2020-04-10 01:29:12 +02:00
2020-05-12 06:46:52 +02:00
texture_pages [ iVar7 ] = getTPage ( 0 , 0 , tpage . x , tpage . y ) ;
// OLD VALUE: (short)(tpage.y & 0x100U) >> 4 | (ushort)(((uint)(ushort)tpage.x & 0x3ff) >> 6) | (ushort)(((uint)(ushort)tpage.y & 0x200) << 2);
// please check me if above is correct
2020-04-04 06:49:28 +02:00
}
}
2020-04-10 01:29:12 +02:00
else
{
2020-05-12 06:46:52 +02:00
if ( iVar5 ! = tpageloaded [ iVar7 ] - 1 )
2020-04-10 01:29:12 +02:00
{
2020-04-11 18:03:57 +02:00
LoadImage ( & tpage , ( u_long * ) ( model_spool_buffer + 0xa000 + ( loadbank_write % 2 ) * TPAGE_WIDTH * 32 ) ) ;
2020-04-04 06:49:28 +02:00
tpage . y = tpage . y + tpage . h ;
}
2020-04-10 01:29:12 +02:00
2020-04-11 18:34:29 +02:00
if ( nTPchunks = = 4 )
2020-04-10 01:29:12 +02:00
{
2020-04-11 18:34:29 +02:00
bVar1 = tpageslots [ iVar5 ] ;
2020-05-12 06:46:52 +02:00
tpageslots [ iVar5 ] = iVar7 ;
2020-04-10 01:29:12 +02:00
2020-05-12 06:46:52 +02:00
if ( bVar1 ! = 0xFF ) // [A] bug fix
tpageloaded [ bVar1 ] = 0 ;
2020-04-11 18:34:29 +02:00
2020-05-12 06:46:52 +02:00
tpageloaded [ iVar7 ] = iVar5 + 1 ;
2020-04-11 18:34:29 +02:00
tsetpos + + ;
2020-05-12 06:46:52 +02:00
if ( tsetpos = = tsetcounter )
{
2020-04-04 06:49:28 +02:00
tsetcounter = 0 ;
tsetpos = 0 ;
}
}
}
2020-03-27 21:47:29 +01:00
}
// decompiled code
// original method signature:
// void /*$ra*/ SpoolSYNC()
// line 1239, offset 0x0007e528
/* begin block 1 */
// Start line: 7247
/* end block 1 */
// End Line: 7248
/* begin block 2 */
// Start line: 7329
/* end block 2 */
// End Line: 7330
/* begin block 3 */
// Start line: 7345
/* end block 3 */
// End Line: 7346
/* WARNING: Unknown calling convention yet parameter storage is locked */
2020-04-10 01:29:12 +02:00
// [D]
2020-03-27 21:47:29 +01:00
void SpoolSYNC ( void )
{
2020-04-12 17:29:49 +02:00
printf ( " SpoolSYNC... \n " ) ; // [A]
2020-04-04 06:49:28 +02:00
do {
} while ( spoolactive ! = 0 ) ;
2020-04-11 20:33:58 +02:00
2020-04-12 17:29:49 +02:00
printf ( " SpoolSYNC END \n " ) ; // [A]
2020-03-27 21:47:29 +01:00
}
// decompiled code
// original method signature:
// void /*$ra*/ LoadInAreaTSets(int area /*$t4*/)
// line 1262, offset 0x0007bb14
/* begin block 1 */
// Start line: 1263
// Start offset: 0x0007BB14
// Variables:
// unsigned char *tpages; // $s1
// int ntpages_to_load; // $s3
// int i; // $s0
// int slot; // $a0
// int j; // $a1
// int offset; // $s4
// int availableslots[16]; // stack offset -104
// int navailable; // $s2
// char *loadaddr; // $fp
/* end block 1 */
// End offset: 0x0007BD84
// End Line: 1333
/* begin block 2 */
// Start line: 2620
/* end block 2 */
// End Line: 2621
/* begin block 3 */
// Start line: 2648
/* end block 3 */
// End Line: 2649
/* begin block 4 */
// Start line: 2660
/* end block 4 */
// End Line: 2661
2020-04-10 01:29:12 +02:00
// [D]
2020-03-27 21:47:29 +01:00
void LoadInAreaTSets ( int area )
{
2020-04-04 06:49:28 +02:00
bool bVar1 ;
2020-05-12 06:13:05 +02:00
2020-04-04 06:49:28 +02:00
uint uVar3 ;
int iVar4 ;
2020-05-12 06:13:05 +02:00
int offset ;
2020-04-04 06:49:28 +02:00
int * piVar5 ;
2020-05-12 06:13:05 +02:00
int i ;
int slot ;
unsigned char * tpages ;
int ntpages_to_load ;
int navailable ;
char * loadaddr ;
2020-04-10 01:29:12 +02:00
int availableslots [ 16 ] ;
2020-04-04 06:49:28 +02:00
2020-05-12 06:13:05 +02:00
tpages = AreaTPages + area * 16 ;
ntpages_to_load = AreaData [ area ] . num_tpages ;
2020-04-11 18:03:57 +02:00
2020-05-12 06:59:42 +02:00
loadaddr = model_spool_buffer + 0xA000 ;
2020-05-12 06:13:05 +02:00
navailable = 0 ;
2020-04-11 18:03:57 +02:00
2020-05-12 06:13:05 +02:00
if ( slotsused < 19 )
2020-04-11 18:03:57 +02:00
{
2020-04-10 01:29:12 +02:00
piVar5 = availableslots ;
2020-05-12 06:13:05 +02:00
slot = slotsused ;
2020-04-04 06:49:28 +02:00
do {
offset = 0 ;
2020-04-10 01:29:12 +02:00
2020-05-12 06:13:05 +02:00
if ( tpageslots [ slot ] = = 0xff ) // [A]
2020-04-10 01:29:12 +02:00
{
2020-05-12 06:13:05 +02:00
* piVar5 + + = slot ;
navailable + + ;
2020-04-04 06:49:28 +02:00
}
2020-04-10 01:29:12 +02:00
else
{
2020-05-12 06:13:05 +02:00
if ( ntpages_to_load ! = 0 & & tpageslots [ slot ] ! = * tpages ) // [A]
2020-04-10 01:29:12 +02:00
{
2020-04-04 06:49:28 +02:00
uVar3 = 1 ;
do {
offset = uVar3 ;
2020-05-11 20:34:38 +02:00
2020-05-12 06:13:05 +02:00
if ( ntpages_to_load < = offset )
2020-05-11 20:34:38 +02:00
break ;
2020-04-04 06:49:28 +02:00
uVar3 = offset + 1 ;
2020-05-12 06:13:05 +02:00
} while ( tpageslots [ slot ] ! = tpages [ offset ] ) ; // [A]
2020-04-04 06:49:28 +02:00
}
2020-04-10 01:29:12 +02:00
2020-05-12 06:13:05 +02:00
if ( offset = = ntpages_to_load )
2020-04-10 01:29:12 +02:00
{
2020-05-12 06:13:05 +02:00
* piVar5 + + = slot ;
navailable + + ;
2020-04-04 06:49:28 +02:00
}
}
2020-05-12 06:13:05 +02:00
slot + + ;
} while ( slot < 19 ) ;
2020-04-04 06:49:28 +02:00
}
2020-04-10 01:29:12 +02:00
2020-05-12 06:13:05 +02:00
offset = AreaData [ area ] . gfx_offset ;
i = 0 ;
2020-04-10 01:29:12 +02:00
2020-05-12 06:13:05 +02:00
if ( ntpages_to_load ! = 0 )
2020-04-10 01:29:12 +02:00
{
2020-05-12 06:13:05 +02:00
uVar3 = * tpages ;
2020-04-10 01:29:12 +02:00
2020-05-12 06:13:05 +02:00
if ( tpageloaded [ uVar3 ] ! = 0 ) // weird goto lol
{
2020-04-10 01:29:12 +02:00
goto LAB_0007bc94 ;
2020-05-12 06:13:05 +02:00
}
2020-04-10 01:29:12 +02:00
2020-05-12 06:13:05 +02:00
bVar1 = 0 < navailable ;
navailable - - ;
2020-04-10 01:29:12 +02:00
if ( bVar1 )
{
2020-05-12 06:13:05 +02:00
iVar4 = availableslots [ navailable ] ;
2020-04-10 01:29:12 +02:00
while ( true )
{
2020-05-12 06:13:05 +02:00
tsetinfo [ tsetcounter * 2 + 1 ] = iVar4 ;
2020-04-10 01:29:12 +02:00
while ( true )
{
2020-05-12 06:13:05 +02:00
RequestSpool ( 1 , 0 , offset , 17 , loadaddr , SendTPage ) ;
offset + = 17 ;
2020-04-11 17:04:02 +02:00
2020-05-12 06:13:05 +02:00
i + + ;
tsetinfo [ tsetcounter * 2 ] = * tpages ;
2020-04-11 17:04:02 +02:00
2020-05-12 06:13:05 +02:00
tsetcounter + + ;
tpages + + ;
if ( ntpages_to_load < = i )
2020-04-04 06:49:28 +02:00
return ;
2020-04-11 17:04:02 +02:00
2020-05-12 06:13:05 +02:00
uVar3 = * tpages ;
2020-04-11 17:04:02 +02:00
2020-05-12 06:13:05 +02:00
if ( tpageloaded [ uVar3 ] = = 0 )
2020-04-11 17:04:02 +02:00
break ;
2020-05-12 06:13:05 +02:00
2020-04-04 06:49:28 +02:00
LAB_0007bc94 :
2020-05-12 06:13:05 +02:00
tsetinfo [ tsetcounter * 2 + 1 ] = tpageloaded [ uVar3 ] - 1 ;
2020-04-04 06:49:28 +02:00
}
2020-04-10 01:29:12 +02:00
2020-05-12 06:13:05 +02:00
if ( navailable < 1 )
break ;
navailable - - ;
iVar4 = availableslots [ navailable ] ;
2020-04-04 06:49:28 +02:00
}
}
2020-04-11 18:03:57 +02:00
}
2020-03-27 21:47:29 +01:00
}
// decompiled code
// original method signature:
// void /*$ra*/ SendSBK()
// line 1337, offset 0x0007bd84
/* begin block 1 */
// Start line: 1339
// Start offset: 0x0007BD84
// Variables:
// char *address; // $s0
// int slength; // $s1
// int i; // $a1
// unsigned long *source; // $v0
// unsigned long *dest; // $a0
/* end block 1 */
// End offset: 0x0007BEBC
// End Line: 1380
/* begin block 2 */
// Start line: 2921
/* end block 2 */
// End Line: 2922
/* begin block 3 */
// Start line: 2926
/* end block 3 */
// End Line: 2927
/* begin block 4 */
// Start line: 2927
/* end block 4 */
// End Line: 2928
/* WARNING: Unknown calling convention yet parameter storage is locked */
void SendSBK ( void )
{
2020-04-04 06:49:28 +02:00
UNIMPLEMENTED ( ) ;
/*
ulong uVar1 ;
uint uVar2 ;
SAMPLE_DATA * pSVar3 ;
ulong * puVar4 ;
uint uVar5 ;
int * piVar6 ;
int iVar7 ;
piVar6 = ( int * ) ( model_spool_buffer + ( loadbank_write & 1U ) * 0x1000 + 0x8000 ) ;
if ( sample_chunk = = 0 ) {
if ( Song_ID ! = - 1 ) {
StopXM ( ) ;
FreeXM ( ) ;
}
uVar5 = 0 ;
pSVar3 = samples ;
num_samples = piVar6 [ 1 ] ;
uVar2 = num_samples < < 2 ;
puVar4 = ( ulong * ) ( piVar6 + 2 ) ;
if ( uVar2 ! = 0 ) {
do {
uVar1 = * puVar4 ;
puVar4 = puVar4 + 1 ;
uVar5 = uVar5 + 1 ;
pSVar3 - > address = uVar1 ;
pSVar3 = ( SAMPLE_DATA * ) & pSVar3 - > length ;
} while ( uVar5 < uVar2 ) ;
}
piVar6 = piVar6 + 1 + num_samples * 4 + 1 ;
spuaddress = ( & bankaddr ) [ send_bank ] ;
iVar7 = num_samples * - 0x10 + 0xff8 ;
}
else {
iVar7 = 0x1000 ;
}
SpuSetTransferMode ( 0 ) ;
SpuSetTransferStartAddr ( spuaddress ) ;
SpuWrite ( piVar6 , iVar7 + 0x3fU & 0xffffffc0 ) ;
spuaddress = spuaddress + iVar7 ;
sample_chunk = sample_chunk + 1 ;
return ;
*/
2020-03-27 21:47:29 +01:00
}
// decompiled code
// original method signature:
// void /*$ra*/ init_spooled_models()
// line 1484, offset 0x0007bebc
/* begin block 1 */
// Start line: 1486
// Start offset: 0x0007BEBC
// Variables:
// int i; // $s1
// int nmodels; // $s4
// int size; // $s2
// int model_number; // $a1
// char *addr; // $s0
// struct MODEL *parentmodel; // $a1
/* begin block 1.1 */
// Start line: 1519
// Start offset: 0x0007BFBC
/* end block 1.1 */
// End offset: 0x0007BFD0
// End Line: 1521
/* begin block 1.2 */
// Start line: 1528
// Start offset: 0x0007C004
/* end block 1.2 */
// End offset: 0x0007C048
// End Line: 1536
/* end block 1 */
// End offset: 0x0007C08C
// End Line: 1543
/* begin block 2 */
// Start line: 3131
/* end block 2 */
// End Line: 3132
/* begin block 3 */
// Start line: 3236
/* end block 3 */
// End Line: 3237
/* begin block 4 */
// Start line: 3237
/* end block 4 */
// End Line: 3238
/* begin block 5 */
// Start line: 3246
/* end block 5 */
// End Line: 3247
/* WARNING: Unknown calling convention yet parameter storage is locked */
2020-04-10 01:29:12 +02:00
// [D]
2020-03-27 21:47:29 +01:00
void init_spooled_models ( void )
{
2020-05-11 20:10:50 +02:00
int nmodels ;
ushort lod ;
2020-04-04 06:49:28 +02:00
MODEL * * ppMVar4 ;
2020-05-11 20:10:50 +02:00
int model_number ;
2020-04-10 01:29:12 +02:00
MODEL * parentmodel ;
2020-05-11 20:10:50 +02:00
char * addr ;
MODEL * model ;
int i ;
int size ;
2020-04-04 06:49:28 +02:00
2020-05-11 20:10:50 +02:00
addr = model_spool_buffer ;
2020-04-10 01:29:12 +02:00
ppMVar4 = modelpointers ;
2020-05-11 20:10:50 +02:00
2020-04-04 06:49:28 +02:00
models_ready = 0 ;
2020-05-11 20:10:50 +02:00
nmodels = * newmodels + + ;
2020-04-10 01:29:12 +02:00
2020-05-11 20:10:50 +02:00
i = 1535 ;
2020-04-04 06:49:28 +02:00
do {
2020-05-11 20:10:50 +02:00
if ( addr < = ( char * ) * ppMVar4 )
2020-04-04 06:49:28 +02:00
* ppMVar4 = & dummyModel ;
2020-04-10 01:29:12 +02:00
2020-05-11 20:10:50 +02:00
i - - ;
ppMVar4 + + ;
} while ( - 1 < i ) ;
2020-04-10 01:29:12 +02:00
2020-05-11 20:10:50 +02:00
i = 0 ;
if ( nmodels ! = 0 )
2020-04-10 01:29:12 +02:00
{
2020-04-04 06:49:28 +02:00
do {
2020-04-10 01:29:12 +02:00
2020-05-11 20:10:50 +02:00
model_number = newmodels [ i ] ;
2020-04-10 01:29:12 +02:00
2020-05-11 20:10:50 +02:00
size = * ( int * ) addr ;
model = ( MODEL * ) ( addr + 4 ) ;
2020-04-10 01:29:12 +02:00
2020-05-11 20:10:50 +02:00
modelpointers [ model_number ] = model ;
pLodModels [ model_number ] = model ;
2020-04-10 01:29:12 +02:00
2020-05-11 20:10:50 +02:00
lod = Low2LowerDetailTable [ model_number ] ;
if ( ( lod ! = 0xffff ) & & ( lod ! = model_number ) )
pLodModels [ model_number ] = modelpointers [ lod ] ;
2020-04-10 01:29:12 +02:00
2020-05-11 20:10:50 +02:00
if ( model - > instance_number = = - 1 )
{
if ( model - > collision_block ! = 0 )
model - > collision_block = ( int ) ( char * ) model + model - > collision_block ;
model - > vertices = ( int ) ( char * ) model + model - > vertices ;
model - > normals = ( int ) ( char * ) model + model - > normals ;
model - > point_normals = ( int ) ( char * ) model + model - > point_normals ;
2020-04-10 01:29:12 +02:00
2020-04-04 06:49:28 +02:00
InitSpooledAnimObj ( model_number ) ;
}
2020-04-10 01:29:12 +02:00
else
{
2020-05-11 20:10:50 +02:00
parentmodel = modelpointers [ model - > instance_number ] ;
2020-04-10 01:29:12 +02:00
2020-05-11 20:10:50 +02:00
if ( parentmodel - > collision_block ! = 0 )
* ( int * ) ( addr + 36 ) = parentmodel - > collision_block ;
model - > vertices = parentmodel - > vertices ;
model - > normals = parentmodel - > normals ;
model - > point_normals = parentmodel - > point_normals ;
2020-04-10 01:29:12 +02:00
2020-05-11 20:10:50 +02:00
InitSpooledAnimObj ( parentmodel - > instance_number ) ;
2020-04-04 06:49:28 +02:00
}
2020-05-11 20:10:50 +02:00
model - > poly_block = ( int ) ( char * ) model + model - > poly_block ;
addr + = size + 4 ;
2020-04-10 01:29:12 +02:00
2020-05-11 20:10:50 +02:00
i + + ;
} while ( i < nmodels ) ;
2020-04-04 06:49:28 +02:00
}
LoadingArea = 0 ;
2020-03-27 21:47:29 +01:00
}
// decompiled code
// original method signature:
// void /*$ra*/ SetupModels()
// line 1545, offset 0x0007e540
/* begin block 1 */
// Start line: 7941
/* end block 1 */
// End Line: 7942
/* begin block 2 */
// Start line: 7945
/* end block 2 */
// End Line: 7946
/* WARNING: Unknown calling convention yet parameter storage is locked */
2020-04-10 01:29:12 +02:00
// [D]
2020-03-27 21:47:29 +01:00
void SetupModels ( void )
{
2020-05-11 20:34:38 +02:00
if ( old_region = = - 1 )
2020-04-04 06:49:28 +02:00
init_spooled_models ( ) ;
2020-05-11 20:34:38 +02:00
else
2020-04-04 06:49:28 +02:00
models_ready = 1 ;
2020-03-27 21:47:29 +01:00
}
// decompiled code
// original method signature:
// void /*$ra*/ LoadInAreaModels(int area /*$a0*/)
// line 1559, offset 0x0007e580
/* begin block 1 */
// Start line: 1561
// Start offset: 0x0007E580
// Variables:
// int offset; // $a2
// int length; // $a3
/* end block 1 */
// End offset: 0x0007E5DC
// End Line: 1571
/* begin block 2 */
// Start line: 7969
/* end block 2 */
// End Line: 7970
/* begin block 3 */
// Start line: 7970
/* end block 3 */
// End Line: 7971
/* begin block 4 */
// Start line: 7974
/* end block 4 */
// End Line: 7975
2020-04-10 01:29:12 +02:00
// [D]
2020-03-27 21:47:29 +01:00
void LoadInAreaModels ( int area )
{
2020-05-11 20:34:38 +02:00
int length = AreaData [ area ] . model_size ;
newmodels = ( ushort * ) ( model_spool_buffer + ( length - 1 ) * 0x800 ) ;
2020-04-10 01:29:12 +02:00
2020-05-11 20:34:38 +02:00
RequestSpool ( 3 , 0 , AreaData [ area ] . model_offset , length , model_spool_buffer , SetupModels ) ;
2020-03-27 21:47:29 +01:00
}
// decompiled code
// original method signature:
// void /*$ra*/ CheckLoadAreaData(int cellx /*$t9*/, int cellz /*$a1*/)
// line 1574, offset 0x0007c08c
/* begin block 1 */
// Start line: 1575
// Start offset: 0x0007C08C
// Variables:
// int i; // $a2
// int nAreas; // $t0
// struct Spool *spoolptr; // $t1
// int load; // $a3
// int force_load_boundary; // $a0
/* end block 1 */
// End offset: 0x0007C27C
// End Line: 1666
/* begin block 2 */
// Start line: 3485
/* end block 2 */
// End Line: 3486
/* begin block 3 */
// Start line: 3517
/* end block 3 */
// End Line: 3518
/* begin block 4 */
// Start line: 3522
/* end block 4 */
// End Line: 3523
2020-04-10 01:29:12 +02:00
// [D]
2020-04-04 06:49:28 +02:00
void CheckLoadAreaData ( int cellx , int cellz )
2020-03-27 21:47:29 +01:00
{
2020-05-11 20:34:38 +02:00
unsigned char nAreas ;
2020-04-10 01:29:12 +02:00
unsigned char bVar2 ;
2020-05-11 20:34:38 +02:00
bool force_load_boundary ;
2020-04-10 01:29:12 +02:00
unsigned char * pbVar4 ;
2020-04-04 06:49:28 +02:00
uint uVar5 ;
int iVar6 ;
uint area ;
2020-04-10 01:29:12 +02:00
Spool * spoolptr ;
2020-04-04 06:49:28 +02:00
2020-05-11 20:34:38 +02:00
force_load_boundary = false ;
2020-04-10 01:29:12 +02:00
if ( spoolinfo_offsets [ current_region ] ! = 0xffff )
{
spoolptr = ( Spool * ) ( RegionSpoolInfo + spoolinfo_offsets [ current_region ] ) ;
2020-05-12 06:59:42 +02:00
if ( old_region = = - 1 & & spoolptr - > super_region ! = 0xFF )
2020-04-10 01:29:12 +02:00
{
2020-05-12 06:13:05 +02:00
area = spoolptr - > super_region ;
2020-04-04 06:49:28 +02:00
}
2020-04-10 01:29:12 +02:00
else
{
2020-05-11 20:34:38 +02:00
nAreas = spoolptr - > num_connected_areas ;
2020-05-12 06:13:05 +02:00
2020-04-10 01:29:12 +02:00
if ( old_region = = - 1 )
{
2020-04-04 06:49:28 +02:00
LoadedArea = old_region ;
}
2020-04-10 01:29:12 +02:00
else
{
2020-05-12 06:59:42 +02:00
if ( spoolptr - > super_region = = 0xFF )
2020-04-04 06:49:28 +02:00
return ;
2020-04-10 01:29:12 +02:00
2020-05-11 20:34:38 +02:00
if ( nAreas = = 0 )
2020-04-04 06:49:28 +02:00
return ;
}
2020-04-10 01:29:12 +02:00
2020-04-04 06:49:28 +02:00
iVar6 = 0xd ;
2020-04-10 01:29:12 +02:00
if ( lead_car = = 0 )
2020-04-04 06:49:28 +02:00
iVar6 = 0xf ;
2020-04-10 01:29:12 +02:00
2020-04-04 06:49:28 +02:00
area = 0 ;
2020-05-11 20:34:38 +02:00
if ( nAreas ! = 0 )
2020-04-10 01:29:12 +02:00
{
pbVar4 = spoolptr - > connected_areas ;
2020-05-12 06:13:05 +02:00
2020-04-04 06:49:28 +02:00
do {
bVar2 = * pbVar4 > > 6 ;
uVar5 = ( uint ) bVar2 ;
2020-04-10 01:29:12 +02:00
if ( LoadedArea ! = ( ( uint ) * pbVar4 & 0x3f ) )
{
2020-04-04 06:49:28 +02:00
new_area_location = uVar5 ;
2020-04-10 01:29:12 +02:00
// [A] bounds?
2020-05-11 20:34:38 +02:00
if ( bVar2 = = 0 & & ( 32 - iVar6 < cellz ) )
2020-04-10 01:29:12 +02:00
{
2020-05-11 20:34:38 +02:00
force_load_boundary = true ;
2020-04-10 01:29:12 +02:00
}
2020-05-11 20:34:38 +02:00
else if ( bVar2 = = 1 & & ( 32 - iVar6 < cellx ) )
2020-04-10 01:29:12 +02:00
{
2020-05-11 20:34:38 +02:00
force_load_boundary = true ;
2020-04-04 06:49:28 +02:00
}
2020-04-10 01:29:12 +02:00
else if ( bVar2 = = 2 & & ( cellz < iVar6 ) )
{
2020-05-11 20:34:38 +02:00
force_load_boundary = true ;
2020-04-10 01:29:12 +02:00
}
else if ( bVar2 = = 3 & & ( cellx < iVar6 ) )
{
2020-05-11 20:34:38 +02:00
force_load_boundary = true ;
2020-04-04 06:49:28 +02:00
}
}
2020-04-10 01:29:12 +02:00
2020-05-11 20:34:38 +02:00
if ( force_load_boundary )
2020-04-10 01:29:12 +02:00
break ;
2020-05-12 06:13:05 +02:00
area + + ;
2020-04-10 01:29:12 +02:00
pbVar4 = spoolptr - > connected_areas + area ;
2020-05-11 20:34:38 +02:00
} while ( area < nAreas ) ;
2020-04-04 06:49:28 +02:00
}
2020-04-10 01:29:12 +02:00
2020-05-11 20:34:38 +02:00
if ( area = = nAreas )
2020-04-10 01:29:12 +02:00
{
2020-05-12 06:59:42 +02:00
if ( LoadedArea ! = 0xFF )
2020-04-04 06:49:28 +02:00
return ;
2020-04-10 01:29:12 +02:00
2020-04-04 06:49:28 +02:00
area = initarea ;
2020-04-10 01:29:12 +02:00
2020-05-12 06:59:42 +02:00
if ( initarea = = 0xFF )
2020-04-04 06:49:28 +02:00
return ;
}
2020-04-10 01:29:12 +02:00
else
{
area = ( uint ) spoolptr - > connected_areas [ area ] & 0x3f ;
2020-04-04 06:49:28 +02:00
}
}
2020-04-10 01:29:12 +02:00
2020-04-04 06:49:28 +02:00
LoadingArea = 1 ;
LoadedArea = area ;
2020-04-19 14:44:26 +02:00
2020-04-04 06:49:28 +02:00
LoadInAreaTSets ( area ) ;
LoadInAreaModels ( LoadedArea ) ;
}
2020-03-27 21:47:29 +01:00
}
// decompiled code
// original method signature:
// void /*$ra*/ ClearRegion(int target_region /*$a0*/)
// line 1670, offset 0x0007e3e4
/* begin block 1 */
// Start line: 1671
// Start offset: 0x0007E3E4
// Variables:
// int loop; // $a1
// unsigned short *cell_ptrs_s; // $v1
// unsigned long *pvsptr; // $v0
/* end block 1 */
// End offset: 0x0007E494
// End Line: 1711
/* begin block 2 */
// Start line: 7049
/* end block 2 */
// End Line: 7050
/* begin block 3 */
// Start line: 7594
/* end block 3 */
// End Line: 7595
/* begin block 4 */
// Start line: 7604
/* end block 4 */
// End Line: 7605
2020-04-09 19:15:54 +02:00
// [D]
2020-03-27 21:47:29 +01:00
void ClearRegion ( int target_region )
{
2020-04-28 08:56:10 +02:00
long * pvsptr ;
2020-04-09 19:15:54 +02:00
ushort * cell_ptrs_s ;
2020-04-27 09:11:19 +02:00
int loop ;
2020-04-09 19:15:54 +02:00
2020-04-27 09:11:19 +02:00
loop = 1024 ;
cell_ptrs_s = cell_ptrs + target_region * 1024 ;
2020-04-28 08:56:10 +02:00
pvsptr = ( long * ) PVS_Buffers [ target_region ] ;
2020-04-09 19:15:54 +02:00
2020-04-04 06:49:28 +02:00
do {
2020-04-27 09:11:19 +02:00
* cell_ptrs_s + + = 0xffff ;
2020-04-28 08:56:10 +02:00
* pvsptr + + = 0 ;
} while ( - - loop ! = 0 ) ;
2020-04-09 19:15:54 +02:00
2020-04-27 09:11:19 +02:00
ClearMem ( PVS_Buffers [ target_region ] - 4 , pvsSize [ target_region ] ) ;
2020-04-28 08:56:10 +02:00
RoadMapDataRegions [ target_region ] = ( short * ) PVS_Buffers [ 0 ] ;
2020-03-27 21:47:29 +01:00
}
// decompiled code
// original method signature:
// int /*$ra*/ LoadRegionData(int region /*$s4*/, int target_region /*$s5*/)
// line 1713, offset 0x0007c28c
/* begin block 1 */
// Start line: 1714
// Start offset: 0x0007C28C
// Variables:
// int offset; // $s0
// char *target_unpacked_data; // $t1
// struct Spool *spoolptr; // $s1
// char *roadmap_buffer; // $s6
// char *cell_buffer; // $s3
/* end block 1 */
// End offset: 0x0007C464
// End Line: 1776
/* begin block 2 */
// Start line: 3836
/* end block 2 */
// End Line: 3837
2020-04-09 19:45:55 +02:00
// [D]
2020-04-04 06:49:28 +02:00
int LoadRegionData ( int region , int target_region )
2020-03-27 21:47:29 +01:00
{
2020-04-09 19:45:55 +02:00
char * cell_buffer ;
2020-04-26 14:19:33 +02:00
ushort * spofs ;
2020-04-04 06:49:28 +02:00
int offset ;
2020-04-09 19:45:55 +02:00
Spool * spoolptr ;
2020-04-09 20:16:26 +02:00
char * roadmap_buffer ; // D1 leftover?
roadmap_buffer = NULL ; // [A]
2020-04-04 06:49:28 +02:00
2020-04-26 14:19:33 +02:00
spofs = ( spoolinfo_offsets + region ) ;
2020-04-09 19:45:55 +02:00
2020-04-27 01:27:02 +02:00
if ( * spofs = = 0xFFFF ) // has region offset?
return 0 ;
2020-04-26 14:19:33 +02:00
2020-04-27 01:27:02 +02:00
loading_region [ target_region ] = region ;
cell_buffer = packed_cell_pointers ;
spoolptr = ( Spool * ) ( RegionSpoolInfo + * spofs ) ;
offset = spoolptr - > offset ;
2020-04-26 14:19:33 +02:00
//#define HAVANA_AUGUST_DEMO // uncomment to load August Demo HAVANA.LEV
# ifdef HAVANA_AUGUST_DEMO
2020-04-27 01:27:02 +02:00
RequestSpool ( 0 , 0 , offset , spoolptr - > roadm_size , PVS_Buffers [ target_region ] , NULL ) ;
offset + = spoolptr - > roadm_size ;
2020-04-26 14:19:33 +02:00
2020-04-27 01:27:02 +02:00
RequestSpool ( 0 , 0 , offset , spoolptr - > cell_data_size [ 1 ] , packed_cell_pointers , NULL ) ;
offset + = spoolptr - > cell_data_size [ 1 ] ;
2020-04-26 14:19:33 +02:00
2020-04-27 01:27:02 +02:00
RequestSpool ( 0 , 0 , offset , spoolptr - > cell_data_size [ 0 ] , ( char * ) ( cells + cell_slots_add [ target_region ] ) , NULL ) ;
offset + = spoolptr - > cell_data_size [ 0 ] ;
2020-04-09 19:45:55 +02:00
2020-04-27 01:27:02 +02:00
RequestSpool ( 0 , 0 , offset , spoolptr - > cell_data_size [ 2 ] , ( char * ) ( cell_objects + num_straddlers + cell_objects_add [ target_region ] ) , GotRegion ) ;
offset + = spoolptr - > cell_data_size [ 2 ] ;
2020-04-09 19:45:55 +02:00
2020-04-27 01:27:02 +02:00
//offset -= spoolptr->roadm_size; // [A] if PVS_Buffers loading temporarily disabled this should be uncommented
2020-04-09 19:45:55 +02:00
2020-04-27 01:27:02 +02:00
spool_regioninfo [ spool_regioncounter ] . nsectors = offset - spoolptr - > offset ;
2020-04-26 14:19:33 +02:00
# else
2020-04-27 12:52:30 +02:00
extern bool gDriver1Level ;
if ( gDriver1Level )
{
2020-04-09 19:45:55 +02:00
2020-04-27 12:52:30 +02:00
}
else
{
RequestSpool ( 0 , 0 , offset , spoolptr - > cell_data_size [ 1 ] , packed_cell_pointers , NULL ) ;
offset + = spoolptr - > cell_data_size [ 1 ] ;
2020-04-09 19:45:55 +02:00
2020-04-27 12:52:30 +02:00
RequestSpool ( 0 , 0 , offset , spoolptr - > cell_data_size [ 0 ] , ( char * ) ( cells + cell_slots_add [ target_region ] ) , NULL ) ;
offset + = spoolptr - > cell_data_size [ 0 ] ;
2020-04-09 19:45:55 +02:00
2020-04-27 12:52:30 +02:00
RequestSpool ( 0 , 0 , offset , spoolptr - > cell_data_size [ 2 ] , ( char * ) ( cell_objects + num_straddlers + cell_objects_add [ target_region ] ) , NULL ) ;
offset + = spoolptr - > cell_data_size [ 2 ] ;
RequestSpool ( 0 , 0 , offset , spoolptr - > roadm_size , PVS_Buffers [ target_region ] - 4 , GotRegion ) ;
offset + = spoolptr - > roadm_size ;
}
2020-04-09 19:45:55 +02:00
2020-04-27 01:27:02 +02:00
spool_regioninfo [ spool_regioncounter ] . nsectors = offset - spoolptr - > offset ;
2020-04-26 14:19:33 +02:00
# endif
2020-04-09 19:45:55 +02:00
2020-04-27 01:27:02 +02:00
spool_regioninfo [ spool_regioncounter ] . region_to_unpack = region ;
spool_regioninfo [ spool_regioncounter ] . target_barrel_region = target_region ;
spool_regioninfo [ spool_regioncounter ] . cell_addr = cell_buffer ;
spool_regioninfo [ spool_regioncounter ] . roadm_addr = roadmap_buffer ;
2020-04-09 19:45:55 +02:00
2020-04-27 01:27:02 +02:00
return 1 ;
2020-03-27 21:47:29 +01:00
}
// decompiled code
// original method signature:
// void /*$ra*/ UnpackRegion(int region_to_unpack /*$s1*/, int target_barrel_region /*$s0*/)
// line 1779, offset 0x0007e5dc
/* begin block 1 */
// Start line: 1780
// Start offset: 0x0007E5DC
/* end block 1 */
// End offset: 0x0007E658
// End Line: 1812
/* begin block 2 */
// Start line: 8208
/* end block 2 */
// End Line: 8209
/* begin block 3 */
// Start line: 8417
/* end block 3 */
// End Line: 8418
2020-04-09 19:45:25 +02:00
int RoadMapRegions [ 4 ] ;
2020-04-09 19:45:55 +02:00
// [D]
2020-04-04 06:49:28 +02:00
void UnpackRegion ( int region_to_unpack , int target_barrel_region )
2020-03-27 21:47:29 +01:00
{
2020-04-09 19:45:55 +02:00
if ( loading_region [ target_barrel_region ] = = - 1 )
{
2020-04-27 01:27:02 +02:00
if ( LoadRegionData ( region_to_unpack , target_barrel_region ) )
2020-05-11 20:34:38 +02:00
spool_regioncounter + + ;
2020-04-09 19:45:25 +02:00
2020-04-04 06:49:28 +02:00
regions_unpacked [ target_barrel_region ] = region_to_unpack ;
RoadMapRegions [ target_barrel_region ] = region_to_unpack ;
}
2020-03-27 21:47:29 +01:00
}
// decompiled code
// original method signature:
// void /*$ra*/ ProcessSpoolInfoLump(char *lump_ptr /*$a2*/, int lump_size /*$a1*/)
// line 1815, offset 0x0007c464
/* begin block 1 */
// Start line: 1816
// Start offset: 0x0007C464
// Variables:
// int i; // $t2
// int size; // $v1
// int slots_count; // $t0
// int objects_count; // $t1
// int num_of_regions; // $v0
// char *alloclist; // $a3
/* end block 1 */
// End offset: 0x0007C5C0
// End Line: 1918
/* begin block 2 */
// Start line: 4141
/* end block 2 */
// End Line: 4142
/* begin block 3 */
// Start line: 4181
/* end block 3 */
// End Line: 4182
2020-04-05 23:04:50 +02:00
// [D]
2020-04-04 06:49:28 +02:00
void ProcessSpoolInfoLump ( char * lump_ptr , int lump_size )
2020-03-27 21:47:29 +01:00
{
2020-04-04 06:49:28 +02:00
int * piVar1 ;
2020-04-27 09:11:19 +02:00
int i ;
2020-04-04 06:49:28 +02:00
int * piVar3 ;
int * piVar4 ;
int * piVar5 ;
2020-04-27 09:11:19 +02:00
int size ;
2020-04-04 06:49:28 +02:00
piVar3 = pvsSize ;
pvsSize [ 0 ] = 0 ;
pvsSize [ 1 ] = 0 ;
pvsSize [ 2 ] = 0 ;
pvsSize [ 3 ] = 0 ;
2020-04-05 23:04:50 +02:00
2020-04-27 09:11:19 +02:00
size = * ( int * ) lump_ptr < < 0xb ;
2020-04-05 23:04:50 +02:00
2020-04-04 06:49:28 +02:00
model_spool_buffer = mallocptr ;
2020-04-05 23:04:50 +02:00
2020-04-27 09:11:19 +02:00
if ( size < 0x10000 ) {
size = 0x10000 ;
2020-04-04 06:49:28 +02:00
}
2020-04-05 23:04:50 +02:00
2020-04-27 09:11:19 +02:00
mallocptr + = size ;
2020-04-05 23:04:50 +02:00
2020-04-04 06:49:28 +02:00
cell_slots_add [ 4 ] = 0 ;
cell_objects_add [ 4 ] = 0 ;
2020-04-05 23:04:50 +02:00
2020-04-04 06:49:28 +02:00
Music_And_AmbientOffsets = ( SXYPAIR * ) ( lump_ptr + 8 ) ;
piVar4 = ( int * ) ( ( int ) ( lump_ptr + 4 ) + * ( int * ) ( lump_ptr + 4 ) + 4 ) ;
2020-04-05 23:04:50 +02:00
2020-04-04 06:49:28 +02:00
NumAreas = * piVar4 ;
AreaData = ( AreaDataStr * ) ( piVar4 + 1 ) ;
2020-04-05 23:04:50 +02:00
AreaTPages = ( unsigned char * ) ( piVar4 + NumAreas * 4 + 1 ) ;
2020-04-04 06:49:28 +02:00
piVar5 = ( int * ) AreaTPages + NumAreas * 4 ;
piVar4 = piVar5 ;
2020-04-05 23:04:50 +02:00
2020-04-27 09:11:19 +02:00
i = 0 ;
2020-04-04 06:49:28 +02:00
do {
2020-04-27 09:11:19 +02:00
cell_objects_add [ i ] = cell_objects_add [ 4 ] ;
cell_slots_add [ i ] = cell_slots_add [ 4 ] ;
PVS_Buffers [ i ] = mallocptr + 4 ;
cell_slots_add [ 4 ] + = * piVar4 ;
cell_objects_add [ 4 ] + = piVar4 [ 4 ] ;
2020-04-04 06:49:28 +02:00
* piVar3 = piVar4 [ 8 ] + 0x7ffU & 0xfffff800 ;
piVar3 = ( int * ) ( ( uint * ) piVar3 + 1 ) ;
piVar1 = piVar4 + 8 ;
2020-04-27 09:11:19 +02:00
piVar4 + + ;
mallocptr + = ( * piVar1 + 0x7ffU & 0xfffff800 ) ;
i + + ;
} while ( i < 4 ) ;
2020-04-05 23:04:50 +02:00
2020-04-04 06:49:28 +02:00
RegionSpoolInfo = ( char * ) ( ( int ) ( piVar5 + 0xc ) + piVar5 [ 0xc ] * 2 + 8 ) ;
spoolinfo_offsets = ( ushort * ) ( piVar5 + 0xd ) ;
2020-03-27 21:47:29 +01:00
}
// decompiled code
// original method signature:
// void /*$ra*/ WaitCloseLid()
// line 1928, offset 0x0007e66c
/* begin block 1 */
// Start line: 1930
// Start offset: 0x0007E66C
// Variables:
// void (*old)(); // $s1
/* end block 1 */
// End offset: 0x0007E6D8
// End Line: 1942
/* begin block 2 */
// Start line: 8731
/* end block 2 */
// End Line: 8732
/* begin block 3 */
// Start line: 8732
/* end block 3 */
// End Line: 8733
/* begin block 4 */
// Start line: 8733
/* end block 4 */
// End Line: 8734
/* WARNING: Unknown calling convention yet parameter storage is locked */
2020-04-10 01:29:12 +02:00
// [D]
2020-03-27 21:47:29 +01:00
void WaitCloseLid ( void )
{
2020-04-10 01:29:12 +02:00
# ifdef PSX
void ( * old ) ( ) ;
2020-04-27 09:11:19 +02:00
int loop ;
2020-04-04 06:49:28 +02:00
2020-04-10 01:29:12 +02:00
old = ( void ( * ) ( ) ) CdReadyCallback ( 0 ) ;
2020-04-04 06:49:28 +02:00
stopgame ( ) ;
2020-04-10 01:29:12 +02:00
2020-04-27 09:11:19 +02:00
while ( loop = CdDiskReady ( 1 ) , loop ! = 2 )
2020-04-10 01:29:12 +02:00
{
2020-04-04 06:49:28 +02:00
DrawCDicon ( ) ;
VSync ( 0 ) ;
}
2020-04-10 01:29:12 +02:00
2020-04-04 06:49:28 +02:00
startgame ( ) ;
2020-04-10 01:29:12 +02:00
CdReadyCallback ( ( CdlCB ) old ) ;
# endif // PSX
2020-03-27 21:47:29 +01:00
}
// decompiled code
// original method signature:
// void /*$ra*/ FoundError(char *name /*$a0*/, unsigned char intr /*$a1*/, unsigned char *result /*$a2*/)
// line 1945, offset 0x0007e6d8
/* begin block 1 */
// Start line: 1947
// Start offset: 0x0007E6D8
// Variables:
// struct CdlLOC p; // stack offset -16
/* end block 1 */
// End offset: 0x0007E724
// End Line: 1963
/* begin block 2 */
// Start line: 8761
/* end block 2 */
// End Line: 8762
/* begin block 3 */
// Start line: 8765
/* end block 3 */
// End Line: 8766
/* begin block 4 */
// Start line: 8766
/* end block 4 */
// End Line: 8767
/* begin block 5 */
// Start line: 8768
/* end block 5 */
// End Line: 8769
2020-04-10 01:29:12 +02:00
// [D]
2020-04-04 06:49:28 +02:00
void FoundError ( char * name , unsigned char intr , unsigned char * result )
2020-03-27 21:47:29 +01:00
{
2020-04-10 01:29:12 +02:00
CdlLOC p ;
2020-04-04 06:49:28 +02:00
2020-04-10 01:29:12 +02:00
if ( ( * result & 0x10 ) ! = 0 )
{
2020-04-04 06:49:28 +02:00
WaitCloseLid ( ) ;
}
2020-04-10 01:29:12 +02:00
# ifdef _DEBUG
printf ( " FoundError: %s, intr: %d \n " , name , intr ) ;
# endif // _DEBUG
2020-04-04 06:49:28 +02:00
spoolerror = 0x3c ;
2020-04-11 17:04:02 +02:00
# ifdef PSX
2020-04-10 01:29:12 +02:00
CdIntToPos ( current_sector , & p ) ;
2020-04-11 13:21:25 +02:00
CdControlF ( CdlReadS , ( u_char * ) & p ) ;
2020-04-11 17:04:02 +02:00
# else
UNIMPLEMENTED ( ) ;
# endif
2020-03-27 21:47:29 +01:00
}
// decompiled code
// original method signature:
// void /*$ra*/ GotRegion()
// line 1970, offset 0x0007d9cc
/* begin block 1 */
// Start line: 1972
// Start offset: 0x0007D9CC
// Variables:
// int cbr; // $a1
/* end block 1 */
// End offset: 0x0007DA60
// End Line: 1990
/* begin block 2 */
// Start line: 6109
/* end block 2 */
// End Line: 6110
/* begin block 3 */
// Start line: 3940
/* end block 3 */
// End Line: 3941
/* begin block 4 */
// Start line: 6110
/* end block 4 */
// End Line: 6111
/* begin block 5 */
// Start line: 6113
/* end block 5 */
// End Line: 6114
/* WARNING: Unknown calling convention yet parameter storage is locked */
2020-04-09 20:22:38 +02:00
// [D]
2020-03-27 21:47:29 +01:00
void GotRegion ( void )
{
2020-04-04 06:49:28 +02:00
uint target_barrel_reg ;
Unpack_CellPtrs ( ) ;
2020-04-09 20:22:38 +02:00
2020-04-04 06:49:28 +02:00
target_barrel_reg = ( uint ) spool_regioninfo [ spool_regionpos ] . target_barrel_region ;
2020-04-09 20:22:38 +02:00
spool_regionpos + + ;
2020-04-19 14:32:14 +02:00
char * pvs = PVS_Buffers [ target_barrel_reg ] ;
2020-04-04 06:49:28 +02:00
loading_region [ target_barrel_reg ] = - 1 ;
2020-04-09 20:22:38 +02:00
2020-04-26 14:19:33 +02:00
2020-04-19 14:32:14 +02:00
int cbr = * ( int * ) ( pvs - 4 ) ;
RoadMapDataRegions [ target_barrel_reg ] = ( short * ) ( pvs + cbr ) ;
2020-04-09 20:22:38 +02:00
if ( spool_regionpos = = spool_regioncounter )
{
2020-04-04 06:49:28 +02:00
spool_regioncounter = 0 ;
spool_regionpos = 0 ;
}
2020-03-27 21:47:29 +01:00
}
// decompiled code
// original method signature:
// void /*$ra*/ data_cb_textures()
// line 1993, offset 0x0007df64
/* begin block 1 */
// Start line: 1995
// Start offset: 0x0007DF64
/* begin block 1.1 */
// Start line: 1997
// Start offset: 0x0007DF78
/* end block 1.1 */
// End offset: 0x0007E068
// End Line: 2033
/* end block 1 */
// End offset: 0x0007E078
// End Line: 2034
/* begin block 2 */
// Start line: 6680
/* end block 2 */
// End Line: 6681
/* begin block 3 */
// Start line: 3986
/* end block 3 */
// End Line: 3987
/* begin block 4 */
// Start line: 6681
/* end block 4 */
// End Line: 6682
/* WARNING: Unknown calling convention yet parameter storage is locked */
2020-04-10 01:29:12 +02:00
// [D]
2020-03-27 21:47:29 +01:00
void data_cb_textures ( void )
{
2020-05-12 06:59:42 +02:00
printf ( " data_cb_textures remaining: %d \n " , sectors_to_read ) ;
2020-04-11 20:15:11 +02:00
2020-04-10 01:29:12 +02:00
if ( chunk_complete ! = 0 )
{
2020-04-04 06:49:28 +02:00
chunk_complete = 0 ;
nTPchunks = nTPchunks_writing ;
2020-04-10 01:29:12 +02:00
2020-04-04 06:49:28 +02:00
SendTPage ( ) ;
2020-04-10 01:29:12 +02:00
if ( nTPchunks ! = 0 )
2020-05-12 06:59:42 +02:00
loadbank_write + + ;
2020-04-10 01:29:12 +02:00
2020-05-12 06:59:42 +02:00
nTPchunks_writing + + ;
2020-04-10 01:29:12 +02:00
if ( nTPchunks_writing = = 5 )
{
2020-04-04 06:49:28 +02:00
nTPchunks_writing = 0 ;
2020-05-12 06:59:42 +02:00
spoolpos_writing + + ;
2020-04-10 01:29:12 +02:00
if ( ntpages = = 0 )
{
if ( switch_spooltype = = 0 )
{
2020-04-11 17:04:02 +02:00
# ifdef PSX
2020-04-04 06:49:28 +02:00
CdDataCallback ( 0 ) ;
2020-04-11 17:04:02 +02:00
# else
2020-04-19 12:53:18 +02:00
levelSpoolerPCDataCallback ( NULL ) ;
2020-04-11 17:04:02 +02:00
# endif // PSX
2020-04-10 01:29:12 +02:00
if ( spoolpos_writing = = spoolcounter )
{
2020-04-19 14:32:14 +02:00
printf ( " All SPOOL requests (%d) completed successfully on TEXTURES \n " , spoolcounter ) ; // [A]
2020-04-04 06:49:28 +02:00
spoolcounter = 0 ;
spoolpos_writing = 0 ;
spoolpos_reading = 0 ;
spoolactive = 0 ;
}
2020-04-10 01:29:12 +02:00
else
{
2020-04-04 06:49:28 +02:00
UpdateSpool ( ) ;
}
}
2020-04-10 01:29:12 +02:00
else
{
2020-04-04 06:49:28 +02:00
changemode ( spooldata + spoolpos_writing ) ;
}
}
}
}
2020-03-27 21:47:29 +01:00
}
// decompiled code
// original method signature:
// void /*$ra*/ ready_cb_textures(unsigned char intr /*$s0*/, unsigned char *result /*$a2*/)
// line 2036, offset 0x0007e078
/* begin block 1 */
// Start line: 2037
// Start offset: 0x0007E078
/* begin block 1.1 */
// Start line: 2050
// Start offset: 0x0007E0D8
// Variables:
// struct SPOOLQ *current; // $a2
/* end block 1.1 */
// End offset: 0x0007E188
// End Line: 2080
/* end block 1 */
// End offset: 0x0007E198
// End Line: 2086
/* begin block 2 */
// Start line: 6770
/* end block 2 */
// End Line: 6771
/* begin block 3 */
// Start line: 6773
/* end block 3 */
// End Line: 6774
2020-04-10 01:29:12 +02:00
// [D]
2020-04-04 06:49:28 +02:00
void ready_cb_textures ( unsigned char intr , unsigned char * result )
2020-03-27 21:47:29 +01:00
{
2020-05-11 20:34:38 +02:00
if ( intr = = 1 )
2020-04-10 01:29:12 +02:00
{
2020-04-11 17:04:02 +02:00
# ifdef PSX
2020-04-04 06:49:28 +02:00
CdGetSector ( target_address , 0x200 ) ;
2020-04-11 17:04:02 +02:00
# else
getLevSectorPC ( target_address , 0x200 ) ;
# endif // PSX
2020-04-10 01:29:12 +02:00
2020-04-04 06:49:28 +02:00
target_address = target_address + 0x800 ;
2020-04-20 06:55:53 +02:00
sectors_this_chunk - - ;
current_sector + + ;
sectors_to_read - - ;
2020-04-10 01:29:12 +02:00
if ( sectors_this_chunk = = 0 )
{
if ( nTPchunks_reading ! = 0 )
2020-05-11 20:34:38 +02:00
loadbank_read + + ;
2020-04-10 01:29:12 +02:00
2020-05-11 20:34:38 +02:00
nTPchunks_reading + + ;
chunk_complete = intr ;
2020-04-10 01:29:12 +02:00
if ( sectors_to_read = = 0 )
{
2020-04-04 06:49:28 +02:00
ntpages = ntpages + - 1 ;
2020-04-10 01:29:12 +02:00
if ( ntpages = = 0 )
{
2020-05-11 20:34:38 +02:00
spoolpos_reading + + ;
2020-04-04 06:49:28 +02:00
test_changemode ( ) ;
}
2020-04-10 01:29:12 +02:00
else
{
2020-04-04 06:49:28 +02:00
nTPchunks_reading = 0 ;
2020-04-11 17:04:02 +02:00
sectors_to_read = 17 ;
2020-05-11 20:34:38 +02:00
2020-04-04 06:49:28 +02:00
target_address = spooldata [ spoolpos_reading ] . addr + 0x4000 ;
2020-05-11 20:34:38 +02:00
spoolpos_reading + + ;
sectors_this_chunk = intr ;
2020-04-04 06:49:28 +02:00
}
}
2020-04-10 01:29:12 +02:00
else
{
2020-04-04 06:49:28 +02:00
sectors_this_chunk = 4 ;
target_address = spooldata [ spoolpos_reading ] . addr + ( loadbank_read & 1U ) * 0x2000 ;
}
}
}
2020-04-10 01:29:12 +02:00
else
FoundError ( " ready_cb_textures " , intr , result ) ;
2020-03-27 21:47:29 +01:00
}
// decompiled code
// original method signature:
// void /*$ra*/ ready_cb_regions(unsigned char intr /*$s0*/, unsigned char *result /*$a2*/)
// line 2090, offset 0x0007de90
/* begin block 1 */
// Start line: 2091
// Start offset: 0x0007DE90
/* begin block 1.1 */
// Start line: 2110
// Start offset: 0x0007DF08
// Variables:
// struct SPOOLQ *current; // $v1
/* end block 1.1 */
// End offset: 0x0007DF08
// End Line: 2110
/* end block 1 */
// End offset: 0x0007DF64
// End Line: 2129
/* begin block 2 */
// Start line: 6728
/* end block 2 */
// End Line: 6729
/* begin block 3 */
// Start line: 4180
/* end block 3 */
// End Line: 4181
2020-04-04 06:49:28 +02:00
void ready_cb_regions ( unsigned char intr , unsigned char * result )
2020-03-27 21:47:29 +01:00
{
2020-05-11 20:34:38 +02:00
if ( intr = = 1 )
2020-04-10 01:29:12 +02:00
{
2020-04-11 17:04:02 +02:00
# ifdef PSX
2020-04-04 06:49:28 +02:00
CdGetSector ( target_address , 0x200 ) ;
2020-04-11 17:04:02 +02:00
# else
getLevSectorPC ( target_address , 0x200 ) ;
# endif // PSX
2020-04-04 06:49:28 +02:00
target_address = target_address + 0x800 ;
2020-04-20 06:55:53 +02:00
sectors_this_chunk - - ;
current_sector + + ;
sectors_to_read - - ;
2020-04-10 01:29:12 +02:00
if ( sectors_this_chunk = = 0 )
{
2020-05-11 20:34:38 +02:00
spoolpos_reading + + ;
chunk_complete = intr ;
2020-04-10 01:29:12 +02:00
if ( sectors_to_read = = 0 )
{
2020-05-11 20:34:38 +02:00
endchunk = intr ;
2020-04-04 06:49:28 +02:00
test_changemode ( ) ;
}
2020-04-10 01:29:12 +02:00
else
{
2020-04-04 06:49:28 +02:00
target_address = spooldata [ spoolpos_reading ] . addr ;
2020-04-10 01:29:12 +02:00
sectors_this_chunk = ( spooldata [ spoolpos_reading ] . nsectors ) ;
2020-04-04 06:49:28 +02:00
}
}
}
2020-05-11 20:34:38 +02:00
else
2020-04-10 01:29:12 +02:00
FoundError ( " ready_cb_regions " , intr , result ) ;
2020-03-27 21:47:29 +01:00
}
// decompiled code
// original method signature:
// void /*$ra*/ data_cb_regions()
// line 2132, offset 0x0007dda8
/* begin block 1 */
// Start line: 2134
// Start offset: 0x0007DDA8
/* begin block 1.1 */
// Start line: 2136
// Start offset: 0x0007DDBC
// Variables:
// struct SPOOLQ *current; // $v0
/* end block 1.1 */
// End offset: 0x0007DE80
// End Line: 2167
/* end block 1 */
// End offset: 0x0007DE90
// End Line: 2168
/* begin block 2 */
// Start line: 4264
/* end block 2 */
// End Line: 4265
/* begin block 3 */
// Start line: 6733
/* end block 3 */
// End Line: 6734
/* WARNING: Unknown calling convention yet parameter storage is locked */
2020-04-10 01:29:12 +02:00
// [D]
2020-03-27 21:47:29 +01:00
void data_cb_regions ( void )
{
2020-04-11 20:33:58 +02:00
//printf("data_cb_regions remaining: %d\n", sectors_to_read);
2020-04-11 20:15:11 +02:00
2020-04-10 01:29:12 +02:00
if ( chunk_complete ! = 0 )
{
2020-04-04 06:49:28 +02:00
chunk_complete = 0 ;
2020-04-10 01:29:12 +02:00
if ( spooldata [ spoolpos_writing ] . func ! = NULL )
( spooldata [ spoolpos_writing ] . func ) ( ) ;
2020-05-11 20:34:38 +02:00
spoolpos_writing + + ;
2020-04-10 01:29:12 +02:00
if ( endchunk ! = 0 )
{
if ( switch_spooltype = = 0 )
{
2020-04-11 17:04:02 +02:00
# ifdef PSX
2020-04-04 06:49:28 +02:00
CdDataCallback ( 0 ) ;
2020-04-11 17:04:02 +02:00
# else
2020-04-19 12:53:18 +02:00
levelSpoolerPCDataCallback ( NULL ) ;
2020-04-11 17:04:02 +02:00
# endif // PSX
2020-04-10 01:29:12 +02:00
if ( spoolpos_writing = = spoolcounter )
{
2020-04-19 14:32:14 +02:00
printf ( " All SPOOL requests (%d) completed successfully on REGIONS \n " , spoolcounter ) ; // [A]
2020-04-04 06:49:28 +02:00
spoolcounter = 0 ;
spoolpos_writing = 0 ;
spoolpos_reading = 0 ;
spoolactive = 0 ;
}
2020-04-10 01:29:12 +02:00
else
{
2020-04-04 06:49:28 +02:00
UpdateSpool ( ) ;
}
}
2020-04-10 01:29:12 +02:00
else
{
2020-04-04 06:49:28 +02:00
changemode ( spooldata + spoolpos_writing ) ;
}
}
}
2020-03-27 21:47:29 +01:00
}
// decompiled code
// original method signature:
// void /*$ra*/ data_cb_soundbank()
// line 2171, offset 0x0007dbcc
/* begin block 1 */
// Start line: 2173
// Start offset: 0x0007DBCC
/* begin block 1.1 */
// Start line: 2175
// Start offset: 0x0007DBE0
/* end block 1.1 */
// End offset: 0x0007DC94
// End Line: 2200
/* end block 1 */
// End offset: 0x0007DCA4
// End Line: 2201
/* begin block 2 */
// Start line: 4342
/* end block 2 */
// End Line: 4343
/* begin block 3 */
// Start line: 6666
/* end block 3 */
// End Line: 6667
/* WARNING: Unknown calling convention yet parameter storage is locked */
void data_cb_soundbank ( void )
{
2020-04-04 06:49:28 +02:00
UNIMPLEMENTED ( ) ;
/*
if ( chunk_complete ! = 0 ) {
chunk_complete = 0 ;
SendSBK ( ) ;
loadbank_write = loadbank_write + 1 ;
if ( endchunk ! = 0 ) {
spoolpos_writing = spoolpos_writing + 1 ;
if ( switch_spooltype = = 0 ) {
2020-04-11 17:04:02 +02:00
# ifdef PSX
2020-04-04 06:49:28 +02:00
CdDataCallback ( 0 ) ;
2020-04-11 17:04:02 +02:00
# else
UNIMPLEMENTED ( ) ;
# endif // PSX
2020-04-04 06:49:28 +02:00
if ( spoolpos_writing = = spoolcounter ) {
spoolcounter = 0 ;
spoolpos_writing = 0 ;
spoolpos_reading = 0 ;
spoolactive = 0 ;
}
else {
UpdateSpool ( ) ;
}
}
else {
changemode ( spooldata + spoolpos_writing ) ;
}
}
}
return ; */
2020-03-27 21:47:29 +01:00
}
// decompiled code
// original method signature:
// void /*$ra*/ ready_cb_soundbank(unsigned char intr /*$s0*/, unsigned char *result /*$a2*/)
// line 2203, offset 0x0007dca4
/* begin block 1 */
// Start line: 2204
// Start offset: 0x0007DCA4
/* begin block 1.1 */
// Start line: 2217
// Start offset: 0x0007DD04
// Variables:
// struct SPOOLQ *current; // $a0
/* end block 1.1 */
// End offset: 0x0007DD70
// End Line: 2237
/* end block 1 */
// End offset: 0x0007DD98
// End Line: 2244
/* begin block 2 */
// Start line: 6729
/* end block 2 */
// End Line: 6730
/* begin block 3 */
// Start line: 6732
/* end block 3 */
// End Line: 6733
2020-04-04 06:49:28 +02:00
void ready_cb_soundbank ( unsigned char intr , unsigned char * result )
2020-03-27 21:47:29 +01:00
{
2020-04-04 06:49:28 +02:00
UNIMPLEMENTED ( ) ;
/*
uint uVar1 ;
uVar1 = ( uint ) intr ;
if ( intr = = ' \x01 ' ) {
2020-04-11 17:04:02 +02:00
# ifdef PSX
2020-04-04 06:49:28 +02:00
CdGetSector ( target_address , 0x200 ) ;
2020-04-11 17:04:02 +02:00
# else
getLevSectorPC ( target_address , 0x200 ) ;
# endif // PSX
2020-04-04 06:49:28 +02:00
target_address = target_address + 0x800 ;
2020-04-20 06:55:53 +02:00
sectors_this_chunk - - ;
current_sector + + ;
sectors_to_read - - ;
2020-04-04 06:49:28 +02:00
if ( sectors_this_chunk = = 0 ) {
loadbank_read = loadbank_read + 1 ;
nTPchunks_reading = nTPchunks_reading + 1 ;
chunk_complete = uVar1 ;
if ( sectors_to_read = = 0 ) {
spoolpos_reading = spoolpos_reading + 1 ;
endchunk = uVar1 ;
test_changemode ( ) ;
}
else {
sectors_this_chunk = 2 ;
if ( sectors_to_read < 2 ) {
sectors_this_chunk = sectors_to_read ;
}
target_address = spooldata [ spoolpos_reading ] . addr + ( loadbank_read & 1U ) * 0x1000 ;
}
}
}
else {
FoundError ( s_ready_cb_soundbank_00011d5c , intr , result ) ;
}
return ; */
2020-03-27 21:47:29 +01:00
}
// decompiled code
// original method signature:
// void /*$ra*/ data_cb_misc()
// line 2246, offset 0x0007da60
/* begin block 1 */
// Start line: 2248
// Start offset: 0x0007DA60
/* begin block 1.1 */
// Start line: 2250
// Start offset: 0x0007DA74
// Variables:
// struct SPOOLQ *current; // $v0
/* end block 1.1 */
// End offset: 0x0007DB28
// End Line: 2275
/* end block 1 */
// End offset: 0x0007DB38
// End Line: 2276
/* begin block 2 */
// Start line: 6421
/* end block 2 */
// End Line: 6422
/* begin block 3 */
// Start line: 6678
/* end block 3 */
// End Line: 6679
/* begin block 4 */
// Start line: 6679
/* end block 4 */
// End Line: 6680
/* WARNING: Unknown calling convention yet parameter storage is locked */
2020-04-10 01:29:12 +02:00
// [D]
2020-03-27 21:47:29 +01:00
void data_cb_misc ( void )
{
2020-04-11 20:33:58 +02:00
//printf("data_cb_misc remaining: %d\n", sectors_to_read);
2020-04-11 20:15:11 +02:00
2020-04-10 01:29:12 +02:00
if ( chunk_complete ! = 0 )
{
2020-04-04 06:49:28 +02:00
chunk_complete = 0 ;
2020-04-10 01:29:12 +02:00
if ( spooldata [ spoolpos_writing ] . func ! = NULL )
{
2020-04-04 06:49:28 +02:00
( * spooldata [ spoolpos_writing ] . func ) ( ) ;
}
2020-04-10 01:29:12 +02:00
2020-05-11 20:34:38 +02:00
spoolpos_writing + + ;
2020-04-10 01:29:12 +02:00
if ( switch_spooltype = = 0 )
{
2020-04-11 17:04:02 +02:00
# ifdef PSX
2020-04-04 06:49:28 +02:00
CdDataCallback ( 0 ) ;
2020-04-11 17:04:02 +02:00
# else
2020-04-19 14:32:14 +02:00
levelSpoolerPCDataCallback ( NULL ) ;
2020-04-11 17:04:02 +02:00
# endif // PSX
2020-04-10 01:29:12 +02:00
if ( spoolpos_writing = = spoolcounter )
{
2020-04-19 14:32:14 +02:00
printf ( " All SPOOL requests (%d) completed successfully on MISC \n " , spoolcounter ) ; // [A]
2020-04-04 06:49:28 +02:00
spoolcounter = 0 ;
spoolpos_writing = 0 ;
spoolpos_reading = 0 ;
spoolactive = 0 ;
}
2020-04-10 01:29:12 +02:00
else
{
2020-04-04 06:49:28 +02:00
UpdateSpool ( ) ;
}
}
2020-04-10 01:29:12 +02:00
else
{
2020-04-04 06:49:28 +02:00
changemode ( spooldata + spoolpos_writing ) ;
}
}
2020-03-27 21:47:29 +01:00
}
// decompiled code
// original method signature:
// void /*$ra*/ ready_cb_misc(unsigned char intr /*$s0*/, unsigned char *result /*$a2*/)
// line 2278, offset 0x0007db38
/* begin block 1 */
// Start line: 6744
/* end block 1 */
// End Line: 6745
/* begin block 2 */
// Start line: 6747
/* end block 2 */
// End Line: 6748
2020-04-10 01:29:12 +02:00
// [D]
2020-04-04 06:49:28 +02:00
void ready_cb_misc ( unsigned char intr , unsigned char * result )
2020-03-27 21:47:29 +01:00
{
2020-05-11 20:34:38 +02:00
if ( intr = = 1 )
2020-04-10 01:29:12 +02:00
{
2020-04-11 17:04:02 +02:00
# ifdef PSX
2020-04-04 06:49:28 +02:00
CdGetSector ( target_address , 0x200 ) ;
2020-04-11 17:04:02 +02:00
# else
getLevSectorPC ( target_address , 0x200 ) ;
# endif // PSX
2020-04-10 01:29:12 +02:00
2020-04-04 06:49:28 +02:00
target_address = target_address + 0x800 ;
2020-04-20 06:55:53 +02:00
sectors_to_read - - ;
current_sector + + ;
2020-04-10 01:29:12 +02:00
if ( sectors_to_read = = 0 )
{
2020-05-11 20:34:38 +02:00
spoolpos_reading + + ;
chunk_complete = intr ;
2020-04-04 06:49:28 +02:00
test_changemode ( ) ;
}
}
2020-04-10 01:29:12 +02:00
else
{
FoundError ( " ready_cb_misc " , intr , result ) ;
2020-04-04 06:49:28 +02:00
}
2020-03-27 21:47:29 +01:00
}
// decompiled code
// original method signature:
// void /*$ra*/ StartSpooling()
// line 2302, offset 0x0007e724
/* begin block 1 */
// Start line: 2304
// Start offset: 0x0007E724
/* end block 1 */
// End offset: 0x0007E7B0
// End Line: 2321
/* begin block 2 */
// Start line: 9140
/* end block 2 */
// End Line: 9141
/* begin block 3 */
// Start line: 9480
/* end block 3 */
// End Line: 9481
/* begin block 4 */
// Start line: 9481
/* end block 4 */
// End Line: 9482
/* WARNING: Unknown calling convention yet parameter storage is locked */
2020-04-09 20:50:21 +02:00
// [D]
2020-03-27 21:47:29 +01:00
void StartSpooling ( void )
{
2020-04-09 20:50:21 +02:00
static unsigned char param [ 8 ] ;
static unsigned char result [ 8 ] ;
2020-04-04 06:49:28 +02:00
int iVar1 ;
2020-04-09 20:50:21 +02:00
if ( ( spoolcounter ! = 0 ) & & ( spoolactive = = 0 ) )
{
iVar1 = XAPrepared ( ) ;
if ( iVar1 = = 0 )
{
# ifdef PSX
param [ 0 ] = - 0x80 ;
CdControlB ( 0xe , param , result ) ;
if ( ( result [ 0 ] & 0x15 ) ! = 0 )
{
WaitCloseLid ( ) ;
}
# endif // PSX
spoolactive = 1 ;
UpdateSpool ( ) ;
if ( FastForward ! = 0 )
{
SpoolSYNC ( ) ;
}
2020-04-04 06:49:28 +02:00
}
}
2020-03-27 21:47:29 +01:00
}
// decompiled code
// original method signature:
// void /*$ra*/ unpack_cellpointers()
// line 2351, offset 0x0007c5c0
/* begin block 1 */
// Start line: 2353
// Start offset: 0x0007C5C0
// Variables:
// int target_barrel_region; // $t0
// char *source_packed_data; // $v0
// int bitpos; // $a3
// int loop; // $a2
// int packtype; // $a0
// unsigned short cell; // $a0
// unsigned short *short_ptr; // $a1
// unsigned short pcode; // $t1
/* end block 1 */
// End offset: 0x0007C74C
// End Line: 2437
/* begin block 2 */
// Start line: 4939
/* end block 2 */
// End Line: 4940
/* begin block 3 */
// Start line: 5373
/* end block 3 */
// End Line: 5374
/* begin block 4 */
// Start line: 5374
/* end block 4 */
// End Line: 5375
/* begin block 5 */
// Start line: 5383
/* end block 5 */
// End Line: 5384
/* WARNING: Unknown calling convention yet parameter storage is locked */
2020-04-20 06:55:53 +02:00
// [D] [A] - altered declaration
void unpack_cellpointers ( int region_to_unpack , int target_barrel_region , char * cell_addr )
2020-03-27 21:47:29 +01:00
{
2020-04-04 06:49:28 +02:00
ushort * puVar1 ;
ushort * puVar2 ;
ushort uVar3 ;
int iVar4 ;
int * piVar5 ;
uint uVar6 ;
uint uVar7 ;
2020-04-20 06:55:53 +02:00
//unpack_cellptr_tbl[0] is region_to_unpack;
//unpack_cellptr_tbl[1] is target_barrel_region;
//unpack_cellptr_tbl[2] is cell_addr;
2020-04-04 06:49:28 +02:00
unpack_cellptr_flag = 0 ;
2020-04-20 06:55:53 +02:00
iVar4 = * ( int * ) ( cell_addr + 4 ) ;
puVar1 = ( ushort * ) ( cell_addr + 8 ) ;
2020-04-09 20:22:38 +02:00
if ( iVar4 = = 0 )
{
2020-04-04 06:49:28 +02:00
iVar4 = 0x3ff ;
2020-04-20 06:55:53 +02:00
puVar1 = cell_ptrs + target_barrel_region * 0x400 + 0x3ff ;
2020-04-04 06:49:28 +02:00
do {
* puVar1 = 0xffff ;
iVar4 = iVar4 + - 1 ;
puVar1 = puVar1 + - 1 ;
} while ( - 1 < iVar4 ) ;
}
else {
2020-04-09 20:22:38 +02:00
if ( iVar4 = = 1 )
{
2020-04-20 06:55:53 +02:00
piVar5 = cell_slots_add + target_barrel_region ;
2020-04-04 06:49:28 +02:00
iVar4 = 0x3ff ;
2020-04-20 06:55:53 +02:00
puVar2 = cell_ptrs + target_barrel_region * 0x400 ;
2020-04-04 06:49:28 +02:00
do {
uVar3 = * puVar1 ;
puVar1 = puVar1 + 1 ;
if ( uVar3 ! = 0xffff ) {
uVar3 = uVar3 + * ( short * ) piVar5 ;
}
* puVar2 = uVar3 ;
iVar4 = iVar4 + - 1 ;
puVar2 = puVar2 + 1 ;
} while ( - 1 < iVar4 ) ;
return ;
}
2020-04-09 20:22:38 +02:00
if ( iVar4 = = 2 )
{
2020-04-04 06:49:28 +02:00
uVar6 = 0x8000 ;
uVar7 = ( uint ) * puVar1 ;
2020-04-20 06:55:53 +02:00
puVar2 = ( ushort * ) ( cell_addr + 10 ) ;
piVar5 = cell_slots_add + target_barrel_region ;
2020-04-04 06:49:28 +02:00
iVar4 = 0x3ff ;
2020-04-20 06:55:53 +02:00
puVar1 = cell_ptrs + target_barrel_region * 0x400 ;
2020-04-04 06:49:28 +02:00
do {
if ( ( uVar7 & uVar6 ) = = 0 ) {
uVar3 = 0xffff ;
}
else {
uVar3 = * puVar2 ;
puVar2 = puVar2 + 1 ;
uVar3 = uVar3 + * ( short * ) piVar5 ;
}
uVar6 = ( int ) uVar6 > > 1 ;
* puVar1 = uVar3 ;
if ( uVar6 = = 0 ) {
uVar6 = 0x8000 ;
uVar7 = ( uint ) * puVar2 ;
puVar2 = puVar2 + 1 ;
}
iVar4 = iVar4 + - 1 ;
puVar1 = puVar1 + 1 ;
} while ( - 1 < iVar4 ) ;
2020-04-09 20:22:38 +02:00
2020-04-04 06:49:28 +02:00
return ;
}
2020-04-09 20:22:38 +02:00
if ( FrameCnt ! = 0x78654321 )
{
2020-04-04 06:49:28 +02:00
do {
2020-04-19 14:32:14 +02:00
trap ( 0x400 ) ;
2020-04-04 06:49:28 +02:00
} while ( FrameCnt ! = 0x78654321 ) ;
2020-04-09 20:22:38 +02:00
2020-04-04 06:49:28 +02:00
unpack_cellptr_flag = 0 ;
return ;
}
}
2020-03-27 21:47:29 +01:00
}
// decompiled code
// original method signature:
// void /*$ra*/ Unpack_CellPtrs()
// line 2442, offset 0x0007d978
/* begin block 1 */
// Start line: 2444
// Start offset: 0x0007D978
// Variables:
// int region_to_unpack; // $a1
// int target_barrel_region; // $a1
// char *source_packed_data; // $v1
/* end block 1 */
// End offset: 0x0007D9CC
// End Line: 2469
/* begin block 2 */
// Start line: 4884
/* end block 2 */
// End Line: 4885
/* begin block 3 */
// Start line: 6539
/* end block 3 */
// End Line: 6540
/* WARNING: Unknown calling convention yet parameter storage is locked */
2020-04-20 06:55:53 +02:00
// [D] [A] altered unpack_cellpointers
2020-03-27 21:47:29 +01:00
void Unpack_CellPtrs ( void )
{
2020-04-20 06:55:53 +02:00
SPL_REGIONINFO * spool = & spool_regioninfo [ spool_regionpos ] ;
2020-04-09 19:45:25 +02:00
2020-04-20 06:55:53 +02:00
unpack_cellpointers ( spool - > region_to_unpack , spool - > target_barrel_region , spool - > cell_addr ) ;
2020-03-27 21:47:29 +01:00
}
// decompiled code
// original method signature:
// void /*$ra*/ SpecClutsSpooled()
// line 2509, offset 0x0007c74c
/* begin block 1 */
// Start line: 2511
// Start offset: 0x0007C74C
// Variables:
// char *loadaddr; // $s4
// int i; // $s1
// int j; // $s2
// int tpage; // $s0
// struct RECT specCluts; // stack offset -48
/* begin block 1.1 */
// Start line: 2522
// Start offset: 0x0007C7F4
// Variables:
// int index; // $a3
/* begin block 1.1.1 */
// Start line: 2537
// Start offset: 0x0007C91C
/* end block 1.1.1 */
// End offset: 0x0007C91C
// End Line: 2537
/* end block 1.1 */
// End offset: 0x0007C95C
// End Line: 2542
/* end block 1 */
// End offset: 0x0007C9B8
// End Line: 2546
/* begin block 2 */
// Start line: 5647
/* end block 2 */
// End Line: 5648
/* begin block 3 */
// Start line: 5720
/* end block 3 */
// End Line: 5721
/* begin block 4 */
// Start line: 5721
/* end block 4 */
// End Line: 5722
/* begin block 5 */
// Start line: 5730
/* end block 5 */
// End Line: 5731
/* WARNING: Unknown calling convention yet parameter storage is locked */
2020-04-10 01:29:12 +02:00
// [D]
2020-03-27 21:47:29 +01:00
void SpecClutsSpooled ( void )
{
2020-04-10 01:29:12 +02:00
unsigned char bVar1 ;
2020-04-04 06:49:28 +02:00
short sVar2 ;
short sVar3 ;
u_short uVar4 ;
int iVar5 ;
int iVar6 ;
uint uVar7 ;
2020-04-15 16:15:54 +02:00
ushort * puVar8 ;
2020-04-04 06:49:28 +02:00
int iVar9 ;
int iVar10 ;
char * pcVar11 ;
2020-04-10 01:29:12 +02:00
RECT16 specCluts ;
2020-04-04 06:49:28 +02:00
iVar9 = 0 ;
2020-04-10 01:29:12 +02:00
specCluts . x = slot_clutpos [ specialSlot ] . vx ;
specCluts . y = slot_clutpos [ specialSlot ] . vy ;
specCluts . w = 16 ;
specCluts . h = 1 ;
2020-04-04 06:49:28 +02:00
pcVar11 = specLoadBuffer ;
do {
iVar5 = 7 ;
if ( iVar9 = = 0 ) {
iVar5 = 6 ;
}
iVar10 = 0 ;
2020-04-12 17:29:49 +02:00
bVar1 = specTpages [ GameLevel ] [ specspooldata [ 2 ] - 1 ] ;
2020-04-04 06:49:28 +02:00
uVar7 = ( uint ) bVar1 ;
iVar6 = specialSlot + iVar9 ;
2020-04-10 01:29:12 +02:00
carTpages [ GameLevel ] [ iVar5 ] = bVar1 ; // [A]
tpageslots [ iVar6 ] = bVar1 ;
2020-04-04 06:49:28 +02:00
tpageloaded [ uVar7 ] = ( char ) specialSlot + ( char ) iVar9 + ' \x01 ' ;
2020-04-10 01:29:12 +02:00
sVar2 = tpagepos [ iVar6 ] . x ;
slot_tpagepos [ iVar6 ] . vx = sVar2 ;
sVar3 = tpagepos [ iVar6 ] . y ;
slot_tpagepos [ iVar6 ] . vy = sVar3 ;
2020-04-04 06:49:28 +02:00
uVar4 = GetTPage ( 0 , 0 , ( int ) sVar2 , ( int ) sVar3 ) ;
2020-04-10 01:29:12 +02:00
texture_pages [ uVar7 ] = uVar4 ;
2020-04-04 06:49:28 +02:00
iVar9 = iVar9 + 1 ;
2020-04-10 01:29:12 +02:00
if ( 0 < tpage_texamts [ uVar7 ] )
{
2020-04-12 17:29:49 +02:00
puVar8 = texture_cluts [ uVar7 ] ;
2020-04-04 06:49:28 +02:00
do {
2020-04-10 01:29:12 +02:00
LoadImage2 ( & specCluts , ( u_long * ) pcVar11 ) ;
2020-04-04 06:49:28 +02:00
pcVar11 = pcVar11 + 0x20 ;
iVar10 = iVar10 + 1 ;
2020-04-10 01:29:12 +02:00
uVar4 = GetClut ( ( int ) specCluts . x , ( int ) specCluts . y ) ;
2020-04-04 06:49:28 +02:00
* puVar8 = uVar4 ;
2020-04-10 01:29:12 +02:00
IncrementClutNum ( & specCluts ) ;
2020-04-04 06:49:28 +02:00
puVar8 = puVar8 + 1 ;
2020-04-10 01:29:12 +02:00
} while ( iVar10 < tpage_texamts [ uVar7 ] ) ;
2020-04-04 06:49:28 +02:00
}
} while ( iVar9 < 2 ) ;
2020-04-10 01:29:12 +02:00
if ( quickSpool ! = 1 )
{
2020-04-04 06:49:28 +02:00
DrawSyncCallback ( SpecialStartNextBlock ) ;
}
2020-03-27 21:47:29 +01:00
}
// decompiled code
// original method signature:
// void /*$ra*/ CleanModelSpooled()
// line 2549, offset 0x0007c9b8
/* begin block 1 */
// Start line: 2552
// Start offset: 0x0007C9B8
// Variables:
// int *loadaddr; // $a1
// int *mem; // $a3
/* begin block 1.1 */
// Start line: 2576
// Start offset: 0x0007CA80
/* end block 1.1 */
// End offset: 0x0007CAD0
// End Line: 2587
/* end block 1 */
// End offset: 0x0007CAFC
// End Line: 2591
/* begin block 2 */
// Start line: 5870
/* end block 2 */
// End Line: 5871
/* begin block 3 */
// Start line: 5874
/* end block 3 */
// End Line: 5875
/* begin block 4 */
// Start line: 5876
/* end block 4 */
// End Line: 5877
/* begin block 5 */
// Start line: 5880
/* end block 5 */
// End Line: 5881
/* WARNING: Unknown calling convention yet parameter storage is locked */
2020-04-10 01:37:20 +02:00
int * modelMemory ;
int lengthLowBlock ;
int lastCleanBlock ;
int lengthDamBlock ;
int firstLowBlock ;
int firstDamBlock ;
int specBlocksToLoad = 0 ;
int specialState = 0 ;
char specModelValid = 1 ;
int specSpoolComplete ;
// [D]
2020-03-27 21:47:29 +01:00
void CleanModelSpooled ( void )
{
2020-04-04 06:49:28 +02:00
int * piVar1 ;
ushort * puVar2 ;
int iVar4 ;
int * piVar5 ;
int * in_a3 ;
piVar5 = ( int * ) specLoadBuffer ;
2020-05-11 20:10:50 +02:00
if ( specBlocksToLoad = = lastCleanBlock - 1 )
{
piVar5 = ( int * ) ( specLoadBuffer + 12 ) ;
2020-04-04 06:49:28 +02:00
modelMemory = ( int * ) specmallocptr ;
2020-04-10 01:37:20 +02:00
gCarCleanModelPtr [ 4 ] = ( MODEL * ) specmallocptr ;
2020-04-04 06:49:28 +02:00
}
2020-04-10 01:37:20 +02:00
if ( piVar5 < ( int * ) ( specLoadBuffer + 0x800 ) )
{
2020-04-04 06:49:28 +02:00
do {
iVar4 = * piVar5 ;
2020-05-11 20:10:50 +02:00
piVar5 + + ;
2020-04-04 06:49:28 +02:00
* modelMemory = iVar4 ;
2020-05-11 20:10:50 +02:00
modelMemory + + ;
2020-04-10 01:37:20 +02:00
} while ( piVar5 < ( int * ) ( specLoadBuffer + 0x800 ) ) ;
2020-04-04 06:49:28 +02:00
}
2020-04-10 01:37:20 +02:00
if ( & gCarCleanModelPtr [ 4 ] [ 1 ] . poly_block < modelMemory )
{
in_a3 = ( int * ) ( ( int ) & gCarCleanModelPtr [ 4 ] - > shape_flags + gCarCleanModelPtr [ 4 ] - > poly_block ) ;
2020-04-04 06:49:28 +02:00
}
2020-04-10 01:37:20 +02:00
if ( ( specBlocksToLoad = = 0 ) | | ( in_a3 < modelMemory ) )
{
2020-05-11 20:10:50 +02:00
specBlocksToLoad = 0 ;
2020-04-10 01:37:20 +02:00
piVar5 = & gCarCleanModelPtr [ 4 ] - > normals ;
piVar1 = & gCarCleanModelPtr [ 4 ] - > point_normals ;
puVar2 = & gCarCleanModelPtr [ 4 ] - > shape_flags ;
2020-05-11 20:10:50 +02:00
2020-04-04 06:49:28 +02:00
modelMemory = in_a3 ;
2020-04-10 01:37:20 +02:00
gCarCleanModelPtr [ 4 ] - > vertices = ( int ) & gCarCleanModelPtr [ 4 ] - > shape_flags + gCarCleanModelPtr [ 4 ] - > vertices ;
2020-05-11 20:10:50 +02:00
NewCarModel [ 4 ] . nlist = ( SVECTOR * ) ( ( int ) & gCarCleanModelPtr [ 4 ] - > shape_flags + * piVar1 ) ;
gCarCleanModelPtr [ 4 ] - > normals = ( int ) puVar2 + * piVar5 ;
* ( SVECTOR * * ) & gCarCleanModelPtr [ 4 ] - > point_normals = NewCarModel [ 4 ] . nlist ;
gCarCleanModelPtr [ 4 ] - > poly_block = ( int ) & gCarCleanModelPtr [ 4 ] - > shape_flags + gCarCleanModelPtr [ 4 ] - > poly_block ;
NewCarModel [ 4 ] . vlist = ( SVECTOR * ) gCarCleanModelPtr [ 4 ] - > vertices ;
2020-04-04 06:49:28 +02:00
}
2020-05-11 20:10:50 +02:00
2020-04-10 01:37:20 +02:00
if ( quickSpool ! = 1 )
{
2020-04-04 06:49:28 +02:00
DrawSyncCallback ( SpecialStartNextBlock ) ;
}
2020-03-27 21:47:29 +01:00
}
// decompiled code
// original method signature:
// void /*$ra*/ DamagedModelSpooled()
// line 2594, offset 0x0007cafc
/* begin block 1 */
// Start line: 2596
// Start offset: 0x0007CAFC
// Variables:
// int *loadaddr; // $a1
// int *mem; // $a3
/* begin block 1.1 */
// Start line: 2620
// Start offset: 0x0007CBC0
/* end block 1.1 */
// End offset: 0x0007CBF8
// End Line: 2629
/* end block 1 */
// End offset: 0x0007CC24
// End Line: 2633
/* begin block 2 */
// Start line: 5981
/* end block 2 */
// End Line: 5982
/* begin block 3 */
// Start line: 5985
/* end block 3 */
// End Line: 5986
/* begin block 4 */
// Start line: 5986
/* end block 4 */
// End Line: 5987
/* begin block 5 */
// Start line: 5990
/* end block 5 */
// End Line: 5991
/* WARNING: Unknown calling convention yet parameter storage is locked */
2020-04-10 01:37:32 +02:00
int damOffset ;
// [D]
2020-03-27 21:47:29 +01:00
void DamagedModelSpooled ( void )
{
2020-04-04 06:49:28 +02:00
MODEL * pMVar1 ;
int iVar2 ;
int * piVar3 ;
int * in_a3 ;
piVar3 = ( int * ) specLoadBuffer ;
2020-04-10 01:37:32 +02:00
if ( specBlocksToLoad = = lengthDamBlock + - 1 )
{
2020-04-04 06:49:28 +02:00
piVar3 = ( int * ) ( specLoadBuffer + damOffset ) ;
2020-04-10 01:37:32 +02:00
gCarDamModelPtr [ 4 ] = ( MODEL * ) modelMemory ;
2020-04-04 06:49:28 +02:00
}
2020-04-10 01:37:32 +02:00
if ( piVar3 < ( int * ) ( specLoadBuffer + 0x800 ) )
{
2020-04-20 06:55:53 +02:00
// memcpy
2020-04-04 06:49:28 +02:00
do {
iVar2 = * piVar3 ;
piVar3 = piVar3 + 1 ;
* modelMemory = iVar2 ;
modelMemory = modelMemory + 1 ;
2020-04-10 01:37:32 +02:00
} while ( piVar3 < ( int * ) ( specLoadBuffer + 0x800 ) ) ;
2020-04-04 06:49:28 +02:00
}
2020-04-10 01:37:32 +02:00
pMVar1 = gCarDamModelPtr [ 4 ] ;
if ( & gCarDamModelPtr [ 4 ] [ 1 ] . poly_block < modelMemory )
{
in_a3 = ( int * ) ( ( int ) & gCarDamModelPtr [ 4 ] - > shape_flags + gCarDamModelPtr [ 4 ] - > normals ) ;
2020-04-04 06:49:28 +02:00
}
2020-04-10 01:37:32 +02:00
if ( ( specBlocksToLoad = = 0 ) | | ( in_a3 < modelMemory ) )
{
piVar3 = & gCarDamModelPtr [ 4 ] - > normals ;
2020-04-04 06:49:28 +02:00
specBlocksToLoad = 0 ;
modelMemory = in_a3 ;
2020-04-10 01:37:32 +02:00
gCarDamModelPtr [ 4 ] - > vertices = ( int ) & gCarDamModelPtr [ 4 ] - > shape_flags + gCarDamModelPtr [ 4 ] - > vertices ;
2020-04-04 06:49:28 +02:00
pMVar1 - > normals = ( int ) & pMVar1 - > shape_flags + * piVar3 ;
pMVar1 - > poly_block = ( int ) & pMVar1 - > shape_flags + pMVar1 - > poly_block ;
pMVar1 - > point_normals = ( int ) & pMVar1 - > shape_flags + pMVar1 - > point_normals ;
}
if ( quickSpool ! = 1 ) {
DrawSyncCallback ( SpecialStartNextBlock ) ;
}
2020-03-27 21:47:29 +01:00
}
// decompiled code
// original method signature:
// void /*$ra*/ LowModelSpooled()
// line 2635, offset 0x0007cc24
/* begin block 1 */
// Start line: 2637
// Start offset: 0x0007CC24
// Variables:
// int *loadaddr; // $a1
// int *mem; // $a3
/* begin block 1.1 */
// Start line: 2661
// Start offset: 0x0007CCE8
/* end block 1.1 */
// End offset: 0x0007CD38
// End Line: 2672
/* end block 1 */
// End offset: 0x0007CD64
// End Line: 2676
/* begin block 2 */
// Start line: 6081
/* end block 2 */
// End Line: 6082
/* begin block 3 */
// Start line: 6084
/* end block 3 */
// End Line: 6085
/* begin block 4 */
// Start line: 6085
/* end block 4 */
// End Line: 6086
/* begin block 5 */
// Start line: 6089
/* end block 5 */
// End Line: 6090
/* WARNING: Unknown calling convention yet parameter storage is locked */
2020-04-10 01:42:04 +02:00
int lowOffset ;
// [D]
2020-03-27 21:47:29 +01:00
void LowModelSpooled ( void )
{
2020-04-04 06:49:28 +02:00
int * piVar1 ;
ushort * puVar2 ;
MODEL * pMVar3 ;
int iVar4 ;
int * piVar5 ;
int * in_a3 ;
piVar5 = ( int * ) specLoadBuffer ;
if ( specBlocksToLoad = = lengthLowBlock + - 1 ) {
piVar5 = ( int * ) ( specLoadBuffer + lowOffset ) ;
2020-04-10 01:42:04 +02:00
gCarLowModelPtr [ 4 ] = ( MODEL * ) modelMemory ;
2020-04-04 06:49:28 +02:00
}
2020-04-10 01:42:04 +02:00
// This is a while() {}, not do{}while() xDD
if ( piVar5 < ( int * ) ( specLoadBuffer + 0x800 ) )
{
2020-04-04 06:49:28 +02:00
do {
iVar4 = * piVar5 ;
piVar5 = piVar5 + 1 ;
* modelMemory = iVar4 ;
modelMemory = modelMemory + 1 ;
2020-04-10 01:42:04 +02:00
} while ( piVar5 < ( int * ) ( specLoadBuffer + 0x800 ) ) ;
2020-04-04 06:49:28 +02:00
}
2020-04-10 01:42:04 +02:00
pMVar3 = gCarLowModelPtr [ 4 ] ;
if ( & gCarLowModelPtr [ 4 ] [ 1 ] . poly_block < modelMemory ) {
in_a3 = ( int * ) ( ( int ) & gCarLowModelPtr [ 4 ] - > shape_flags + gCarLowModelPtr [ 4 ] - > poly_block ) ;
2020-04-04 06:49:28 +02:00
}
2020-04-10 01:42:04 +02:00
2020-04-04 06:49:28 +02:00
if ( ( specBlocksToLoad = = 0 ) | | ( in_a3 < modelMemory ) ) {
2020-04-10 01:42:04 +02:00
piVar5 = & gCarLowModelPtr [ 4 ] - > normals ;
piVar1 = & gCarLowModelPtr [ 4 ] - > point_normals ;
2020-04-04 06:49:28 +02:00
specBlocksToLoad = 0 ;
2020-04-10 01:42:04 +02:00
puVar2 = & gCarLowModelPtr [ 4 ] - > shape_flags ;
2020-04-04 06:49:28 +02:00
modelMemory = in_a3 ;
2020-04-10 01:42:04 +02:00
gCarLowModelPtr [ 4 ] - > vertices = ( int ) & gCarLowModelPtr [ 4 ] - > shape_flags + gCarLowModelPtr [ 4 ] - > vertices ;
NewLowCarModel [ 4 ] . nlist = ( SVECTOR * ) ( ( int ) & pMVar3 - > shape_flags + * piVar1 ) ;
2020-04-04 06:49:28 +02:00
pMVar3 - > normals = ( int ) puVar2 + * piVar5 ;
2020-04-10 01:42:04 +02:00
* ( SVECTOR * * ) & pMVar3 - > point_normals = NewLowCarModel [ 4 ] . nlist ;
2020-04-04 06:49:28 +02:00
pMVar3 - > poly_block = ( int ) & pMVar3 - > shape_flags + pMVar3 - > poly_block ;
2020-04-10 01:42:04 +02:00
NewLowCarModel [ 4 ] . vlist = ( SVECTOR * ) pMVar3 - > vertices ;
2020-04-04 06:49:28 +02:00
}
2020-04-10 01:42:04 +02:00
2020-04-04 06:49:28 +02:00
if ( quickSpool ! = 1 ) {
DrawSyncCallback ( SpecialStartNextBlock ) ;
}
2020-03-27 21:47:29 +01:00
}
// decompiled code
// original method signature:
// void /*$ra*/ CleanSpooled()
// line 2680, offset 0x0007cd64
/* begin block 1 */
// Start line: 2683
// Start offset: 0x0007CD64
// Variables:
// char *loadaddr; // $a1
/* begin block 1.1 */
// Start line: 2702
// Start offset: 0x0007CE8C
// Variables:
// struct MODEL *tempModel; // $a1
/* end block 1.1 */
// End offset: 0x0007CEE0
// End Line: 2713
/* end block 1 */
// End offset: 0x0007CF0C
// End Line: 2717
/* begin block 2 */
// Start line: 6189
/* end block 2 */
// End Line: 6190
/* begin block 3 */
// Start line: 6194
/* end block 3 */
// End Line: 6195
/* begin block 4 */
// Start line: 6196
/* end block 4 */
// End Line: 6197
/* begin block 5 */
// Start line: 6198
/* end block 5 */
// End Line: 6199
/* WARNING: Unknown calling convention yet parameter storage is locked */
2020-04-10 01:42:16 +02:00
// [D]
2020-03-27 21:47:29 +01:00
void CleanSpooled ( void )
{
2020-04-04 06:49:28 +02:00
int * piVar1 ;
char * pcVar2 ;
int iVar3 ;
int iVar4 ;
MODEL * model ;
pcVar2 = specmallocptr ;
2020-04-10 01:42:16 +02:00
if ( specBlocksToLoad = = 6 )
{
2020-04-04 06:49:28 +02:00
lastCleanBlock = * ( int * ) specmallocptr + 0x80b ;
if ( lastCleanBlock < 0 ) {
lastCleanBlock = * ( int * ) specmallocptr + 0x100a ;
}
lastCleanBlock = lastCleanBlock > > 0xb ;
firstLowBlock = * ( int * ) specmallocptr + * ( int * ) ( specmallocptr + 4 ) + 0xc ;
if ( firstLowBlock < 0 ) {
firstLowBlock = * ( int * ) specmallocptr + * ( int * ) ( specmallocptr + 4 ) + 0x80b ;
}
firstLowBlock = firstLowBlock > > 0xb ;
iVar4 = * ( int * ) specmallocptr + * ( int * ) ( specmallocptr + 4 ) + * ( int * ) ( specmallocptr + 8 ) ;
iVar3 = iVar4 + 0x80b ;
if ( iVar3 < 0 ) {
iVar3 = iVar4 + 0x100a ;
}
lengthLowBlock = ( iVar3 > > 0xb ) - firstLowBlock ;
lowOffset = ( * ( int * ) specmallocptr + * ( int * ) ( specmallocptr + 4 ) ) -
( firstLowBlock * 0x800 + - 0xc ) ;
firstDamBlock = * ( int * ) specmallocptr + 0xc ;
if ( firstDamBlock < 0 ) {
firstDamBlock = * ( int * ) specmallocptr + 0x80b ;
}
firstDamBlock = firstDamBlock > > 0xb ;
iVar3 = * ( int * ) specmallocptr + * ( int * ) ( specmallocptr + 4 ) + 0x80b ;
if ( iVar3 < 0 ) {
iVar3 = * ( int * ) specmallocptr + * ( int * ) ( specmallocptr + 4 ) + 0x100a ;
}
lengthDamBlock = ( iVar3 > > 0xb ) - firstDamBlock ;
damOffset = * ( int * ) specmallocptr - ( firstDamBlock * 0x800 + - 0xc ) ;
}
2020-04-10 01:42:16 +02:00
2020-04-04 06:49:28 +02:00
model = ( MODEL * ) ( specmallocptr + 0xc ) ;
2020-04-10 01:42:16 +02:00
2020-04-20 06:55:53 +02:00
if ( specBlocksToLoad = = 7 - lastCleanBlock )
{
2020-04-04 06:49:28 +02:00
iVar3 = * ( int * ) ( specmallocptr + 0x24 ) ;
piVar1 = ( int * ) ( specmallocptr + 0x20 ) ;
* ( int * ) ( specmallocptr + 0x1c ) = ( int ) & model - > shape_flags + * ( int * ) ( specmallocptr + 0x1c ) ;
* ( int * ) ( pcVar2 + 0x20 ) = ( int ) & model - > shape_flags + * piVar1 ;
* ( int * ) ( pcVar2 + 0x24 ) = ( int ) & model - > shape_flags + iVar3 ;
whichCP = baseSpecCP ;
* ( int * ) ( pcVar2 + 0x28 ) = ( int ) & model - > shape_flags + * ( int * ) ( pcVar2 + 0x28 ) ;
2020-04-20 06:55:53 +02:00
2020-04-10 01:42:16 +02:00
buildNewCarFromModel ( NewCarModel + 4 , model , 0 ) ;
2020-04-04 06:49:28 +02:00
specBlocksToLoad = 0 ;
}
2020-04-20 06:55:53 +02:00
2020-04-04 06:49:28 +02:00
if ( quickSpool ! = 1 ) {
DrawSyncCallback ( SpecialStartNextBlock ) ;
}
2020-03-27 21:47:29 +01:00
}
// decompiled code
// original method signature:
// void /*$ra*/ LowSpooled()
// line 2720, offset 0x0007e7c0
/* begin block 1 */
// Start line: 2723
// Start offset: 0x0007E7C0
// Variables:
// char *loadaddr; // $v1
/* begin block 1.1 */
// Start line: 2728
// Start offset: 0x0007E7D8
// Variables:
// struct MODEL *tempModel; // $a1
/* end block 1.1 */
// End offset: 0x0007E820
// End Line: 2737
/* end block 1 */
// End offset: 0x0007E84C
// End Line: 2741
/* begin block 2 */
// Start line: 10317
/* end block 2 */
// End Line: 10318
/* begin block 3 */
// Start line: 10319
/* end block 3 */
// End Line: 10320
/* begin block 4 */
// Start line: 10321
/* end block 4 */
// End Line: 10322
/* WARNING: Unknown calling convention yet parameter storage is locked */
2020-04-10 01:42:16 +02:00
// [D]
2020-03-27 21:47:29 +01:00
void LowSpooled ( void )
{
2020-04-04 06:49:28 +02:00
MODEL * model ;
2020-04-10 01:42:16 +02:00
if ( specBlocksToLoad = = 0 )
{
2020-04-04 06:49:28 +02:00
model = ( MODEL * ) ( specmallocptr + lowOffset ) ;
2020-04-10 01:42:16 +02:00
2020-04-04 06:49:28 +02:00
model - > vertices = ( int ) & model - > shape_flags + model - > vertices ;
model - > normals = ( int ) & model - > shape_flags + model - > normals ;
model - > poly_block = ( int ) & model - > shape_flags + model - > poly_block ;
model - > point_normals = ( int ) & model - > shape_flags + model - > point_normals ;
2020-04-10 01:42:16 +02:00
buildNewCarFromModel ( NewLowCarModel + 4 , model , 0 ) ;
2020-04-04 06:49:28 +02:00
}
2020-04-10 01:42:16 +02:00
if ( quickSpool ! = 1 )
{
2020-04-04 06:49:28 +02:00
DrawSyncCallback ( SpecialStartNextBlock ) ;
}
2020-03-27 21:47:29 +01:00
}
// decompiled code
// original method signature:
// void /*$ra*/ Tada()
// line 2744, offset 0x0007cf0c
/* begin block 1 */
// Start line: 2746
// Start offset: 0x0007CF0C
// Variables:
// char *loadaddr; // $s1
/* begin block 1.1 */
// Start line: 2751
// Start offset: 0x0007CF60
// Variables:
// struct RECT tpage; // stack offset -32
// int spec_tpage; // $a0
/* end block 1.1 */
// End offset: 0x0007D018
// End Line: 2764
/* begin block 1.2 */
// Start line: 2767
// Start offset: 0x0007D018
// Variables:
// struct RECT tpage; // stack offset -24
// int spec_tpage; // $a0
/* end block 1.2 */
// End offset: 0x0007D0EC
// End Line: 2780
/* begin block 1.3 */
// Start line: 2783
// Start offset: 0x0007D0EC
/* end block 1.3 */
// End offset: 0x0007D130
// End Line: 2789
/* end block 1 */
// End offset: 0x0007D144
// End Line: 2793
/* begin block 2 */
// Start line: 6312
/* end block 2 */
// End Line: 6313
/* begin block 3 */
// Start line: 6340
/* end block 3 */
// End Line: 6341
/* begin block 4 */
// Start line: 6341
/* end block 4 */
// End Line: 6342
/* begin block 5 */
// Start line: 6342
/* end block 5 */
// End Line: 6343
/* WARNING: Unknown calling convention yet parameter storage is locked */
2020-04-10 01:52:35 +02:00
// [D]
2020-03-27 21:47:29 +01:00
void Tada ( void )
{
2020-04-04 06:49:28 +02:00
char * pcVar1 ;
int slot ;
2020-04-10 01:52:35 +02:00
RECT16 local_20 ;
RECT16 local_18 ;
2020-04-04 06:49:28 +02:00
pcVar1 = specLoadBuffer ;
2020-04-10 01:52:35 +02:00
if ( specialState = = 2 )
{
2020-04-04 06:49:28 +02:00
local_18 . w = 0x40 ;
slot = ( int ) specialSlot + 1 ;
2020-04-10 01:52:35 +02:00
local_18 . x = tpagepos [ slot ] . x ;
2020-04-04 06:49:28 +02:00
local_18 . h = 0x10 ;
2020-04-10 01:52:35 +02:00
local_18 . y = tpagepos [ slot ] . y + ( 0xf - ( short ) specBlocksToLoad ) * 0x10 ;
2020-04-12 17:29:49 +02:00
if ( specBlocksToLoad = = 0xf )
{
update_slotinfo ( specTpages [ GameLevel ] [ specspooldata [ 2 ] - 1 ] , ( int ) specialSlot , & local_18 ) ;
2020-04-04 06:49:28 +02:00
}
2020-04-12 17:29:49 +02:00
2020-04-10 01:52:35 +02:00
LoadImage ( & local_18 , ( u_long * ) pcVar1 ) ;
2020-04-04 06:49:28 +02:00
}
2020-04-10 01:52:35 +02:00
else
{
if ( 2 < specialState )
{
if ( specialState ! = 4 )
2020-04-04 06:49:28 +02:00
return ;
2020-04-10 01:52:35 +02:00
2020-04-04 06:49:28 +02:00
SetupSpecCosmetics ( specLoadBuffer ) ;
FixCarCos ( car_cosmetics + 4 , MissionHeader - > residentModels [ 4 ] ) ;
SetupSpecDenting ( pcVar1 + 0xec ) ;
2020-04-10 01:52:35 +02:00
if ( quickSpool = = 1 )
{
2020-04-04 06:49:28 +02:00
return ;
}
2020-04-10 01:52:35 +02:00
2020-04-04 06:49:28 +02:00
DrawSyncCallback ( SpecialStartNextBlock ) ;
return ;
}
2020-04-10 01:52:35 +02:00
if ( specialState ! = 1 )
{
2020-04-04 06:49:28 +02:00
return ;
}
2020-04-10 01:52:35 +02:00
2020-04-04 06:49:28 +02:00
slot = ( int ) specialSlot ;
local_20 . w = 0x40 ;
2020-04-10 01:52:35 +02:00
local_20 . x = tpagepos [ slot ] . x ;
2020-04-04 06:49:28 +02:00
local_20 . h = 0x10 ;
2020-04-10 01:52:35 +02:00
local_20 . y = tpagepos [ slot ] . y + ( 0xf - ( short ) specBlocksToLoad ) * 0x10 ;
2020-04-12 17:29:49 +02:00
if ( specBlocksToLoad = = 15 )
{
update_slotinfo ( specTpages [ GameLevel ] [ specspooldata [ 2 ] - 1 ] , slot , & local_20 ) ;
2020-04-04 06:49:28 +02:00
}
2020-04-10 01:52:35 +02:00
LoadImage ( & local_20 , ( u_long * ) pcVar1 ) ;
2020-04-04 06:49:28 +02:00
}
2020-04-10 01:52:35 +02:00
if ( quickSpool ! = 1 )
{
2020-04-04 06:49:28 +02:00
DrawSyncCallback ( SpecialStartNextBlock ) ;
}
2020-03-27 21:47:29 +01:00
}
// decompiled code
// original method signature:
// void /*$ra*/ SpecialStartNextBlock()
// line 2799, offset 0x0007d144
/* begin block 1 */
// Start line: 2801
// Start offset: 0x0007D144
// Variables:
// char *loadaddr; // $s0
// int fileSector; // $t0
/* end block 1 */
// End offset: 0x0007D4D0
// End Line: 2925
/* begin block 2 */
// Start line: 6482
/* end block 2 */
// End Line: 6483
/* begin block 3 */
// Start line: 6489
/* end block 3 */
// End Line: 6490
/* begin block 4 */
// Start line: 6490
/* end block 4 */
// End Line: 6491
/* begin block 5 */
// Start line: 6493
/* end block 5 */
// End Line: 6494
/* WARNING: Unknown calling convention yet parameter storage is locked */
2020-04-10 01:29:12 +02:00
// [D]
2020-03-27 21:47:29 +01:00
void SpecialStartNextBlock ( void )
{
2020-04-04 06:49:28 +02:00
int iVar1 ;
int iVar2 ;
char * local_10 ;
2020-04-10 01:29:12 +02:00
int offset ;
spooledFuncPtr spoolFunc ;
2020-04-04 06:49:28 +02:00
local_10 = specLoadBuffer ;
DrawSyncCallback ( 0 ) ;
2020-04-10 01:29:12 +02:00
if ( specBlocksToLoad ! = 0 )
goto LAB_0007d240 ;
iVar1 = specialState + 1 ;
if ( false ) // bizarre move, (de)compiler xD
{
switchD_0007d1c4_caseD_9 :
specBlocksToLoad = 0 ;
specialState = iVar1 ;
}
else
{
2020-04-04 06:49:28 +02:00
switch ( specialState ) {
case 0 :
case 1 :
specBlocksToLoad = 0x10 ;
specialState = iVar1 ;
break ;
case 2 :
case 3 :
specBlocksToLoad = 1 ;
specialState = iVar1 ;
break ;
case 4 :
specBlocksToLoad = 7 ;
specialState = iVar1 ;
break ;
case 5 :
case 8 :
specBlocksToLoad = lengthLowBlock ;
specialState = iVar1 ;
break ;
case 6 :
specBlocksToLoad = lastCleanBlock ;
specialState = iVar1 ;
break ;
case 7 :
specBlocksToLoad = lengthDamBlock ;
specialState = iVar1 ;
break ;
default :
2020-04-10 01:29:12 +02:00
goto switchD_0007d1c4_caseD_9 ;
2020-04-04 06:49:28 +02:00
}
}
2020-04-10 01:29:12 +02:00
LAB_0007d240 :
iVar1 = citylumps [ GameLevel ] [ 3 ] . x ;
if ( iVar1 < 0 )
{
2020-04-04 06:49:28 +02:00
iVar1 = iVar1 + 0x7ff ;
}
2020-04-10 01:29:12 +02:00
offset = 0x1400 + ( citystart [ GameLevel ] - ( iVar1 > > 0xb ) ) + ( ( int ) specspooldata [ 2 ] + - 1 ) * 0x2a ;
if ( false )
{
switchD_0007d2ac_caseD_a :
if ( quickSpool = = 1 )
{
2020-04-12 17:29:49 +02:00
specModelValid = 1 ;
2020-04-04 06:49:28 +02:00
specialState = 0 ;
quickSpool = 0 ;
specSpoolComplete = 0 ;
return ;
}
specSpoolComplete = 1 ;
return ;
}
2020-04-10 01:29:12 +02:00
switch ( specialState )
{
case 1 :
spoolFunc = Tada ;
offset = offset + ( 0x11 - specBlocksToLoad ) ;
break ;
case 2 :
spoolFunc = Tada ;
offset = offset + ( 0x21 - specBlocksToLoad ) ;
break ;
case 3 :
spoolFunc = SpecClutsSpooled ;
break ;
case 4 :
offset = offset + 0x21 ;
spoolFunc = Tada ;
break ;
case 5 :
spoolFunc = CleanSpooled ;
iVar2 = 7 ;
iVar1 = 0x29 - specBlocksToLoad ;
goto LAB_0007d470 ;
case 6 :
spoolFunc = LowSpooled ;
iVar1 = ( ( firstLowBlock + lengthLowBlock ) - specBlocksToLoad ) + 0x22 ;
iVar2 = lengthLowBlock ;
LAB_0007d470 :
offset = offset + iVar1 ;
local_10 = specmallocptr + ( iVar2 - specBlocksToLoad ) * 0x800 ;
break ;
case 7 :
spoolFunc = CleanModelSpooled ;
offset = offset + ( lastCleanBlock - specBlocksToLoad ) + 0x22 ;
break ;
case 8 :
spoolFunc = DamagedModelSpooled ;
offset = offset + ( ( firstDamBlock + lengthDamBlock ) - specBlocksToLoad ) + 0x22 ;
break ;
case 9 :
spoolFunc = LowModelSpooled ;
offset = offset + ( ( firstLowBlock + lengthLowBlock ) - specBlocksToLoad ) + 0x22 ;
break ;
default :
goto switchD_0007d2ac_caseD_a ;
}
RequestSpool ( 3 , 0 , ( int ) offset , 1 , local_10 , spoolFunc ) ;
2020-04-20 06:55:53 +02:00
specBlocksToLoad - - ;
2020-03-27 21:47:29 +01:00
}
// decompiled code
// original method signature:
// void /*$ra*/ CheckSpecialSpool()
// line 2956, offset 0x0007d4e0
/* begin block 1 */
// Start line: 2958
// Start offset: 0x0007D4E0
// Variables:
// struct _CAR_DATA *lcp; // $a0
// int ret; // $a3
/* begin block 1.1 */
// Start line: 2965
// Start offset: 0x0007D51C
/* end block 1.1 */
// End offset: 0x0007D53C
// End Line: 2969
/* end block 1 */
// End offset: 0x0007D6C8
// End Line: 3022
/* begin block 2 */
// Start line: 6827
/* end block 2 */
// End Line: 6828
/* begin block 3 */
// Start line: 6828
/* end block 3 */
// End Line: 6829
/* begin block 4 */
// Start line: 6831
/* end block 4 */
// End Line: 6832
/* WARNING: Unknown calling convention yet parameter storage is locked */
2020-04-10 13:56:11 +02:00
// [D]
2020-03-27 21:47:29 +01:00
void CheckSpecialSpool ( void )
{
2020-04-04 06:49:28 +02:00
bool bVar1 ;
int iVar2 ;
2020-04-10 13:56:11 +02:00
_CAR_DATA * lcp ;
2020-04-04 06:49:28 +02:00
2020-04-10 13:56:11 +02:00
if ( ( startSpecSpool ! = - 1 ) & & ( startSpecSpool + 400 < CameraCnt ) )
{
if ( specSpoolComplete = = 0 )
{
do
{
2020-04-04 06:49:28 +02:00
SpoolSYNC ( ) ;
iVar2 = DrawSync ( 1 ) ;
2020-04-10 13:56:11 +02:00
if ( iVar2 = = 0 )
{
2020-04-04 06:49:28 +02:00
SpecialStartNextBlock ( ) ;
}
2020-04-10 13:56:11 +02:00
2020-04-04 06:49:28 +02:00
StartSpooling ( ) ;
2020-04-10 13:56:11 +02:00
2020-04-04 06:49:28 +02:00
} while ( specSpoolComplete = = 0 ) ;
}
specModelValid = ' \x01 ' ;
specialState = 0 ;
specBlocksToLoad = 0 ;
specSpoolComplete = 0 ;
startSpecSpool = - 1 ;
}
2020-04-10 13:56:11 +02:00
2020-04-04 06:49:28 +02:00
if ( ( ( ( allowSpecSpooling ! = 0 ) & & ( specSpoolComplete ! = 1 ) ) & & ( GameType ! = GAME_PURSUIT ) ) & &
2020-04-10 13:56:11 +02:00
( SpecialByRegion [ GameLevel ] [ LoadedArea ] ! = MissionHeader - > residentModels [ 4 ] + - 7 ) )
{
2020-04-04 06:49:28 +02:00
specModelValid = ' \0 ' ;
2020-04-10 13:56:11 +02:00
lcp = car_data ;
2020-04-04 06:49:28 +02:00
bVar1 = false ;
2020-04-10 13:56:11 +02:00
do // [A]
{
if ( 4 < MissionHeader - > residentModels [ lcp - > ap . model ] )
2020-04-04 06:49:28 +02:00
bVar1 = true ;
2020-04-10 13:56:11 +02:00
lcp + + ;
} while ( lcp < & car_data [ 19 ] ) ;
if ( ! bVar1 )
{
2020-04-04 06:49:28 +02:00
startSpecSpool = CameraCnt ;
2020-04-10 13:56:11 +02:00
gCarDamModelPtr [ 4 ] = NULL ;
gCarCleanModelPtr [ 4 ] = NULL ;
gCarLowModelPtr [ 4 ] = NULL ;
2020-04-19 13:01:51 +02:00
specspooldata [ 2 ] = SpecialByRegion [ GameLevel ] [ LoadedArea ] ;
2020-04-10 13:56:11 +02:00
MissionHeader - > residentModels [ 4 ] = SpecialByRegion [ GameLevel ] [ LoadedArea ] + 7 ;
if ( specialState = = 0 )
{
2020-04-04 06:49:28 +02:00
SpecialStartNextBlock ( ) ;
}
}
}
2020-03-27 21:47:29 +01:00
}
// decompiled code
// original method signature:
// void /*$ra*/ QuickSpoolSpecial()
// line 3025, offset 0x0007e84c
/* begin block 1 */
// Start line: 10949
/* end block 1 */
// End Line: 10950
/* begin block 2 */
// Start line: 10950
/* end block 2 */
// End Line: 10951
/* WARNING: Unknown calling convention yet parameter storage is locked */
2020-04-10 13:56:11 +02:00
// [D]
2020-03-27 21:47:29 +01:00
void QuickSpoolSpecial ( void )
{
2020-04-04 06:49:28 +02:00
quickSpool = 1 ;
specialState = 0 ;
specBlocksToLoad = 0 ;
2020-04-10 13:56:11 +02:00
gCarCleanModelPtr [ 4 ] = NULL ;
gCarDamModelPtr [ 4 ] = NULL ;
gCarLowModelPtr [ 4 ] = NULL ;
specspooldata [ 2 ] = * ( short * ) ( MissionHeader - > residentModels + 4 ) + - 7 ;
2020-04-04 06:49:28 +02:00
do {
SpoolSYNC ( ) ;
DrawSync ( 0 ) ;
SpecialStartNextBlock ( ) ;
StartSpooling ( ) ;
} while ( quickSpool = = 1 ) ;
2020-03-27 21:47:29 +01:00
}
// decompiled code
// original method signature:
// void /*$ra*/ PrepareSecretCar()
// line 3046, offset 0x0007e8dc
/* begin block 1 */
// Start line: 11011
/* end block 1 */
// End Line: 11012
/* begin block 2 */
// Start line: 11012
/* end block 2 */
// End Line: 11013
/* WARNING: Unknown calling convention yet parameter storage is locked */
2020-04-10 13:56:11 +02:00
// [D]
2020-03-27 21:47:29 +01:00
void PrepareSecretCar ( void )
{
2020-04-04 06:49:28 +02:00
allowSpecSpooling = 0 ;
PingOutAllSpecialCivCars ( ) ;
2020-04-10 13:56:11 +02:00
gCarDamModelPtr [ 4 ] = NULL ;
gCarCleanModelPtr [ 4 ] = NULL ;
gCarLowModelPtr [ 4 ] = NULL ;
specspooldata [ 2 ] = 5 ;
2020-04-04 06:49:28 +02:00
specModelValid = ' \0 ' ;
startSpecSpool = CameraCnt ;
MissionHeader - > residentModels [ 4 ] = 0xc ;
specialState = 0 ;
specBlocksToLoad = 0 ;
SpecialStartNextBlock ( ) ;
2020-03-27 21:47:29 +01:00
}
// decompiled code
// original method signature:
// void /*$ra*/ InitSpecSpool()
// line 3063, offset 0x0007d6d8
/* begin block 1 */
// Start line: 7058
/* end block 1 */
// End Line: 7059
/* begin block 2 */
// Start line: 7059
/* end block 2 */
// End Line: 7060
/* begin block 3 */
// Start line: 7064
/* end block 3 */
// End Line: 7065
/* WARNING: Unknown calling convention yet parameter storage is locked */
2020-04-10 13:56:11 +02:00
// [D]
2020-03-27 21:47:29 +01:00
void InitSpecSpool ( void )
{
2020-04-04 06:49:28 +02:00
if ( ( ( ( ( ( ( gCurrentMissionNumber = = 2 ) | | ( gCurrentMissionNumber = = 4 ) ) | |
( gCurrentMissionNumber = = 6 ) ) | |
( ( ( ( gCurrentMissionNumber = = 7 | | ( gCurrentMissionNumber = = 10 ) ) | |
( ( gCurrentMissionNumber = = 0xb | |
2020-04-10 13:56:11 +02:00
( ( gCurrentMissionNumber = = 0xc | | ( gCurrentMissionNumber = = 0xd ) ) ) ) ) ) | |
( gCurrentMissionNumber = = 0x10 ) ) ) ) | |
( ( ( ( ( gCurrentMissionNumber = = 0x12 | | ( gCurrentMissionNumber = = 0x13 ) ) | |
2020-04-04 06:49:28 +02:00
( gCurrentMissionNumber = = 0x14 ) ) | |
2020-04-10 13:56:11 +02:00
( ( gCurrentMissionNumber = = 0x18 | | ( gCurrentMissionNumber = = 0x1a ) ) ) ) | |
( ( gCurrentMissionNumber = = 0x1b | |
( ( gCurrentMissionNumber = = 0x1d | | ( gCurrentMissionNumber = = 0x1e ) ) ) ) ) ) ) ) | |
( ( ( ( ( gCurrentMissionNumber = = 0x1f | |
2020-04-04 06:49:28 +02:00
( ( ( ( ( gCurrentMissionNumber = = 0x21 | | ( gCurrentMissionNumber = = 0x23 ) ) | |
2020-04-10 13:56:11 +02:00
( gCurrentMissionNumber = = 0x26 ) ) | |
( ( gCurrentMissionNumber = = 0x27 | | ( gCurrentMissionNumber = = 0x28 ) ) ) ) | |
( gCurrentMissionNumber = = 0x3a ) ) ) ) | |
( ( ( ( gCurrentMissionNumber = = 0x3b | | ( gCurrentMissionNumber = = 0x3c ) ) | |
( ( gCurrentMissionNumber = = 0x3d | |
( ( ( gCurrentMissionNumber = = 0x3e | | ( gCurrentMissionNumber = = 0x3f ) ) | |
( gCurrentMissionNumber = = 0x40 ) ) ) ) ) ) | |
( ( ( gCurrentMissionNumber = = 0x41 | | ( gCurrentMissionNumber = = 0x46 ) ) | |
( gCurrentMissionNumber = = 0x4e ) ) ) ) ) ) | |
( ( ( gCurrentMissionNumber = = 0x56 | | ( gCurrentMissionNumber = = 0x5e ) ) | |
( ( gCurrentMissionNumber = = 0x1f2 | |
( ( ( gCurrentMissionNumber = = 499 | | ( gCurrentMissionNumber = = 500 ) ) | |
( gCurrentMissionNumber = = 0x1f5 ) ) ) ) ) ) ) ) | |
( ( ( gCurrentMissionNumber = = 0x1f6 | | ( gCurrentMissionNumber = = 0x1f7 ) ) | |
( ( gCurrentMissionNumber = = 0x1f8 | |
( ( ( ( gCurrentMissionNumber = = 0x1f9 | | ( gCurrentMissionNumber = = 0xe4 ) ) | |
( ( gCurrentMissionNumber = = 0xe5 | |
( ( ( ( gCurrentMissionNumber = = 0xec | | ( gCurrentMissionNumber = = 0xed ) ) | |
( gCurrentMissionNumber = = 0xf4 ) ) | |
( ( gCurrentMissionNumber = = 0xf5 | | ( gCurrentMissionNumber = = 0xfc ) ) ) ) ) ) ) ) | |
( gCurrentMissionNumber = = 0xfd ) ) ) ) ) ) ) ) ) ) | |
( ( ( gCurrentMissionNumber = = 0x1a4 | | ( gCurrentMissionNumber = = 0x1a5 ) ) | |
2020-04-04 06:49:28 +02:00
( ( ( ( ( ( gCurrentMissionNumber = = 0x1ac | |
2020-04-10 13:56:11 +02:00
( ( ( gCurrentMissionNumber = = 0x1ad | | ( gCurrentMissionNumber = = 0x1b4 ) ) | |
( gCurrentMissionNumber = = 0x1b5 ) ) ) ) | |
( ( ( gCurrentMissionNumber = = 0x1bc | | ( gCurrentMissionNumber = = 0x1bd ) ) | |
( gCurrentMissionNumber = = 0x160 ) ) ) ) | |
( ( gCurrentMissionNumber = = 0x161 | | ( gCurrentMissionNumber = = 0x168 ) ) ) ) | |
( ( gCurrentMissionNumber = = 0x169 | |
( ( ( gCurrentMissionNumber = = 0x170 | | ( gCurrentMissionNumber = = 0x171 ) ) | |
( gCurrentMissionNumber = = 0x178 ) ) ) ) ) ) | |
( ( ( ( gCurrentMissionNumber = = 0x179 | | ( gCurrentMissionNumber = = 0x1e0 ) ) | |
( gCurrentMissionNumber = = 0x1e1 ) ) | |
( ( ( gCurrentMissionNumber = = 0x1e2 | | ( gCurrentMissionNumber = = 0x1e3 ) ) | |
( ( gCurrentMissionNumber = = 0x1e4 | |
( ( ( gCurrentMissionNumber = = 0x1e5 | | ( gCurrentMissionNumber = = 0x1e6 ) ) | |
( gCurrentMissionNumber = = 0x1e7 ) ) ) ) ) ) ) ) ) ) ) ) ) ) // xD
{
2020-04-04 06:49:28 +02:00
allowSpecSpooling = 0 ;
}
else {
2020-04-20 06:55:53 +02:00
UNIMPLEMENTED ( ) ;
//allowSpecSpooling = 1; // [A] temporarily disabled
allowSpecSpooling = 0 ;
2020-04-04 06:49:28 +02:00
}
2020-04-10 13:56:11 +02:00
specModelValid = 1 ;
2020-04-04 06:49:28 +02:00
specialState = 0 ;
specBlocksToLoad = 0 ;
quickSpool = 0 ;
specSpoolComplete = 0 ;
startSpecSpool = - 1 ;
2020-03-27 21:47:29 +01:00
}