Advertisement
Kitomas

work for 2024-12-13 (1/2)

Dec 13th, 2024
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 26.68 KB | None | 0 0
  1. /******************************************************************************/
  2. /******************************************************************************/
  3. //"2024-12-13\iso_game\callbacks.cpp":
  4. #include <include_all.hpp>
  5.  
  6. using namespace kit;
  7.  
  8.  
  9.  
  10.  
  11.  
  12. void cb_music_fade_in(void* userdata_a, void* userdata_b);
  13. void cb_music_fade_out(void* userdata_a, void* userdata_b);
  14.  
  15. AudioDevice* audio = nullptr;
  16. bool  audioIsReady = false;
  17.  
  18. SoundEngine* sfx = nullptr;
  19.  
  20. s32         music_index      = -1;
  21. Stereo_f32  music_vol        = {1.0f, 1.0f};
  22. Xmp*        music            = nullptr;
  23. Stereo_s16* music_buffer_src = nullptr;
  24. Stereo_f32* music_buffer_dst = nullptr;
  25. AudioFade   music_fade       = {cb_music_fade_in, cb_music_fade_out};
  26.  
  27.  
  28.  
  29.  
  30.  
  31. struct music_id_t { u32 name_index, pos = 0; }; //8B
  32.  
  33. #define MUSIC_NAME_musicbox1_v1      0
  34.  
  35. #define MUSIC_NAME_PREFIX "dat/music/"
  36.  
  37. static const char* music_names[] = {
  38.   MUSIC_NAME_PREFIX "musicbox1_v1.xm",
  39. };
  40.  
  41. #define MUSIC_IDS_LEN (sizeof(music_ids)/sizeof(music_id_t))
  42.  
  43. static music_id_t music_ids[] = {
  44.   {MUSIC_NAME_musicbox1_v1, 0},
  45.   {MUSIC_NAME_musicbox1_v1, 2},
  46.   {MUSIC_NAME_musicbox1_v1, 6},
  47. };
  48.  
  49.  
  50.  
  51.  
  52.  
  53. bool music_playing = false;
  54.  
  55. void cb_music_fade_in(void* userdata_a, void* userdata_b){
  56.   u32 sampleRate = (u32)(u64)userdata_a; //lol
  57.   (void)userdata_b;
  58.  
  59.   if(!sampleRate  ||  !music  ||  music_index < 0){
  60.     music_fade.fadeIn = false;
  61.     return;
  62.   }
  63.  
  64.   if((u32)music_index >= MUSIC_IDS_LEN){ kit_LogError("music_index >= MUSIC_IDS_LEN"); return; }
  65.  
  66.   music_id_t id = music_ids[music_index];
  67.   const char* name = music_names[id.name_index];
  68.  
  69.   if(name == nullptr){ kit_LogError("music name = nullptr"); return; }
  70.   if(!fileio::exists(name)){ kit_LogError("music module \"%s\" doesn't exist", name); return; }
  71.  
  72.   s32 result = music->moduleLoad(name);
  73.   if(result){ kit_LogError("failed to load music module \"%s\": code = %i", name, result); return; }
  74.  
  75.   result = music->playerStart(sampleRate);
  76.   if(result){ kit_LogError("failed to start music player: code = %i", result); return; }
  77.  
  78.   music->setPlayerPosition(id.pos);
  79.  
  80.   music_playing = true;
  81.  
  82. }
  83.  
  84.  
  85.  
  86.  
  87.  
  88. void cb_music_fade_out(void* userdata_a, void* userdata_b){
  89.   (void)userdata_a;
  90.   (void)userdata_b;
  91.  
  92.   if(!music) return;
  93.  
  94.   music->moduleStop();
  95.   music->moduleRelease();
  96.   music->playerEnd();
  97.  
  98.   if(music_index >= 0) music_fade.fadeIn = true;
  99.  
  100.   music_playing = false;
  101.  
  102. }
  103.  
  104.  
  105.  
  106.  
  107.  
  108. #define src music_buffer_src
  109. #define dst music_buffer_dst
  110.  
  111. #define EQ_1f(_stereo_smp) \
  112.   ((_stereo_smp).l==1.0f && (_stereo_smp).r==1.0f)
  113.  
  114. #define EQ_smp(_stereo_smp_a, _stereo_smp_b) \
  115.   ((_stereo_smp_a).l==(_stereo_smp_b).l && (_stereo_smp_a).r==(_stereo_smp_b).r)
  116.  
  117. Stereo_f32 music_vol_old = music_vol;
  118.  
  119. static s32 cb_music_thread(void* userdata){
  120.   s32 result = 0;
  121.  
  122.   u32 dst_len  = (u32)(u64)userdata; //lol
  123.   u32 dst_size = dst_len*sizeof(Stereo_f32);
  124.   u32 src_size = dst_len*sizeof(Stereo_s16);
  125.  
  126.  
  127.   if(!music || !src || !dst){
  128.     result = -KIT_XMP_ERROR_STATE; _err:
  129.     if(dst) memory::set(dst, 0, dst_size);
  130.     return result;
  131.  
  132.   }
  133.  
  134.  
  135.   f32       t     = 0.0f;
  136.   const f32 t_inc = 1.0f/dst_len;
  137.  
  138.   if(music_playing){
  139.     result = music->playBuffer(src, src_size, true);
  140.     if(result) goto _err;
  141.  
  142.     if(EQ_1f(music_vol_old) && EQ_1f(music_vol)){ //no need to multiply at all
  143.       for(u32 i=0; i<dst_len; ++i){
  144.         dst[i].l = ((f32)src[i].l/32768);
  145.         dst[i].r = ((f32)src[i].r/32768);
  146.       }
  147.  
  148.     } else if(EQ_smp(music_vol_old, music_vol)){ //no need to interpolate
  149.       for(u32 i=0; i<dst_len; ++i){
  150.         dst[i].l = ((f32)src[i].l/32768) * music_vol.l;
  151.         dst[i].r = ((f32)src[i].r/32768) * music_vol.r;
  152.       }
  153.  
  154.     } else { //must interpolate between old and new
  155.       for(u32 i=0; i<dst_len; ++i){
  156.         dst[i].l = ((f32)src[i].l/32768) * LERP2(music_vol.l, music_vol_old.l, t);
  157.         dst[i].r = ((f32)src[i].r/32768) * LERP2(music_vol.r, music_vol_old.r, t);
  158.         t += t_inc;
  159.       }
  160.  
  161.     }
  162.  
  163.   } else {
  164.     memory::set(dst, 0, dst_size);
  165.  
  166.   }
  167.  
  168.  
  169.   if(music_index < 0) music_fade.fadeIn = false;
  170.   music_fade.applyFade(&dst->l, dst_len*2, 2);
  171.  
  172.   music_vol_old = music_vol;
  173.  
  174.   return result;
  175.  
  176. }
  177.  
  178. #undef src
  179. #undef dst
  180.  
  181.  
  182.  
  183.  
  184.  
  185. s32 cb_audio(void* _dst, const AudioDeviceInfo& info){
  186.   //music_buffer_src is the first thing to be freed in the 'audio cleanup'
  187.    //portion of main(), so if it == nullptr, that means audio is in
  188.    //the middle of being uninitialized
  189.    //(that, or music_buffer_src simply hasn't been set yet,
  190.    // in which case it should exit early anyway)
  191.   if(!audioIsReady  ||  music_buffer_src == nullptr) return 0;
  192.  
  193.   Stereo_f32* dst     = (Stereo_f32*)_dst;
  194.   u16         dst_len = info.sampleFrames;
  195.  
  196.   //process music in a separate thread...
  197.   Thread music_thread(cb_music_thread, (void*)(u64)dst_len, true, 0, "music");
  198.  
  199.   //mix whatever sound effects that may be actively playing
  200.   if(sfx) sfx->mixTracks(dst, dst_len, info.timeStartMS);
  201.  
  202.   s32 result = music_thread.waitUntilDone();
  203.   if(result && result != -999) kit_LogError("music thread returned %i", result);
  204.  
  205.   for(u16 i=0; i<dst_len; ++i){
  206.     //...before mixing its output into dst
  207.      //(+= instead of =, since sfx has already mixed its own output into dst)
  208.     dst[i].l += music_buffer_dst[i].l;
  209.     dst[i].r += music_buffer_dst[i].r;
  210.  
  211.     //finally, clamp the samples so that they aren't out of bounds
  212.     dst[i].l = CLAMP(dst[i].l, -1.0f, 1.0f);
  213.     dst[i].r = CLAMP(dst[i].r, -1.0f, 1.0f);
  214.  
  215.   }
  216.  
  217.   return 0;
  218.  
  219. }
  220. /******************************************************************************/
  221. /******************************************************************************/
  222. //"2024-12-13\iso_game\main.cpp":
  223. #include <include_all.hpp>
  224.  
  225. #include <windows.h>
  226.  
  227. #include <unistd.h> //for getcwd()
  228. #include <cstdlib> //for std::srand & std::rand
  229.  
  230. #if RAND_MAX > 32767
  231. #error "RAND_MAX > 32767; frand should be altered to accomodate"
  232. #endif
  233.  
  234.  
  235. using namespace kit;
  236.  
  237.  
  238. /******************************************************************************/
  239.  
  240.  
  241. Window*        wndw = nullptr;
  242. Renderer*      rndr = nullptr;
  243. BFont_Texture* text = nullptr;
  244. BFont_Texture* textColored[16] = {0};
  245.  
  246.  
  247. /****************************** "callbacks.cpp" *******************************/
  248.  
  249.  
  250. s32 cb_audio(void* _dst, const AudioDeviceInfo& info);
  251.  
  252. extern AudioDevice* audio;
  253. extern bool  audioIsReady;
  254.  
  255. extern SoundEngine* sfx;
  256.  
  257. extern Xmp*        music;
  258. extern Stereo_s16* music_buffer_src; //xmp fills this
  259. extern Stereo_f32* music_buffer_dst; //dst=src, before applying music_fade
  260. extern AudioFade   music_fade;
  261.  
  262.  
  263. /****************************** "utils_core.cpp" ******************************/
  264.  
  265.  
  266. void tile_init();
  267.  
  268. extern Texture* tImg;
  269.  
  270.  
  271. /******************************************************************************/
  272.  
  273.  
  274. //just in case you plan on manipulating music_index directly
  275.  //to feed it into music_play or something
  276. static s32 music_index_old = music_index;
  277.  
  278. void music_play(s32 index){
  279.   index = MAX(index, -1);
  280.   if(!audio  ||  index == music_index_old) return;
  281.   audio->lock();
  282.  
  283.   music_fade.fadeIn = false;
  284.   music_fade.fadeOutCalled = false;
  285.   music_index_old = music_index = index;
  286.  
  287.   audio->unlock();
  288.  
  289. }
  290.  
  291.  
  292.  
  293. static u32 sampleRate = 0;
  294.  
  295. void music_setFadeDelta(f32 fadeTimeSeconds){
  296.   if(!sampleRate) return; //just in case
  297.   music_fade.setDelta(sampleRate, fadeTimeSeconds);
  298.  
  299. }
  300.  
  301.  
  302.  
  303. //assumes RAND_MAX is 32767
  304. #define GET_FRAND_VALUE(cast) ( (cast)(std::rand()<<15|std::rand())/0x3FFFFFFF )
  305.  
  306. f64 frand  (){  return GET_FRAND_VALUE(f64);              } // 0.0f -> 1.0f
  307. f64 frand2 (){  return GET_FRAND_VALUE(f64)*2.0f - 1.0f;  } //-1.0f -> 1.0f
  308. f32 frandf (){  return GET_FRAND_VALUE(f32);              } // 0.0f -> 1.0f
  309. f32 frandf2(){  return GET_FRAND_VALUE(f32)*2.0f - 1.0f;  } //-1.0f -> 1.0f
  310.  
  311.  
  312. /******************************************************************************/
  313.  
  314.  
  315.  
  316.  
  317.  
  318. #define PREVENT_RUNNING_WHILE_ZIPPED 1
  319.  
  320. int user_main(int argc, char** argv);
  321.  
  322. int main(int argc, char** argv){  int returnStatus = -1;  try {
  323.   u64 timeDelta, timeStartAudio, timeStartAll = time::getMS();
  324.  
  325. #if PREVENT_RUNNING_WHILE_ZIPPED == 1
  326.   //this should hopefully prevent people from executing the program
  327.    //before it's unzipped (in most cases, at least)
  328.   #define EXTRACT_MSG "This program must be ran normally, after being unzipped"
  329.   char cwd[256];
  330.   getcwd(cwd, sizeof(cwd));
  331.   cwd[255] = 0; //just in case
  332.   u32 lastChar = strnLen(cwd)-1;
  333.   if(cwd[lastChar]=='/' || cwd[lastChar]=='\\') cwd[lastChar] = 0;
  334.  
  335.   //first check
  336.   //checks if the program's current working directory is
  337.    //"C:\Users\<name>\AppData" (specific to windows)
  338.   #if defined(_WIN32)
  339.   {
  340.     u32 i = 0,  backSlashCount = 0;
  341.     bool foundUsers = false;
  342.  
  343.     if((cwd[0]|32) == 'c') //(x|32 makes the char x lowercase)
  344.     for(; i<256; ++i){ _start:
  345.  
  346.       if(cwd[i] == '\0') break;
  347.       if(cwd[i] == '\\') ++backSlashCount;
  348.  
  349.       if(backSlashCount == 1){
  350.         if(!strnCmp("Users", &cwd[++i], 5)) foundUsers = true;
  351.         goto _start; //++i should only occur once this iteration
  352.  
  353.       }
  354.  
  355.       if(foundUsers  &&  backSlashCount == 3){
  356.         if(!strnCmp("AppData", &cwd[++i], 7)) throw EXTRACT_MSG;
  357.         break;
  358.  
  359.       }
  360.  
  361.     }
  362.  
  363.   }
  364.   #endif /* defined(_WIN32) */
  365.  
  366.   //second check
  367.   //all this does is it clips the executable name from the
  368.    //full path (argv[0]) to compare it to the current working directory
  369.   //(this should work even if argv[0] is something else,
  370.    //since you're supposed to run this program normally anyway)
  371.   if(argc > 0){
  372.     char*  path     = argv[0];
  373.     size_t path_len = strnLen(path);
  374.     s32    i        = path_len-1;
  375.     bool   fwdSlash = false;
  376.  
  377.     if(path_len < 256)
  378.     for(; i>=0; --i){
  379.       fwdSlash = path[i]=='/';
  380.       if(fwdSlash  ||  path[i] == '\\'){ path[i] = 0; break; }
  381.     }
  382.  
  383.     if(i >= 0){
  384.       //throw if the paths are different
  385.       if(strnCmp(path, cwd)) throw EXTRACT_MSG;
  386.       //put slash back in case user wants to reference argv[0] too
  387.       path[i] = (fwdSlash) ? '/' : '\\';
  388.     }
  389.  
  390.   }
  391. #endif /* PREVENT_RUNNING_WHILE_ZIPPED == 1 */
  392.  
  393.   initSubsystems(KINIT_EVERYTHING);
  394.  
  395. /********************************* AUDIO INIT *********************************/
  396.  
  397.   AudioDeviceInfo audio_info = audiofunc::getDefaultDevInfo();
  398.   audio_info.sampleFormat = SMPFMT_F32;
  399.   audio_info.numChannels  = 2;
  400.   audio_info.zeroBuffer   = true;
  401.   audio_info.callback     = cb_audio;
  402.   audio_info.userdata     = nullptr;
  403.  
  404.   //(libxmp can only take sample rates between 8kHz and 48kHz)
  405.   audio_info.sampleRate = CLAMP(audio_info.sampleRate, 8000, 48000);
  406.   //actually, for some reason setting audio_info's sampleRate to be lower
  407.    //than 15701 causes _audio.pause() to hang indefinitely (for me at least)
  408.   //tbd: figure out why this happens
  409.   audio_info.sampleRate = MAX(audio_info.sampleRate, 15701);
  410.   sampleRate = audio_info.sampleRate;
  411.  
  412.   AudioDevice _audio(nullptr, audio_info, false);  audio = &_audio;
  413.   _audio.play(); //begin fading in audio
  414.   timeStartAudio = time::getMS();
  415.  
  416.   SoundEngine _sfx(SFX_TRACKS, sampleRate);  sfx = &_sfx;
  417.  
  418.   Xmp _music;  music = &_music;
  419.  
  420.   //65536 elements specifically is chosen, so that even if the number
  421.    //of sample frames given to the audio callback changes somehow,
  422.    //there will always be enough space for copying (sample frame count is u16)
  423.   //(src = 262,144 Bytes, dst = 524,288 Bytes)
  424.   music_buffer_src = (Stereo_s16*)memory::alloc2(65536*sizeof(Stereo_s16));
  425.   music_buffer_dst = (Stereo_f32*)memory::alloc2(65536*sizeof(Stereo_f32));
  426.  
  427.   music_fade.userdata_a = (void*)(u64)sampleRate;
  428.   music_setFadeDelta(); //set fade to its default
  429.  
  430.   //...
  431.  
  432. /********************************* VIDEO INIT *********************************/
  433.  
  434.   audioIsReady = true;
  435.  
  436. { //<- closes at the end of video cleanup
  437.  
  438.   Window _wndw(WIN_TITLE, WIN_W, WIN_H, WIN_FLAGS|WINFLAG_HIDDEN);  wndw=&_wndw;
  439.  
  440.   Renderer _rndr(_wndw);  rndr = &_rndr;
  441.  
  442.   #define GRAY(_hexvalue) 0xFF##_hexvalue##_hexvalue##_hexvalue
  443.   BFont_Texture _text(_rndr, nullptr, nullptr, GRAY(FF), 16384);  text = &_text;
  444.  
  445.   const clrs::ABGR textColored_colors[TEXTCOLORED_LEN] = {
  446.     0xFF000000, //gray0 (  0)
  447.     0xFF555555, //gray1 ( 85)
  448.     0xFFAAAAAA, //gray2 (170)
  449.     0xFFFFFFFF, //gray3 (255)
  450.     0xFF000080, //redLo
  451.     0xFF0000FF, //redHi
  452.     0xFF008000, //greenLo
  453.     0xFF00FF00, //greenHi
  454.     0xFF800000, //blueLo
  455.     0xFFFF0000, //blueHi
  456.     0xFF808000, //cyanLo
  457.     0xFFFFFF00, //cyanHi
  458.     0xFF800080, //magentaLo
  459.     0xFFFF00FF, //magentaHi
  460.     0xFF008080, //yellowLo
  461.     0xFF00FFFF, //yellowHi
  462.   };
  463.  
  464.   for(u32 i=0; i<TEXTCOLORED_LEN; ++i){
  465.     textColored[i] = new BFont_Texture(_rndr, nullptr, nullptr,
  466.                                        textColored_colors[i], 1024);
  467.   }
  468.  
  469.   Texture _tImg(*rndr, "dat/img/tiles.png", SurfaceLoadPNG);  tImg = &_tImg;
  470.   tile_init();
  471.  
  472.   //...
  473.  
  474. /********************************* USER MAIN **********************************/
  475.  
  476.   timeDelta = time::getMS()-timeStartAll;
  477.   kit_LogInfo("Initialized in %llums", timeDelta);
  478.  
  479.   //audio's actual fade DELAY is 90ms, whereas the fade in after that is 10ms.
  480.    //so 95 should put the audio at about halfway through the fade in
  481.   timeDelta = time::getMS()-timeStartAudio;
  482.   time::sleep((u32)MAX((s64)(95-timeDelta), 1));
  483.  
  484.   //_wndw.setVisibility(true); //this is generally done by the user
  485.   std::srand((u32)time::getTicks());
  486.   returnStatus = user_main(argc, argv);
  487.   _wndw.setVisibility(false);
  488.  
  489.   _audio.pause(); //begin fading out audio
  490.  
  491. /******************************* VIDEO CLEANUP ********************************/
  492.  
  493. {
  494.  
  495.   //...
  496.  
  497. }
  498.  
  499.   for(u32 i=0; i<TEXTCOLORED_LEN; ++i) NULLDELETE(textColored[i],BFont_Texture);
  500.  
  501. } //garbage collect video init stuff
  502.  
  503. /******************************* AUDIO CLEANUP ********************************/
  504.  
  505.   //audio's actual fadeout is 10ms, so waiting ~12ms total should be enough
  506.   while(_audio.isPlaying()) time::sleep(4);
  507.   _audio.lock(); //just in case
  508.  
  509.   memory::free(&music_buffer_src);
  510.   memory::free(&music_buffer_dst);
  511.  
  512. {
  513.  
  514.   //...
  515.  
  516. }
  517.  
  518.   _audio.unlock();
  519.  
  520. /************************** CATCH EXCEPTION OR EXIT ***************************/
  521.  
  522. } catch(const char* errorText){
  523.   #ifdef _DEBUG
  524.     kit_LogError("FATAL EXCEPTION OCCURRED: \"%s\"\n", errorText);
  525.   #else
  526.     MessageBeep(MB_ICONERROR);
  527.     showMsgBox(errorText, "FATAL EXCEPTION OCCURRED!", MSGBOX_ERROR);
  528.   #endif /* _DEBUG */
  529.   //redundant, as quitSubsystems already does this when given KINIT_EVERYTHING
  530.   //freeThreadErrors();
  531.  
  532. }
  533.  
  534.   //can't error, and is also safe to call even if no subsystems are active!
  535.   quitSubsystems(KINIT_EVERYTHING);
  536.  
  537.   //a nonzero value indicates a memory leak!
  538.   if(memory::getNumAllocations())
  539.     kit_LogWarn("# OF ALLOCATIONS = %llu", memory::getNumAllocations());
  540.  
  541.   return returnStatus;
  542.  
  543. }
  544. /******************************************************************************/
  545. /******************************************************************************/
  546. //"2024-12-13\iso_game\user_main.cpp":
  547. #include <include_all.hpp>
  548.  
  549. #include <unistd.h> //for getcwd()
  550.  
  551. //begone, unused parameter warning
  552. #define UM_RETURN(_val) { (void)argc, (void)argv; return (_val); }
  553.  
  554. #ifdef _DEBUG
  555.   #define kit_logEvent(_type) kit_LogInfo("event = %s", getEventText(_type))
  556. #else
  557.   #define kit_logEvent(_type) kit_LogInfo("event = 0x%08X", (_type))
  558. #endif
  559.  
  560. using namespace kit;
  561.  
  562.  
  563.  
  564. #define VOL 0.20f
  565. #define SPD 1.2
  566. AudioData* pushSound = nullptr;
  567.  
  568. u32            plr_which;
  569. shape::point3d plr;
  570. shape::point3d box;
  571.  
  572. shape::point cursorPos;
  573.  
  574. bool fullscreen = false;
  575.  
  576. #define LMIN -1
  577. #define LMAX 10
  578. s32 l = LMAX;
  579.  
  580. s32 handleEvents(){
  581.   bool run = true;
  582.  
  583.   Event evt;
  584.   while(pollEvent(&evt))
  585.   switch(evt.type){
  586.     case KEVENT_QUIT: run = false; break;
  587.  
  588.     case KEVENT_KEY_DOWN: {
  589.       if(evt.key.repeat) break;
  590.       switch(evt.key.vkey){
  591.         case VKEY_a: {
  592.           if(plr.x==-5) break;
  593.           else if(plr.x==-4&&(plr.z==box.z)) break;
  594.           --plr.x; plr_which = TILE_ID_PLAYER_BACK;
  595.           if(box==plr){ --box.x; sfx->play(*pushSound, VOL, VOL, SPD); }
  596.         } break;
  597.         case VKEY_d: {
  598.           if((plr.x+((box.x==1)&&plr.z==box.z))==1) break;
  599.           ++plr.x; plr_which = TILE_ID_PLAYER_RIGHT;
  600.           if(box==plr){ ++box.x; sfx->play(*pushSound, VOL, VOL, SPD); }
  601.         } break;
  602.         case VKEY_s: {
  603.           if(plr.z==-3) break;
  604.           else if(plr.z==-2&&(plr.x==box.x)) break;
  605.           --plr.z; plr_which = TILE_ID_PLAYER_LEFT;
  606.           if(box==plr){ --box.z; sfx->play(*pushSound, VOL, VOL, SPD); }
  607.         } break;
  608.         case VKEY_w: {
  609.           if((plr.z+((box.z==4)&&plr.x==box.x))==4) break;
  610.           ++plr.z; plr_which = TILE_ID_PLAYER_BACK;
  611.           if(box==plr){ ++box.z; sfx->play(*pushSound, VOL, VOL, SPD); }
  612.         } break;
  613.         case VKEY_RETURN: {
  614.           return -1;
  615.         } break;
  616.         case VKEY_F11: {
  617.           wndw->setFullscreen((fullscreen^=1));
  618.         } break;
  619.       }
  620.     } break;
  621.  
  622.     case KEVENT_WIN_MFOCUS_GAINED: showCursor(0); break;
  623.     case KEVENT_WIN_MFOCUS_LOST  : showCursor(1); break;
  624.  
  625.     case KEVENT_MOUSE_MOVED: {
  626.       shape::point winPos(evt.mouse.x, evt.mouse.y);
  627.       cursorPos = shape::point(winPos);
  628.       winPos.x += WIN_W/4;
  629.       winPos.y += WIN_H/4;
  630.       tile_camera = rndr->coordsWindowToLogical(winPos);
  631.       //kit_LogInfo("%f, %f", tile_camera.x, tile_camera.y);
  632.     } break;
  633.  
  634.     case KEVENT_MOUSE_WHEEL: {
  635.       l = CLAMP(l+evt.mouse.dy, LMIN, LMAX);
  636.     } break;
  637.  
  638.     default: kit_logEvent(evt.type);
  639.   }
  640.  
  641.   return run;
  642.  
  643. }
  644.  
  645.  
  646.  
  647.  
  648.  
  649. int user_main(int argc, char** argv){
  650.   music_play(1);
  651.   wndw->setMinSize(WIN_W/2, WIN_H/2);
  652.   rndr->setLogicalSize(WIN_W/2, WIN_H/2);
  653.   wndw->setVisibility(true);
  654.  
  655.   AudioData _pushSound("dat/sfx/push_1_v1.wav", AudioDataLoadWAV);
  656.   _pushSound.convertFormat(SMPFMT_F32);
  657.   pushSound = &_pushSound;
  658.  
  659.   _start:
  660.   plr_which = TILE_ID_PLAYER_RIGHT;
  661.   plr = {-2,0,0};
  662.   box = { 0,0,1};
  663.  
  664.  
  665.   while(true){
  666.     s32 result = handleEvents();
  667.     if(!result) break;
  668.     if(result==-1) goto _start;
  669.  
  670.     rndr->setDrawColor(0xff808080);
  671.     rndr->clear();
  672.  
  673.  
  674.     for(s32 y=-1; y<MIN(l,3); ++y)
  675.     for(s32 z= 4; z>=-4; --z)
  676.     {
  677.       draw_tile(-5, y, z, TILE_ID_BLOCK_R, 1.0f);
  678.     }
  679.  
  680.     for(s32 y= 3; y<MIN(l,LMAX); ++y)
  681.     for(s32 z= 0; z>=-4; --z)
  682.     {
  683.       draw_tile(-5, y, z, TILE_ID_BLOCK_Y, 1.0f);
  684.     }
  685.  
  686.     for(s32 y=-1; y<MIN(l,2); ++y)
  687.     for(s32 x=-4; x<  4; ++x)
  688.     {
  689.       draw_tile(x, y, 4, TILE_ID_BLOCK_B, 1.0f);
  690.     }
  691.  
  692.     for(s32 y=-1; y<MIN(l,1); ++y)
  693.     for(s32 x=-4; x<  4; ++x)
  694.     for(s32 z= 3; z>=-4; --z)
  695.     {
  696.       draw_tile(x, y, z, TILE_ID_BLOCK_G, 1.0f);
  697.     }
  698.  
  699.     if(l >= 2){
  700.       bool in_front = isInFront(box, plr);
  701.       if(!in_front) draw_tile(plr.x, plr.y, plr.z, plr_which);
  702.       draw_tile(box.x, box.y, box.z, TILE_ID_BOXSMALL);
  703.       if(in_front) draw_tile(plr.x, plr.y, plr.z, plr_which);
  704.     }
  705.  
  706.     for(s32 y=-1; y<MIN(l,1); ++y)
  707.     for(s32 z= 3; z>=-4; --z)
  708.     {
  709.       draw_tile(3, y, z, TILE_ID_BLOCK_Y, 1.0f);
  710.     }
  711.  
  712.     for(s32 y= 1; y<MIN(l,3); ++y)
  713.     for(s32 z= 3; z>=-4; --z)
  714.     {
  715.       draw_tile(3, y, z, TILE_ID_BLOCK_Y, 0.5f);
  716.     }
  717.  
  718.  
  719.     text->scale = {2,2};
  720.     text->draw(0,0, "%2i,%2i,%2i, (%i)", 0, plr.x, plr.y, plr.z, l+1);
  721.     text->scale = {1,1};
  722.     text->draw(0,-1, "(controls: wasd, enter, scroll)");
  723.  
  724.     rndr->setDrawColor(0xffff00ff);
  725.     rndr->drawPoint(cursorPos.x, cursorPos.y);
  726.  
  727.     rndr->present();
  728.     time::sleep(33);
  729.   }
  730.  
  731.   UM_RETURN(0);
  732.  
  733. }
  734. /******************************************************************************/
  735. /******************************************************************************/
  736. //"2024-12-13\iso_game\utils_tile.cpp":
  737. #include <include_all.hpp>
  738.  
  739.  
  740. using namespace kit;
  741.  
  742.  
  743.  
  744.  
  745.  
  746. shape::fpoint tile_camera = {0, 0};
  747.  
  748. Texture* tImg = nullptr;
  749. Vertex   tile_verts[4];
  750. s32      tile_indices[6];
  751.  
  752. void tile_init(){ //inits all but tImg itself
  753.   static bool isInit = false;
  754.   if(isInit) return;
  755.  
  756.   clrs::ABGR color = 0xFFFFFFFF;
  757.   tile_verts[0].c = color;
  758.   tile_verts[1].c = color;
  759.   tile_verts[2].c = color;
  760.   tile_verts[3].c = color;
  761.  
  762.   tile_verts[0].uv = {0,0};
  763.   tile_verts[1].uv = {1,0};
  764.   tile_verts[2].uv = {0,1};
  765.   tile_verts[3].uv = {1,1};
  766.  
  767.   tile_indices[0] = 0;
  768.   tile_indices[1] = 1;
  769.   tile_indices[2] = 2;
  770.   tile_indices[3] = 3;
  771.   tile_indices[4] = 1;
  772.   tile_indices[5] = 2;
  773.  
  774.   isInit = true;
  775.  
  776. }
  777.  
  778.  
  779.  
  780.  
  781.  
  782. static inline void _draw_tile(s32 x, s32 y, s32 z, u32 which, f32 alpha){
  783.   tile_verts[0].x  = 16*x + tile_camera.x;
  784.   tile_verts[0].y  =  8*x + tile_camera.y;
  785.  
  786.   tile_verts[0].y -= 16*y;
  787.  
  788.   tile_verts[0].x += 16*z;
  789.   tile_verts[0].y -=  8*z;
  790.  
  791.  
  792.   tile_verts[1].x = tile_verts[0].x + 32;
  793.   tile_verts[1].y = tile_verts[0].y;
  794.  
  795.   tile_verts[2].x = tile_verts[0].x;
  796.   tile_verts[2].y = tile_verts[0].y + 32;
  797.  
  798.   tile_verts[3].x = tile_verts[1].x;
  799.   tile_verts[3].y = tile_verts[2].y;
  800.  
  801.  
  802.   u8 alpha_u8 = 255*alpha;
  803.  
  804.   tile_verts[0].c.a = alpha_u8;
  805.   tile_verts[1].c.a = alpha_u8;
  806.   tile_verts[2].c.a = alpha_u8;
  807.   tile_verts[3].c.a = alpha_u8;
  808.  
  809.  
  810.   tile_verts[0].u = 0.0625f * which;
  811.   tile_verts[1].u = tile_verts[0].u + 0.0625f;
  812.   tile_verts[2].u = tile_verts[0].u;
  813.   tile_verts[3].u = tile_verts[1].u;
  814.  
  815.  
  816.   rndr->renderGeometry(tile_verts, 4, tImg, tile_indices, 6);
  817.  
  818. }
  819.  
  820. void draw_tile(s32 x, s32 y, s32 z, u32 which, f32 alpha){
  821.   _draw_tile(x, y, z, which, alpha);
  822. }
  823.  
  824.  
  825.  
  826. //void draw_tiles
  827. /******************************************************************************/
  828. /******************************************************************************/
  829. //"2024-12-13\kit_xmp\kit_Xmp.cpp":
  830. /* notes/tbd:
  831.  
  832. use references where possible
  833.  
  834. */
  835.  
  836. #include <kit/misc.hpp>
  837. #include <kit/Xmp.hpp>
  838.  
  839. #define LIBXMP_STATIC
  840. #include <libxmp-lite/xmp.h>
  841.  
  842. #define CTX_PTR ((xmp_context)_ctx)
  843.  
  844.  
  845. namespace kit {
  846.  
  847. extern size_t numAllocations; //from kit namespace; relates to memory functions
  848.  
  849.  
  850.  
  851.  
  852.  
  853. #define KIT_OPAQUE_PRESENT (0x80000000)
  854. #define KIT_CLASSTYPE_XMP (0x1001 | KIT_OPAQUE_PRESENT)
  855.  
  856. Xmp::Xmp(){
  857.   if(_valid) return;
  858.   _type = KIT_CLASSTYPE_XMP;
  859.  
  860.   _initModule = false;
  861.   _initPlayer = false;
  862.  
  863.   _ctx = xmp_create_context();
  864.  
  865.   //the documentation doesn't even mention that xmp_create_context
  866.    //can error, but it wouldn't hurt to have a check here just in case
  867.   if(_ctx == nullptr)
  868.     throw "Xmp::Xmp(): failed to create internal libxmp context";
  869.  
  870.   ++numAllocations;
  871.  
  872.   _valid = true;
  873.   _constructing = false;
  874.  
  875. }
  876.  
  877.  
  878.  
  879.  
  880.  
  881. Xmp::~Xmp(){
  882.   if(!_valid) return;
  883.   _valid = false;
  884.  
  885.   if(_ctx != nullptr){
  886.     if(_initPlayer){
  887.       xmp_end_player(CTX_PTR);
  888.       _initPlayer = false;
  889.       --numAllocations;
  890.     }
  891.  
  892.     if(_initModule){
  893.       xmp_stop_module(CTX_PTR);
  894.       xmp_release_module(CTX_PTR);
  895.       _initModule = false;
  896.       --numAllocations;
  897.     }
  898.  
  899.     xmp_free_context(CTX_PTR);
  900.     _ctx = nullptr;
  901.     --numAllocations;
  902.  
  903.   }
  904.  
  905. }
  906.  
  907.  
  908.  
  909.  
  910.  
  911. }; /* namespace kit */
  912. /******************************************************************************/
  913. /******************************************************************************/
  914. //"2024-12-13\kit_xmp\kit_Xmp_getModuleInfo.cpp":
  915. #include <kit/misc.hpp>
  916. #include <kit/Xmp.hpp>
  917.  
  918. #define LIBXMP_STATIC
  919. #include <libxmp-lite/xmp.h>
  920.  
  921. #define CTX_PTR ((xmp_context)_ctx)
  922.  
  923.  
  924. namespace kit {
  925.  
  926.  
  927.  
  928.  
  929.  
  930. s32 Xmp::getModuleInfo(Xmp_moduleInfo* minfo_out){
  931.   if(!_valid || !_initModule) return -KIT_XMP_ERROR_STATE;
  932.  
  933.   if(minfo_out == nullptr) return -KIT_XMP_ERROR_INVALID;
  934.  
  935.   xmp_get_module_info(CTX_PTR, (xmp_module_info*)minfo_out);
  936.  
  937.   return 0;
  938.  
  939. }
  940.  
  941.  
  942.  
  943.  
  944.  
  945. }; /* namespace kit */
  946. /******************************************************************************/
  947. /******************************************************************************/
  948. //"2024-12-13\kit_xmp\kit_Xmp_getTestInfo.cpp":
  949. #include <kit/misc.hpp>
  950. #include <kit/Xmp.hpp>
  951.  
  952. #define LIBXMP_STATIC
  953. #include <libxmp-lite/xmp.h>
  954.  
  955. #define CTX_PTR ((xmp_context)_ctx)
  956.  
  957.  
  958. namespace kit {
  959.  
  960.  
  961.  
  962.  
  963.  
  964. s32 Xmp::_test_from_memory(const void* data, u31 size, Xmp_testInfo* tinfo_out){
  965.   if(!_valid) return -KIT_XMP_ERROR_STATE;
  966.  
  967.   if(size.s) return -KIT_XMP_ERROR_INVALID;
  968.  
  969.   //tinfo_out can apparently be nullptr, so i'm not checking for it here
  970.   return xmp_test_module_from_memory(data, size.v, (xmp_test_info*)tinfo_out);
  971.  
  972. }
  973.  
  974.  
  975.  
  976.  
  977.  
  978. s32 Xmp::getTestInfo(const char* filePath, Xmp_testInfo* tinfo_out){
  979.   if(!_valid) return -KIT_XMP_ERROR_STATE;
  980.  
  981.   if(filePath == nullptr) return -KIT_XMP_ERROR_INVALID;
  982.   if(!fileio::exists(filePath)) return -KIT_XMP_ERROR_LOAD;
  983.  
  984.   try {
  985.     BinaryData file(filePath);
  986.     return _test_from_memory(file.getData(), file.getSize(), tinfo_out);
  987.  
  988.   } catch(const char* errorText){
  989.     //a catch clause is added, since BinaryData can throw
  990.     return -KIT_XMP_ERROR_LOAD;
  991.  
  992.   }
  993.  
  994. }
  995.  
  996.  
  997.  
  998.  
  999.  
  1000. }; /* namespace kit */
  1001. /******************************************************************************/
  1002. /******************************************************************************/
  1003. //"2024-12-13\kit_xmp\kit_Xmp_module.cpp":
  1004. #include <kit/misc.hpp>
  1005. #include <kit/Xmp.hpp>
  1006.  
  1007. #define LIBXMP_STATIC
  1008. #include <libxmp-lite/xmp.h>
  1009.  
  1010. #define CTX_PTR ((xmp_context)_ctx)
  1011.  
  1012.  
  1013. namespace kit {
  1014.  
  1015. extern size_t numAllocations; //from kit namespace; relates to memory functions
  1016.  
  1017.  
  1018.  
  1019.  
  1020.  
  1021. s32 Xmp::_module_from_memory(const void* data, u31 size){
  1022.   if(!_valid) return -KIT_XMP_ERROR_STATE;
  1023.  
  1024.   if(size.s) return -KIT_XMP_ERROR_INVALID; //module size > KIT_S32_MAX
  1025.  
  1026.   moduleRelease();
  1027.  
  1028.   int err = xmp_load_module_from_memory(CTX_PTR, data, size.v);
  1029.   if(err) return err;
  1030.  
  1031.   _initModule = true;
  1032.  
  1033.   ++numAllocations;
  1034.  
  1035.   return 0;
  1036.  
  1037. }
  1038.  
  1039.  
  1040.  
  1041.  
  1042.  
  1043. s32 Xmp::moduleLoad(const char* filePath){
  1044.   if(!_valid) return -KIT_XMP_ERROR_STATE;
  1045.  
  1046.   if(filePath == nullptr) return -KIT_XMP_ERROR_INVALID;
  1047.   if(!fileio::exists(filePath)) return -KIT_XMP_ERROR_LOAD;
  1048.  
  1049.   try {
  1050.     BinaryData file(filePath);
  1051.     return _module_from_memory(file.getData(), file.getSize());
  1052.  
  1053.   } catch(const char* errorText){
  1054.     //a catch clause is added, since BinaryData can throw
  1055.     return -KIT_XMP_ERROR_LOAD;
  1056.  
  1057.   }
  1058.  
  1059. }
  1060.  
  1061.  
  1062.  
  1063.  
  1064.  
  1065. bool Xmp::moduleRelease(){
  1066.   if(!_valid || !_initModule) return false;
  1067.  
  1068.   xmp_stop_module(CTX_PTR);
  1069.   xmp_release_module(CTX_PTR);
  1070.  
  1071.   _initModule = false;
  1072.  
  1073.   --numAllocations;
  1074.  
  1075.   return true;
  1076.  
  1077. }
  1078.  
  1079.  
  1080.  
  1081.  
  1082.  
  1083. s32 Xmp::moduleStop(){
  1084.   if(!_valid || !_initModule) return -KIT_XMP_ERROR_STATE;
  1085.  
  1086.   xmp_stop_module(CTX_PTR);
  1087.  
  1088.   return 0;
  1089.  
  1090. }
  1091.  
  1092.  
  1093.  
  1094.  
  1095.  
  1096. s32 Xmp::moduleRestart(){
  1097.   if(!_valid || !_initModule) return -KIT_XMP_ERROR_STATE;
  1098.  
  1099.   xmp_restart_module(CTX_PTR);
  1100.  
  1101.   return 0;
  1102.  
  1103. }
  1104.  
  1105.  
  1106.  
  1107.  
  1108.  
  1109. }; /* namespace kit */
  1110.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement