forked from KolibriOS/kolibrios
Game Center 1.5: ini support
git-svn-id: svn://kolibrios.org@5151 a494cfbc-eb01-0410-851d-a64ba20cac60
This commit is contained in:
parent
1ed578cbee
commit
aea40e6984
@ -1,5 +1,5 @@
|
||||
/*
|
||||
GAME CENTER v1.0
|
||||
GAME CENTER v1.5
|
||||
*/
|
||||
|
||||
#define MEMSIZE 0x3E80
|
||||
@ -12,64 +12,11 @@ GAME CENTER v1.0
|
||||
|
||||
#include "..\lib\lib.obj\libio_lib.h"
|
||||
#include "..\lib\lib.obj\libimg_lib.h"
|
||||
#include "..\lib\lib.obj\libini.h"
|
||||
|
||||
system_colors sc;
|
||||
proc_info Form;
|
||||
|
||||
struct link {
|
||||
char *name;
|
||||
char *path;
|
||||
int icon;
|
||||
};
|
||||
|
||||
struct link games[] = {
|
||||
"Bomber", "/kolibrios/games/bomber/bomber", 35,
|
||||
"DOOM1", "/kolibrios/games/doom1/doom", 43,
|
||||
"DOOM2", "/kolibrios/games/doom2/doom", 43,
|
||||
"Fara", "/kolibrios/games/fara/fara", 42,
|
||||
"JumpBump", "/kolibrios/games/jumpbump/jumpbump.kex", 35,
|
||||
"Loderunner", "/kolibrios/games/LRL/LRL", 41,
|
||||
"BabyPainter", "/kolibrios/games/baby painter", 35,
|
||||
"Knight", "/kolibrios/games/knight", 35,
|
||||
"Pinton", "/kolibrios/games/piton", 32,
|
||||
|
||||
"15", "/sys/games/15", 34,
|
||||
"Arcanii", "/sys/games/arcanii", 12,
|
||||
"Ataka", "/sys/games/ataka", 35,
|
||||
"C4", "/sys/games/c4", 35,
|
||||
"Checkers", "/sys/games/checkers", 20,
|
||||
"Clicks", "/sys/games/clicks", 18,
|
||||
"FNumbers", "/sys/games/FindNumbers", 35,
|
||||
"Flood-It", "/sys/games/flood-it", 27,
|
||||
"Freecell", "/sys/games/freecell", 35,
|
||||
"Gomoku", "/sys/games/gomoku", 24,
|
||||
"Invaders", "/kolibrios/games/invaders", 35,
|
||||
"Klavisha", "/sys/games/klavisha", 35,
|
||||
"Kosilka", "/sys/games/kosilka", 23,
|
||||
"Lines", "/sys/games/lines", 35,
|
||||
"MBlocks", "/sys/games/mblocks", 11,
|
||||
"Megamaze", "/sys/games/megamaze", 35,
|
||||
"Mine", "/sys/games/mine", 14,
|
||||
"Square", "/sys/games/msquare", 35,
|
||||
"Padenie", "/sys/games/padenie", 35,
|
||||
"Phenix", "/sys/games/phenix", 35,
|
||||
"Pig", "/tmp0/1/games/pig/pig", 35,
|
||||
"Pipes", "/sys/games/pipes", 26,
|
||||
"Pong", "/sys/games/pong", 12,
|
||||
"Pong3", "/sys/games/pong3", 12,
|
||||
"Reversi", "/sys/games/reversi", 35,
|
||||
"Rforces", "/sys/games/rforces", 35,
|
||||
"Rsquare", "/sys/games/rsquare", 35,
|
||||
"Snake", "/sys/games/snake", 32,
|
||||
"Sq game", "/sys/games/sq_game", 35,
|
||||
"Sudoku", "/sys/games/sudoku", 25,
|
||||
"Sea War", "/sys/games/SW", 35,
|
||||
"Tanks", "/sys/games/tanks", 35,
|
||||
"Tetris", "/sys/games/tetris", 35,
|
||||
"Whowtbam", "/sys/games/whowtbam", 35,
|
||||
"Xonix", "/sys/games/xonix", 21,
|
||||
0
|
||||
};
|
||||
int run_id, enum_i;
|
||||
|
||||
struct struct_skin {
|
||||
dword image, w, h;
|
||||
@ -100,6 +47,7 @@ void main()
|
||||
mem_Init();
|
||||
if (load_dll2(libio, #libio_init,1)!=0) notify("Error: library doesn't exists - libio");
|
||||
if (load_dll2(libimg, #libimg_init,1)!=0) notify("Error: library doesn't exists - libimg");
|
||||
if (load_dll2(libini, #lib_init,1)!=0) notify("Error: library doesn't exists - libini");
|
||||
skin.Load();
|
||||
|
||||
loop()
|
||||
@ -109,7 +57,12 @@ void main()
|
||||
case evButton:
|
||||
id=GetButtonID();
|
||||
if (id==1) ExitProcess();
|
||||
if (id>=100) RunProgram(games[id-100].path, "");
|
||||
if (id>=100)
|
||||
{
|
||||
run_id = id - 100;
|
||||
enum_i = 0;
|
||||
ini_enum_keys stdcall ("/sys/settings/games.ini", "Games", #run_game);
|
||||
}
|
||||
break;
|
||||
|
||||
case evKey:
|
||||
@ -127,30 +80,56 @@ void main()
|
||||
}
|
||||
}
|
||||
|
||||
byte run_game(dword key_value, key_name, sec_name, f_name)
|
||||
{
|
||||
if (run_id==enum_i)
|
||||
{
|
||||
ESBYTE[key_value + strchr(key_value, ',') - 1] = 0;
|
||||
RunProgram(key_value, '');
|
||||
return 0;
|
||||
}
|
||||
enum_i++;
|
||||
return 1;
|
||||
}
|
||||
|
||||
|
||||
int col_max, col_w, col_h, y;
|
||||
int row, col;
|
||||
|
||||
byte key_process(dword key_value, key_name, sec_name, f_name)
|
||||
{
|
||||
int tmp;
|
||||
int icon_n;
|
||||
|
||||
|
||||
if (col==col_max) {
|
||||
row++;
|
||||
col=0;
|
||||
}
|
||||
DefineButton(col*col_w+6,row*col_h+y,col_w,col_h-10,row*col_max+col+100+BT_HIDE,0);
|
||||
tmp = col_w/2;
|
||||
icon_n = atoi(key_value + strchr(key_value, ','));
|
||||
img_draw stdcall(skin.image, col*col_w+tmp-10, row*col_h+5+y, 32, 32, 0, icon_n*32);
|
||||
WriteTextCenter(col*col_w+7,row*col_h+47+y,col_w,0xD4D4d4,key_name);
|
||||
WriteTextCenter(col*col_w+6,row*col_h+46+y,col_w,0x000000,key_name);
|
||||
col++;
|
||||
return 1;
|
||||
}
|
||||
|
||||
void draw_window()
|
||||
{
|
||||
int row, col, col_max=8;
|
||||
int col_w=68, col_h=70;
|
||||
int tmp,y=25;
|
||||
y = 25;
|
||||
DrawBar(0,0,Form.cwidth, y-1, sc.work);
|
||||
DrawBar(0,y-1, Form.cwidth, 1, sc.work_graph);
|
||||
DrawBar(0,y, Form.cwidth, Form.cheight-y, 0xF3F3F3);
|
||||
WriteTextB(Form.cwidth/2-70, 9, 0x90, sc.work_text, "KolibriOS Game Center");
|
||||
y += 2;
|
||||
col_max=8;
|
||||
col_w=68;
|
||||
col_h=70;
|
||||
col = row = 0;
|
||||
|
||||
y += 7;
|
||||
for (col=0, row=0; games[row*col_max+col].name!=0; col++)
|
||||
{
|
||||
if (col==col_max) {
|
||||
row++;
|
||||
col=0;
|
||||
}
|
||||
DefineButton(col*col_w+6,row*col_h+y,col_w,col_h,row*col_max+col+100+BT_HIDE,0);
|
||||
tmp = col_w/2;
|
||||
img_draw stdcall(skin.image, col*col_w+tmp-10, row*col_h+5+y, 32, 32, 0, games[row*col_max+col].icon*32);
|
||||
WriteTextCenter(col*col_w+7,row*col_h+47+y,col_w,0xD4D4d4,games[row*col_max+col].name);
|
||||
WriteTextCenter(col*col_w+6,row*col_h+46+y,col_w,0x000000,games[row*col_max+col].name);
|
||||
}
|
||||
ini_enum_keys stdcall ("/sys/settings/games.ini", "Games", #key_process);
|
||||
}
|
||||
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user