• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    公众号

PSP开发--[C++]接收按键控制

原作者: [db:作者] 来自: [db:来源] 收藏 邀请

 

padctrl.cpp

#include <pspkernel.h>
#include
<pspdebug.h>
#include
<pspdisplay.h>
#include
<pspctrl.h>

#include
<iostream>

PSP_MODULE_INFO(
"Hello World", 0, 1, 1);

#define printf pspDebugScreenPrintf

using namespace std;

/* Exit callback */
int exit_callback(int arg1, int arg2, void *common) {
sceKernelExitGame();
return 0;
}

/* Callback thread */
int CallbackThread(SceSize args, void *argp) {
int cbid;
//Create callback
cbid = sceKernelCreateCallback("Exit Callback", exit_callback, NULL);
sceKernelRegisterExitCallback(cbid);

//Sleep thread but service any callbacks as necessary.
sceKernelSleepThreadCB();

return 0;
}

/* Sets up the callback thread and returns its thread id */
int SetupCallbacks() {
int thid = 0;

//Create a thread.
thid = sceKernelCreateThread("update_thread", CallbackThread, 0x11, 0xFA0, 0, 0);
if(thid >= 0) {
//Start a created thread.
sceKernelStartThread(thid, 0, 0);
}

return thid;
}

int main(int argc, char **argv)
{
//Initialise the debug screen.
pspDebugScreenInit();
//setup callback;
SetupCallbacks();

//按键struct
SceCtrlData pad;

printf(
"Press [X] To Start the Timer");

while(1)
{
//Read buffer positive.
sceCtrlReadBufferPositive(&pad, 1);

if(pad.Buttons & PSP_CTRL_CROSS)
{
printf(
"you pressed X");
break;
}
//清屏
pspDebugScreenClear();
}

//Sleep thread
sceKernelSleepThread();

return 0;
}

makefile

TARGET = padctrl
OBJS
= padctrl.o

BUILD_PRX
= 1
PSP_FW_VERSION
= 371

# C编译器参数
CFLAGS
= -O2 -G0 -Wall
# C++编译器参数
CXXFLAGS
= $(CFLAGS) -fno-exceptions -fno-rtti
# 汇编编译器参数
ASFLAGS
= $(CFLAGS)

# 引用的库 -l stdC++
LIBS
= -lstdc++

EXTRA_TARGETS
= EBOOT.PBP
PSP_EBOOT_TITLE
= pad control

PSPSDK
=$(shell psp-config --pspsdk-path)
include $(PSPSDK)/lib/build.mak




 按键的枚举

PSP_CTRL_SELECT  Select button.
PSP_CTRL_START  Start button.
PSP_CTRL_UP  Up D-Pad button.
PSP_CTRL_RIGHT  Right D-Pad button.
PSP_CTRL_DOWN  Down D-Pad button.
PSP_CTRL_LEFT  Left D-Pad button.
PSP_CTRL_LTRIGGER  Left trigger.
PSP_CTRL_RTRIGGER  Right trigger.
PSP_CTRL_TRIANGLE  Triangle button.
PSP_CTRL_CIRCLE  Circle button.
PSP_CTRL_CROSS  Cross button.
PSP_CTRL_SQUARE  Square button.
PSP_CTRL_HOME  Home button.
PSP_CTRL_HOLD  Hold button.
PSP_CTRL_NOTE  Music Note button.

 

接收按键需要一个while(1)来接受系统事件。
然后通过sceCtrlReadBufferPositive(&pad, 1); 来读取按键内容。


鲜花

握手

雷人

路过

鸡蛋
该文章已有0人参与评论

请发表评论

全部评论

专题导读
上一篇:
C#中问号&quot;?&quot;语法发布时间:2022-07-13
下一篇:
C# XceedFtp下载卡死解决方案发布时间:2022-07-13
热门推荐
阅读排行榜

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap