psp插件怎么编写的啊?



wk80904344
2010-05-29 17:27:04

网上有部分插件,但并不丰富,希望自己编写一些插件,求教方法
我会c++,能利用吗?


fanhuai
2010-05-29 17:50:54

没写过的路过················


『兔寳貝』
2010-05-29 18:09:17

[quote]没写过的路过················
[size=2][color=#999999]fanhuai 发表于 2010-5-29 17:50[/color] [url=http://www.yayabo.cn/redirect.php?goto=findpost&pid=37702&ptid=4433][img]http://www.yayabo.cn/images/common/back.gif[/img][/url][/size][/quote]


真相永远只有一个.
犯坏叔.你在说谎.


fanhuai
2010-05-29 18:39:38

俺真没写过,连c++都没用过


wk80904344
2010-05-29 19:20:15

高手们帮帮我啊


fanhuai
2010-05-29 19:21:27

那啥,掌叔是高手,问掌叔吧


kiseeyou
2010-05-29 19:27:49

插件,那是什么,俺也好想了解


EBOOTPSPSDK
2010-05-31 13:41:11

理论上说可以吧....没写过
恩....建议熟悉一下UNIX的各种工作环境特别是编译连接用的Makefile
因为貌似PSP/DS等的程序放在Win的集成开发环境中写最终成品的质量都不高
额~~~~~具体也不知是什么原因


大傻2
2010-07-26 09:52:47

你是想写开机启动插件吧?
首先,写prx需要用module_start和module_stop方法,prx并没有main入口
我很久以前做的一个空插件
#include
#include
#include
#include
#include
#include
#include
#include
#include
PSP_MODULE_INFO("axi", 0x1000, 0, 1);
PSP_MAIN_THREAD_ATTR(0);
PSP_HEAP_SIZE_KB(64);
int done = 0;
int cbid;
int thid = 0;
int exit_callback(int arg1, int arg2, void *common)
{
done = 1;
return 0;
}

/* Callback thread */
int CallbackThread(SceSize args, void *argp)
{
cbid = sceKernelCreateCallback("Exit Callback", exit_callback, NULL);
sceKernelRegisterExitCallback(cbid);
sceKernelSleepThreadCB();
return 0;
}

/* Sets up the callback thread and returns its thread id */
int SetupCallbacks(void)
{
thid = sceKernelCreateThread("update_thread", CallbackThread,
0x11, 0xFA0, 0, 0);
if(thid >= 0)
{
sceKernelStartThread(thid, 0, 0);
}
return thid;
}
int main_thread(SceSize args, void *argp){

//这里写程序*~*
return 0;
}

int module_start(SceSize args, void *argp)
{
int thid;
thid = sceKernelCreateThread("axi", main_thread, 15, 0x800, 0, NULL);//伴随游戏启动的线程
if(thid >= 0)
{
sceKernelStartThread(thid, args, argp);
}
return 0;
}

int module_stop(void)
{
return 0;
}


LVAbyss
2010-07-26 12:46:38

路过过的 看看 学学


hitler1017
2010-08-30 21:34:56

妳們都好厲害= =


ginanony
2010-09-01 13:28:38

这位兄台...果然语出惊人...不同反响。。。佩服...


大傻2
2010-09-07 23:41:27

这兄台在踩我,笑我


g6263659
2010-09-11 23:35:40

路过看看!!!!!


785590
2011-01-23 10:22:24

自己找那些人联系不就行


lrb2010
2011-01-30 14:59:12

= =我也好想知道