mirror of
https://github.com/Pecusx/libretro-atari800.git
synced 2026-05-20 22:33:22 +02:00
55 lines
1.2 KiB
C
55 lines
1.2 KiB
C
|
|
#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;
|
|
}
|
|
|