main_PSP.h 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115
  1. //
  2. // Copyright (c) 2009, Pal_Bazzi.
  3. //
  4. // All rights reserved.
  5. //
  6. // This file is part of SDLPAL.
  7. //
  8. // SDLPAL is free software: you can redistribute it and/or modify
  9. // it under the terms of the GNU General Public License as published by
  10. // the Free Software Foundation, either version 3 of the License, or
  11. // (at your option) any later version.
  12. //
  13. // This program is distributed in the hope that it will be useful,
  14. // but WITHOUT ANY WARRANTY; without even the implied warranty of
  15. // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  16. // GNU General Public License for more details.
  17. //
  18. // You should have received a copy of the GNU General Public License
  19. // along with this program. If not, see <http://www.gnu.org/licenses/>.
  20. //
  21. #include <pspkernel.h>
  22. #include <pspdebug.h>
  23. #include <pspsdk.h>
  24. #include <psppower.h>
  25. #include <pspthreadman.h>
  26. #include <stdlib.h>
  27. #include <stdio.h>
  28. #define PSP_HEAP_MEMSIZE 12288
  29. PSP_MODULE_INFO("SDLPAL", 0, 1, 1);
  30. PSP_MAIN_THREAD_ATTR(PSP_THREAD_ATTR_USER);
  31. PSP_HEAP_SIZE_KB(PSP_HEAP_MEMSIZE);
  32. //
  33. //Exit callback
  34. //
  35. int PSPExitCallback(int arg1, int arg2, void *common)
  36. {
  37. exit(0);
  38. return 0;
  39. }
  40. //
  41. //Reopen MKF files when resume from suspend
  42. //
  43. int PSPSuspendCallback(int arg1, int pwrflags, void *common)
  44. {
  45. if (pwrflags & PSP_POWER_CB_RESUME_COMPLETE)
  46. {
  47. UTIL_CloseFile(gpGlobals->f.fpFBP);
  48. UTIL_CloseFile(gpGlobals->f.fpMGO);
  49. UTIL_CloseFile(gpGlobals->f.fpBALL);
  50. UTIL_CloseFile(gpGlobals->f.fpDATA);
  51. UTIL_CloseFile(gpGlobals->f.fpF);
  52. UTIL_CloseFile(gpGlobals->f.fpFIRE);
  53. UTIL_CloseFile(gpGlobals->f.fpRGM);
  54. UTIL_CloseFile(gpGlobals->f.fpSSS);
  55. gpGlobals->f.fpFBP = UTIL_OpenRequiredFile("fbp.mkf");
  56. gpGlobals->f.fpDATA = UTIL_OpenRequiredFile("data.mkf");
  57. gpGlobals->f.fpFIRE = UTIL_OpenRequiredFile("fire.mkf");
  58. gpGlobals->f.fpSSS = UTIL_OpenRequiredFile("sss.mkf");
  59. gpGlobals->lpObjectDesc = PAL_LoadObjectDesc(va("%s%s", PAL_PREFIX, "desc.dat"));
  60. SOUND_ReloadVOC();
  61. }
  62. int cbid;
  63. cbid = sceKernelCreateCallback("suspend Callback", PSPSuspendCallback, NULL);
  64. scePowerRegisterCallback(0, cbid);
  65. return 0;
  66. }
  67. //
  68. //setup callbacks thread
  69. //
  70. int PSPRegisterCallbackThread(SceSize args, void *argp)
  71. {
  72. int cbid;
  73. cbid = sceKernelCreateCallback("Exit Callback", PSPExitCallback, NULL);
  74. sceKernelRegisterExitCallback(cbid);
  75. cbid = sceKernelCreateCallback("suspend Callback", PSPSuspendCallback, NULL);
  76. scePowerRegisterCallback(0, cbid);
  77. sceKernelSleepThreadCB();
  78. return 0;
  79. }
  80. //
  81. //setup exit callback
  82. //
  83. int PSPSetupCallbacks(void)
  84. {
  85. int thid = 0;
  86. thid = sceKernelCreateThread("update_thread", PSPRegisterCallbackThread, 0x11, 0xFA0, 0, 0);
  87. if(thid >= 0)
  88. sceKernelStartThread(thid, 0, 0);
  89. return thid;
  90. }
  91. //
  92. //Init on PSP
  93. //
  94. void sdlpal_psp_init(void)
  95. {
  96. // Init Debug Screen
  97. pspDebugScreenInit();
  98. // PSP set callbacks
  99. PSPSetupCallbacks();
  100. // Register sceKernelExitGame() to be called when we exit
  101. atexit(sceKernelExitGame);
  102. // set PSP CPU clock
  103. scePowerSetClockFrequency(333 , 333 , 166);
  104. }