add basic libretro file wip
This commit is contained in:
@@ -0,0 +1,54 @@
|
||||
|
||||
#include "libretro.h"
|
||||
|
||||
#include "retroscreen.h"
|
||||
#include "libretro-core.h"
|
||||
#include "vkbd_def.h"
|
||||
#include "graph.h"
|
||||
|
||||
extern int NPAGE;
|
||||
extern int KCOL;
|
||||
extern int BKGCOLOR;
|
||||
extern int SHIFTON;
|
||||
|
||||
void virtual_kdb(char *buffer,int vx,int vy)
|
||||
{
|
||||
|
||||
int x, y, page;
|
||||
unsigned coul;
|
||||
|
||||
#if defined PITCH && PITCH == 4
|
||||
unsigned *pix=(unsigned*)buffer;
|
||||
#else
|
||||
unsigned short *pix=(unsigned short *)buffer;
|
||||
#endif
|
||||
|
||||
page = (NPAGE == -1) ? 0 : 5*NPLGN;
|
||||
coul = RGB565(28, 28, 31);
|
||||
BKGCOLOR = (KCOL>0?0xFF808080:0);
|
||||
|
||||
|
||||
for(x=0;x<NPLGN;x++)
|
||||
{
|
||||
for(y=0;y<NLIGN;y++)
|
||||
{
|
||||
DrawBoxBmp((char*)pix,XBASE3+x*XSIDE,YBASE3+y*YSIDE, XSIDE,YSIDE, RGB565(7, 2, 1));
|
||||
Draw_text((char*)pix,XBASE0-2+x*XSIDE ,YBASE0+YSIDE*y,coul, BKGCOLOR ,1, 1,20,
|
||||
SHIFTON==-1?MVk[(y*NPLGN)+x+page].norml:MVk[(y*NPLGN)+x+page].shift);
|
||||
}
|
||||
}
|
||||
|
||||
DrawBoxBmp((char*)pix,XBASE3+vx*XSIDE,YBASE3+vy*YSIDE, XSIDE,YSIDE, RGB565(31, 2, 1));
|
||||
Draw_text((char*)pix,XBASE0-2+vx*XSIDE ,YBASE0+YSIDE*vy,RGB565(2,31,1), BKGCOLOR ,1, 1,20,
|
||||
SHIFTON==-1?MVk[(vy*NPLGN)+vx+page].norml:MVk[(vy*NPLGN)+vx+page].shift);
|
||||
|
||||
}
|
||||
|
||||
int check_vkey2(int x,int y)
|
||||
{
|
||||
int page;
|
||||
//check which key is press
|
||||
page= (NPAGE==-1) ? 0 : 5*NPLGN;
|
||||
return MVk[y*NPLGN+x+page].val;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user