- #include "pratcam.h" 
- #include "brender.h" 
- #include "displays.h" 
- #include "errors.h" 
- #include "flicplay.h" 
- #include "globvars.h" 
- #include "globvrpb.h" 
- #include "grafdata.h" 
- #include "graphics.h" 
- #include "harness/trace.h" 
- #include "input.h" 
- #include "loading.h" 
- #include "pd/sys.h" 
- #include "sound.h" 
- #include "utility.h" 
- #include <stdlib.h> 
-   
- tS3_sound_tag gWhirr_noise = 0; 
- tFlic_descriptor gPrat_flic; 
- tPrat_sequence* gPratcam_sequences; 
- tPrat_flic_spec* gPratcam_flics; 
- int gCurrent_pratcam_chunk; 
- int gPending_ambient_prat; 
- int gCurrent_pratcam_index; 
- br_pixelmap* gPrat_buffer; 
- int gNumber_of_prat_sequences; 
- int gNumber_of_prat_flics; 
- tU32 gLast_pratcam_frame_time; 
- int gCurrent_pratcam_precedence; 
- int gCurrent_ambient_prat_sequence; 
- int gCurrent_pratcam_alternative; 
-   
- // IDA: int __cdecl PratcamGetCurrent() 
- int PratcamGetCurrent(void) { 
-     LOG_TRACE("()"); 
-   
-     return gCurrent_pratcam_index; 
- } 
-   
- // IDA: int __cdecl PratcamGetAmbient() 
- int PratcamGetAmbient(void) { 
-     LOG_TRACE("()"); 
-   
-     return gCurrent_ambient_prat_sequence; 
- } 
-   
- // IDA: int __cdecl PratcamGetPending() 
- int PratcamGetPending(void) { 
-     LOG_TRACE("()"); 
-   
-     return gPending_ambient_prat; 
- } 
-   
- // IDA: void __cdecl TogglePratcam() 
- void TogglePratcam(void) { 
-     tU32 the_time; 
-     tU32 time_diff; 
-     LOG_TRACE("()"); 
-   
-     if (gAusterity_mode) { 
-         NewTextHeadupSlot(4, 0, 1000, -4, GetMiscString(kMiscString_NOT_ENOUGH_MEMORY)); 
-     } else { 
-         if (gWhirr_noise == 0 || !DRS3SoundStillPlaying(gWhirr_noise)) { 
-             DRS3StopSound(gWhirr_noise); 
-             gWhirr_noise = DRS3StartSoundNoPiping(gCar_outlet, 1000); 
-             DRS3ChangePitchSpeed(gWhirr_noise, 19660); 
-         } 
-         the_time = GetTotalTime(); 
-         gProgram_state.prat_cam_on = !gProgram_state.prat_cam_on; 
-         time_diff = the_time - gProgram_state.pratcam_move_start; 
-         gProgram_state.pratcam_move_start = the_time; 
-         if (time_diff <= 400) { 
-             gProgram_state.pratcam_move_start = the_time - 400 + time_diff; 
-         } 
-     } 
- } 
-   
- // IDA: void __usercall LoadPratcam(char *pFolder_name@<EAX>) 
- void LoadPratcam(char* pFolder_name) { 
-     FILE* f; 
-     FILE* g; 
-     tPath_name the_path; 
-     int i; 
-     int j; 
-     int k; 
-     int l; 
-     char s[256]; 
-     char folder_path[256]; 
-     char* str; 
-     char num_str[256]; 
-     LOG_TRACE("(\"%s\")", pFolder_name); 
-   
-     if (gAusterity_mode) { 
-         return; 
-     } 
-     PathCat(folder_path, gApplication_path, gGraf_specs[gGraf_spec_index].data_dir_name); 
-     PathCat(folder_path, folder_path, "PRATCAM"); 
-     PathCat(folder_path, folder_path, pFolder_name); 
-     PathCat(the_path, folder_path, "PRATCAM.TXT"); 
-     f = DRfopen(the_path, "rt"); 
-     if (f == NULL) { 
-         FatalError(kFatalError_OpenPratCamTextFile); 
-     } 
-     GetALineAndDontArgue(f, s); 
-     sscanf(- str , "%d", &- gNumber_of_prat_flics );
 
-     gPratcam_flics = BrMemAllocate(gNumber_of_prat_flics * sizeof(tPrat_flic_spec), kMem_pratcam_flic_array); 
-     for (i = 0; i < gNumber_of_prat_flics; i++) { 
-         PossibleService(); 
-         GetALineAndDontArgue(f, s); 
-             FatalError(kFatalError_TooFewFlicSpecsInPratCamFile); 
-         } 
-         PathCat(the_path, folder_path, str); 
-         g = DRfopen(the_path, "rb"); 
-         if (g == NULL) { 
-             FatalError(kFatalError_OpenPratCamFlicFile_S, str); 
-         } 
-         gPratcam_flics[i].data_length = GetFileLength(g); 
-         gPratcam_flics[i].data = BrMemAllocate(gPratcam_flics[i].data_length, kMem_pratcam_flic_data); 
-         if (gPratcam_flics[i].data == NULL) { 
-             FatalError(kFatalError_AllocateMemoryPratCamFlicFile); 
-         } 
-         fread(- gPratcam_flics [- i ]- . data, 1,-  gPratcam_flics [- i ]- . data_length,-  g );
 
-     } 
-     GetALineAndDontArgue(f, s); 
-         FatalError(kFatalError_TooManyFlicSpecsInPratCamTextFIle); 
-     } 
-     GetALineAndDontArgue(f, s); 
-     sscanf(- str , "%d", &- gNumber_of_prat_sequences );
 
-     gPratcam_sequences = BrMemAllocate(gNumber_of_prat_sequences * sizeof(tPrat_sequence), kMem_pratcam_sequence_array); 
-     for (i = 0; i < gNumber_of_prat_sequences; i++) { 
-         PossibleService(); 
-         GetALineAndDontArgue(f, s); 
-             FatalError(kFatalError_TooFewSequencesInPratCamTextFile); 
-         } 
-         sscanf(- str , "%d", &- gPratcam_sequences [- i ]- . precedence);
 
-         gPratcam_sequences[i].repeat_chunk = GetAnInt(f); 
-         gPratcam_sequences[i].number_of_chunks = GetAnInt(f); 
-         if (gPratcam_sequences[i].number_of_chunks > COUNT_OF(gPratcam_sequences[i].chunks)) { 
-             FatalError(kFatalError_PratCamSequenceTooManyChunks_S, num_str); 
-         } 
-         for (j = 0; j < gPratcam_sequences[i].number_of_chunks; j++) { 
-             GetALineAndDontArgue(f, s); 
-             sscanf(- str , "%d", &- gPratcam_sequences [- i ]- . chunks[- j ]- . number_of_alternatives);
 
-             if (gPratcam_sequences[i].chunks[j].number_of_alternatives > COUNT_OF(gPratcam_sequences[i].chunks[j].alternatives)) { 
-                 FatalError(kFatalError_PratCamSequenceTooManyAlternatives_S, num_str); 
-             } 
-             for (k = 0; k < gPratcam_sequences[i].chunks[j].number_of_alternatives; k++) { 
-                 GetALineAndDontArgue(f, s); 
-                 sscanf(- str , "%d", &- gPratcam_sequences [- i ]- . chunks[- j ]- . alternatives[- k ]- . ref);
 
-                 sscanf(- str , "%d", &- gPratcam_sequences [- i ]- . chunks[- j ]- . alternatives[- k ]- . chance);
 
-                 sscanf(- str , "%d", &- gPratcam_sequences [- i ]- . chunks[- j ]- . alternatives[- k ]- . sound_chance);
 
-                 if (gPratcam_sequences[i].chunks[j].alternatives[k].sound_chance > 0) { 
-                     sscanf(- str , "%d", &- gPratcam_sequences [- i ]- . chunks[- j ]- . alternatives[- k ]- . number_of_sounds);
 
-                     if (gPratcam_sequences[i].chunks[j].alternatives[k].number_of_sounds > COUNT_OF(gPratcam_sequences[i].chunks[j].alternatives[k].sound_ids)) { 
-                         FatalError(kFatalError_PratCamSequenceTooManySounds_S, num_str); 
-                     } 
-                     for (l = 0; l < gPratcam_sequences[i].chunks[j].alternatives[k].number_of_sounds; l++) { 
-                         sscanf(- str , "%d", &- gPratcam_sequences [- i ]- . chunks[- j ]- . alternatives[- k ]- . sound_ids[- l ]);
 
-                         DRS3LoadSound(gPratcam_sequences[i].chunks[j].alternatives[k].sound_ids[l]); 
-                     } 
-                 } 
-             } 
-         } 
-     } 
-     GetALineAndDontArgue(f, s); 
-         FatalError(kFatalError_TooManySequencesInPratCamTextFile); 
-     } 
- } 
-   
- // IDA: void __cdecl NextPratcamChunk() 
- void NextPratcamChunk(void) { 
-     int i; 
-     int random_number; 
-     int count; 
-     tPrat_alternative* current_alternative; 
-     LOG_TRACE("()"); 
-   
-     if (gCurrent_pratcam_index == -1) { 
-         gCurrent_pratcam_index = gCurrent_ambient_prat_sequence; 
-     } else { 
-         EndFlic(&gPrat_flic); 
-     } 
-     count = gCurrent_pratcam_chunk; 
-     gCurrent_pratcam_chunk++; 
-     if (gPratcam_sequences[gCurrent_pratcam_index].number_of_chunks <= count) { 
-         if (gPending_ambient_prat == -1) { 
-             ChangeAmbientPratcamNow(gCurrent_ambient_prat_sequence, gPratcam_sequences[gCurrent_pratcam_index].repeat_chunk); 
-         } else { 
-             ChangeAmbientPratcamNow(gPending_ambient_prat, 0); 
-         } 
-     } else { 
-         gLast_pratcam_frame_time = 0; 
-         random_number = IRandomBetween(0, 99); 
-         for (i = 0; i < gPratcam_sequences[gCurrent_pratcam_index].chunks[gCurrent_pratcam_chunk].number_of_alternatives; i++) { 
-             current_alternative = &gPratcam_sequences[gCurrent_pratcam_index].chunks[gCurrent_pratcam_chunk].alternatives[i]; 
-             random_number -= current_alternative->chance; 
-             if (random_number <= 0) { 
-                 gCurrent_pratcam_alternative = i; 
-                 gPrat_flic.data_start = NULL; 
-                 StartFlic(NULL, -1, &gPrat_flic, gPratcam_flics[current_alternative->ref].data_length, 
-                     (tS8*)gPratcam_flics[current_alternative->ref].data, gPrat_buffer, 0, 0, 0); 
-                 if (current_alternative->sound_chance == 0) { 
-                     return; 
-                 } 
-                 if (!PercentageChance(current_alternative->sound_chance)) { 
-                     return; 
-                 } 
-                 if (gCurrent_pratcam_precedence == 0 && DRS3OutletSoundsPlaying(gDriver_outlet)) { 
-                     return; 
-                 } 
-                 DRS3StartSound(gDriver_outlet, current_alternative->sound_ids[IRandomBetween(0, current_alternative->number_of_sounds - 1)]); 
-                 return; 
-             } 
-         } 
-         NextPratcamChunk(); 
-     } 
- } 
-   
- // IDA: void __usercall NewPratcamSequence(int pSequence_index@<EAX>, int pStart_chunk@<EDX>) 
- void NewPratcamSequence(int pSequence_index, int pStart_chunk) { 
-     LOG_TRACE("(%d, %d)", pSequence_index, pStart_chunk); 
-   
-     gCurrent_pratcam_precedence = gPratcam_sequences[pSequence_index].precedence; 
-     gCurrent_pratcam_index = pSequence_index; 
-     gCurrent_pratcam_chunk = pStart_chunk - 1; 
-     NextPratcamChunk(); 
- } 
-   
- // IDA: void __usercall ChangeAmbientPratcamNow(int pIndex@<EAX>, int pStart_chunk@<EDX>) 
- void ChangeAmbientPratcamNow(int pIndex, int pStart_chunk) { 
-     LOG_TRACE("(%d, %d)", pIndex, pStart_chunk); 
-   
-     gCurrent_ambient_prat_sequence = pIndex; 
-     gPending_ambient_prat = -1; 
-     NewPratcamSequence(pIndex, pStart_chunk); 
- } 
-   
- // IDA: void __usercall ChangeAmbientPratcam(int pIndex@<EAX>) 
- void ChangeAmbientPratcam(int pIndex) { 
-     LOG_TRACE("(%d)", pIndex); 
-   
-     if (gRace_finished) { 
-         return; 
-     } 
-     if (gInterface_within_race_mode) { 
-         return; 
-     } 
-     if (pIndex == gCurrent_ambient_prat_sequence) { 
-         return; 
-     } 
-     if (!gProgram_state.prat_cam_on) { 
-         return; 
-     } 
-   
-     if (gCurrent_pratcam_index == -1) { 
-         ChangeAmbientPratcamNow(pIndex, 0); 
-     } else { 
-         gPending_ambient_prat = pIndex; 
-     } 
- } 
-   
- // IDA: void __usercall PratcamEventNow(int pIndex@<EAX>) 
- void PratcamEventNow(int pIndex) { 
-     LOG_TRACE("(%d)", pIndex); 
-   
-     NewPratcamSequence(pIndex, 0); 
-     gPending_ambient_prat = -1; 
- } 
-   
- // IDA: void __usercall PratcamEvent(int pIndex@<EAX>) 
- void PratcamEvent(int pIndex) { 
-     LOG_TRACE("(%d)", pIndex); 
-   
-     if (gRace_finished) { 
-         return; 
-     } 
-     if (gInterface_within_race_mode) { 
-         return; 
-     } 
- #if defined(DETHRACE_FIX_BUGS) 
-     // In low memory mode, `gPratcam_sequences`is not allocated and thus unsafe to access 
-     if (gAusterity_mode) { 
-         return; 
-     } 
- #endif 
-     if (gPratcam_sequences[pIndex].precedence <= gCurrent_pratcam_precedence) { 
-         return; 
-     } 
-     if (!gProgram_state.prat_cam_on) { 
-         return; 
-     } 
-     PratcamEventNow(pIndex); 
- } 
-   
- // IDA: int __cdecl HighResPratBufferWidth() 
- int HighResPratBufferWidth(void) { 
-     //int prat_width; // Pierre-Marie Baty -- unused variable 
-     LOG_TRACE("()"); 
-     NOT_IMPLEMENTED(); 
- } 
-   
- // IDA: int __cdecl HighResPratBufferHeight() 
- int HighResPratBufferHeight(void) { 
-     //int prat_height; // Pierre-Marie Baty -- unused variable 
-     LOG_TRACE("()"); 
-     NOT_IMPLEMENTED(); 
- } 
-   
- // IDA: void __cdecl InitPratcam() 
- void InitPratcam(void) { 
-     void* the_pixels; 
-     LOG_TRACE("()"); 
-   
-     if (gAusterity_mode) { 
-         return; 
-     } 
-     gWhirr_noise = 0; 
-     gPrat_flic.data = NULL; 
-     gCurrent_ambient_prat_sequence = -1; 
-     switch (gGraf_data_index) { 
-     case 0: 
-         the_pixels = BrMemAllocate(52 * 46, kMem_pratcam_pixelmap); 
-         break; 
-     case 1: 
-         the_pixels = BrMemAllocate(104 * 110, kMem_pratcam_pixelmap); 
-         break; 
-     default: 
-         TELL_ME_IF_WE_PASS_THIS_WAY(); 
-     } 
-     if (gScreen->row_bytes < 0) { 
-         BrFatal("C:\\Msdev\\Projects\\DethRace\\Pratcam.c", 409, "Bruce bug at line %d, file C:\\Msdev\\Projects\\DethRace\\Pratcam.c", 409); 
-     } 
-     switch (gGraf_data_index) { 
-     case 0: 
-         gPrat_buffer = DRPixelmapAllocate(gScreen->type, 52, 46, the_pixels, 0); 
-         break; 
-     case 1: 
-         gPrat_buffer = DRPixelmapAllocate(gScreen->type, 104, 110, the_pixels, 0); 
-         break; 
-     default: 
-         TELL_ME_IF_WE_PASS_THIS_WAY(); 
-     } 
-     gCurrent_pratcam_index = -1; 
-     gPending_ambient_prat = -1; 
-     gCurrent_pratcam_precedence = 0; 
-     if (gNet_mode == eNet_mode_none) { 
-         if (gProgram_state.frank_or_anniness == eFrankie) { 
-             LoadPratcam("FRANK"); 
-         } else { 
-             LoadPratcam("ANNIE"); 
-         } 
-     } else if (gNet_players[gThis_net_player_index].car_index == 1 || gNet_players[gThis_net_player_index].car_index > 34) { 
-         LoadPratcam("ANNIE"); 
-     } else { 
-         LoadPratcam("FRANK"); 
-     } 
- } 
-   
- // IDA: void __cdecl DisposePratcam() 
- void DisposePratcam(void) { 
-     int i; 
-     int j; 
-     int k; 
-     int l; 
-     LOG_TRACE("()"); 
-   
-     if (gAusterity_mode) { 
-         return; 
-     } 
-     if (gWhirr_noise != 0) { 
-         DRS3StopSound(gWhirr_noise); 
-         gWhirr_noise = 0; 
-     } 
-     if (gCurrent_pratcam_index != -1) { 
-         EndFlic(&gPrat_flic); 
-     } 
-     BrMemFree(gPrat_buffer->pixels); 
-     BrPixelmapFree(gPrat_buffer); 
-     for (i = 0; i < gNumber_of_prat_flics; i++) { 
-         BrMemFree(gPratcam_flics[i].data); 
-     } 
-     for (i = 0; i < gNumber_of_prat_sequences; i++) { 
-         for (j = 0; j < gPratcam_sequences[i].number_of_chunks; j++) { 
-             for (k = 0; k < gPratcam_sequences[i].chunks[j].number_of_alternatives; k++) { 
-                 for (l = 0; l < gPratcam_sequences[i].chunks[j].alternatives[k].number_of_sounds; l++) { 
-                     DRS3ReleaseSound(gPratcam_sequences[i].chunks[j].alternatives[k].sound_ids[l]); 
-                 } 
-             } 
-         } 
-     } 
-     BrMemFree(gPratcam_flics); 
-     BrMemFree(gPratcam_sequences); 
- } 
-   
- // IDA: void __usercall DoPratcam(tU32 pThe_time@<EAX>) 
- void DoPratcam(tU32 pThe_time) { 
-     tU32 i; // Pierre-Marie Baty -- fixed type 
-     int offset; 
-     int y_offset; 
-     int top_border_height; 
-     int prat_cam_move_width; 
-     int right_hand; 
-     tU32 time_diff; 
-     tU32 old_last_time; 
-     //br_pixelmap* the_image; // Pierre-Marie Baty -- unused variable 
-     br_pixelmap* left_image; 
-     br_pixelmap* right_image; 
-     LOG_TRACE("(%d)", pThe_time); 
-   
-     if (gAusterity_mode) { 
-         return; 
-     } 
-     left_image = gProgram_state.current_car.prat_cam_right; 
-     right_image = gProgram_state.current_car.prat_cam_left; 
-     y_offset = (gNet_mode == eNet_mode_none) ? 0 : gCurrent_graf_data->net_head_box_bot + 1; 
-   
-     right_hand = gProgram_state.current_car.prat_left <= gBack_screen->width / 2; 
-     if (right_hand) { 
-         prat_cam_move_width = gProgram_state.current_car.prat_right + (right_image != NULL ? right_image->width : 0); 
-     } else { 
-         prat_cam_move_width = gBack_screen->width - gProgram_state.current_car.prat_left + (left_image != NULL ? left_image->width : 0); 
-     } 
-     time_diff = pThe_time - gProgram_state.pratcam_move_start; 
-     if (time_diff <= 400) { 
-         offset = prat_cam_move_width * time_diff / (float)400; 
-     } else { 
-         if (gWhirr_noise) { 
-             DRS3StopSound(gWhirr_noise); 
-             gWhirr_noise = 0; 
-         } 
-         if (!gProgram_state.prat_cam_on) { 
-             gCurrent_pratcam_index = -1; 
-             gCurrent_pratcam_precedence = 0; 
-             gPending_ambient_prat = -1; 
-             return; 
-         } 
-         offset = prat_cam_move_width; 
-     } 
-   
-     old_last_time = gLast_pratcam_frame_time; 
-     if (gProgram_state.prat_cam_on) { 
-         offset = prat_cam_move_width - offset; 
-     } 
-     if (right_hand) { 
-         offset = -offset; 
-     } 
-     DontLetFlicFuckWithPalettes(); 
-     DisableTranslationText(); 
-     for (i = 0; i < (old_last_time != 0 ? ((pThe_time - old_last_time) / gPrat_flic.frame_period) : 1); i++) { 
-         if (PlayNextFlicFrame(&gPrat_flic)) { 
-             NextPratcamChunk(); 
-             break; 
-         } 
-         gLast_pratcam_frame_time = pThe_time; 
-     } 
-     EnableTranslationText(); 
-     LetFlicFuckWithPalettes(); 
-     BrPixelmapRectangleCopy(gBack_screen, 
-         gProgram_state.current_car.prat_left + offset, 
-         gProgram_state.current_car.prat_top + y_offset, 
-         gPrat_buffer, 
-         0, 0, 
-         gPrat_buffer->width, gPrat_buffer->height); 
-     if (gProgram_state.current_car.prat_cam_top != NULL) { 
-         top_border_height = gProgram_state.current_car.prat_cam_top->height; 
-         DRPixelmapRectangleMaskedCopy( 
-             gBack_screen, 
-             gProgram_state.current_car.prat_left + offset, 
-             gProgram_state.current_car.prat_top - top_border_height + y_offset, 
-             gProgram_state.current_car.prat_cam_top, 
-             0, 0, 
-             gProgram_state.current_car.prat_cam_top->width, 
-             gProgram_state.current_car.prat_cam_top->height); 
-     } else { 
-         top_border_height = 0; 
-     } 
-     if (right_image != NULL) { 
-         DRPixelmapRectangleMaskedCopy(gBack_screen, 
-             gProgram_state.current_car.prat_left - right_image->width + offset, 
-             gProgram_state.current_car.prat_top - top_border_height + y_offset, 
-             right_image, 
-             0, 0, 
-             right_image->width, right_image->height); 
-     } 
-     if (left_image != NULL) { 
-         DRPixelmapRectangleMaskedCopy( 
-             gBack_screen, 
-             gProgram_state.current_car.prat_right + offset - 1, 
-             gProgram_state.current_car.prat_top - top_border_height - 1 + y_offset, 
-             left_image, 
-             0, 0, 
-             left_image->width, left_image->height); 
-     } 
-     if (gProgram_state.current_car.prat_cam_bottom != NULL) { 
-         DRPixelmapRectangleMaskedCopy( 
-             gBack_screen, 
-             gProgram_state.current_car.prat_left + offset, 
-             gProgram_state.current_car.prat_bottom + y_offset, 
-             gProgram_state.current_car.prat_cam_bottom, 
-             0, 0, 
-             gProgram_state.current_car.prat_cam_bottom->width, 
-             gProgram_state.current_car.prat_cam_bottom->height); 
-     } 
- } 
-   
- // IDA: void __usercall TestPratCam(int pIndex@<EAX>) 
- void TestPratCam(int pIndex) { 
-     LOG_TRACE("(%d)", pIndex); 
-   
-     if (PDKeyDown(KEY_CTRL_ANY)) { 
-         pIndex += 40; 
-     } 
-     if (PDKeyDown(KEY_ALT_ANY)) { 
-         pIndex += 20; 
-     } 
-     if (PDKeyDown(KEY_SHIFT_ANY)) { 
-         pIndex += 10; 
-     } 
-     PratcamEventNow(pIndex); 
- } 
-   
- // IDA: void __cdecl PratCam0() 
- void PratCam0(void) { 
-     LOG_TRACE("()"); 
-   
-     TestPratCam(0); 
- } 
-   
- // IDA: void __cdecl PratCam1() 
- void PratCam1(void) { 
-     LOG_TRACE("()"); 
-   
-     TestPratCam(1); 
- } 
-   
- // IDA: void __cdecl PratCam2() 
- void PratCam2(void) { 
-     LOG_TRACE("()"); 
-   
-     TestPratCam(2); 
- } 
-   
- // IDA: void __cdecl PratCam3() 
- void PratCam3(void) { 
-     LOG_TRACE("()"); 
-   
-     TestPratCam(3); 
- } 
-   
- // IDA: void __cdecl PratCam4() 
- void PratCam4(void) { 
-     LOG_TRACE("()"); 
-   
-     TestPratCam(4); 
- } 
-   
- // IDA: void __cdecl PratCam5() 
- void PratCam5(void) { 
-     LOG_TRACE("()"); 
-   
-     TestPratCam(5); 
- } 
-   
- // IDA: void __cdecl PratCam6() 
- void PratCam6(void) { 
-     LOG_TRACE("()"); 
-   
-     TestPratCam(6); 
- } 
-   
- // IDA: void __cdecl PratCam7() 
- void PratCam7(void) { 
-     LOG_TRACE("()"); 
-   
-     TestPratCam(7); 
- } 
-   
- // IDA: void __cdecl PratCam8() 
- void PratCam8(void) { 
-     LOG_TRACE("()"); 
-   
-     TestPratCam(8); 
- } 
-   
- // IDA: void __cdecl PratCam9() 
- void PratCam9(void) { 
-     LOG_TRACE("()"); 
-   
-     TestPratCam(9); 
- } 
-