Added sources of the following games: bnc, checkers, fara, FindNumbers, gomoku, reversi, rforces, sq_game, sudoku, whowtbam, xonix.
git-svn-id: svn://kolibrios.org@1805 a494cfbc-eb01-0410-851d-a64ba20cac60
2011-01-30 11:48:08 +01:00
|
|
|
|
//(C) Artemonische, 2010
|
|
|
|
|
|
|
|
|
|
#pragma option meos
|
|
|
|
|
//#include "..\lib\kolibri.h--" //<2F><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>砥<EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>⥪<EFBFBD> <20> KolibriOS API
|
|
|
|
|
#include "kolibri.h--"
|
|
|
|
|
|
|
|
|
|
int find=10;
|
|
|
|
|
struct
|
|
|
|
|
{
|
|
|
|
|
int x;
|
|
|
|
|
int y;
|
|
|
|
|
int button_id;
|
|
|
|
|
int mark;
|
|
|
|
|
int text;
|
|
|
|
|
}box[81];
|
|
|
|
|
|
|
|
|
|
void main()
|
|
|
|
|
{
|
|
|
|
|
int button,tempi,tempj;
|
|
|
|
|
randomize();
|
|
|
|
|
initialization();
|
|
|
|
|
draw_window();
|
|
|
|
|
draw_buttons();
|
|
|
|
|
loop()
|
|
|
|
|
{
|
|
|
|
|
switch(WaitEvent())
|
|
|
|
|
{
|
2011-02-01 11:56:00 +01:00
|
|
|
|
case evButton:
|
Added sources of the following games: bnc, checkers, fara, FindNumbers, gomoku, reversi, rforces, sq_game, sudoku, whowtbam, xonix.
git-svn-id: svn://kolibrios.org@1805 a494cfbc-eb01-0410-851d-a64ba20cac60
2011-01-30 11:48:08 +01:00
|
|
|
|
button=GetButtonID();
|
2011-02-01 12:20:03 +01:00
|
|
|
|
IF (button==1)
|
Added sources of the following games: bnc, checkers, fara, FindNumbers, gomoku, reversi, rforces, sq_game, sudoku, whowtbam, xonix.
git-svn-id: svn://kolibrios.org@1805 a494cfbc-eb01-0410-851d-a64ba20cac60
2011-01-30 11:48:08 +01:00
|
|
|
|
{
|
|
|
|
|
ExitProcess();
|
|
|
|
|
}
|
2011-02-01 12:20:03 +01:00
|
|
|
|
IF (button==582)
|
Added sources of the following games: bnc, checkers, fara, FindNumbers, gomoku, reversi, rforces, sq_game, sudoku, whowtbam, xonix.
git-svn-id: svn://kolibrios.org@1805 a494cfbc-eb01-0410-851d-a64ba20cac60
2011-01-30 11:48:08 +01:00
|
|
|
|
{
|
|
|
|
|
find=10;
|
|
|
|
|
initialization();
|
|
|
|
|
draw_window();
|
|
|
|
|
draw_buttons();
|
|
|
|
|
}
|
|
|
|
|
if (button>500) && (button<582) && (box[button-500].text == find)
|
|
|
|
|
{
|
|
|
|
|
box[button-500].mark=2;
|
|
|
|
|
find++;
|
2011-02-01 12:20:03 +01:00
|
|
|
|
IF (find==91)
|
Added sources of the following games: bnc, checkers, fara, FindNumbers, gomoku, reversi, rforces, sq_game, sudoku, whowtbam, xonix.
git-svn-id: svn://kolibrios.org@1805 a494cfbc-eb01-0410-851d-a64ba20cac60
2011-01-30 11:48:08 +01:00
|
|
|
|
{
|
|
|
|
|
draw_window();
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
DeleteButton(button);
|
|
|
|
|
tempi=box[button-500].y*30-30;
|
|
|
|
|
tempj=30*box[button-500].x-16;
|
|
|
|
|
DrawBar(tempi,tempj,30,30,0xDCFFDC);
|
|
|
|
|
DrawBar(70,289,16,8,0xDCFFDC);
|
|
|
|
|
DrawBar(252,289,16,8,0xDCFFDC);
|
|
|
|
|
WriteNumber(70,289,0x80,0,find);
|
|
|
|
|
WriteNumber(252,289,0x80,0,90-find+1);
|
|
|
|
|
}
|
|
|
|
|
}
|
2011-02-01 12:20:03 +01:00
|
|
|
|
BREAK;
|
2011-02-01 11:56:00 +01:00
|
|
|
|
case evKey: //<2F> <20>ந<EFBFBD><E0AEA8>諮 <20><><EFBFBD><EFBFBD>⨥ <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
|
2011-02-01 12:20:03 +01:00
|
|
|
|
IF (GetKey()==051)
|
Added sources of the following games: bnc, checkers, fara, FindNumbers, gomoku, reversi, rforces, sq_game, sudoku, whowtbam, xonix.
git-svn-id: svn://kolibrios.org@1805 a494cfbc-eb01-0410-851d-a64ba20cac60
2011-01-30 11:48:08 +01:00
|
|
|
|
{
|
|
|
|
|
find=10;
|
|
|
|
|
initialization();
|
|
|
|
|
draw_window();
|
|
|
|
|
draw_buttons();
|
|
|
|
|
}
|
2011-02-01 12:20:03 +01:00
|
|
|
|
BREAK;
|
2011-02-01 11:56:00 +01:00
|
|
|
|
case evReDraw:
|
Added sources of the following games: bnc, checkers, fara, FindNumbers, gomoku, reversi, rforces, sq_game, sudoku, whowtbam, xonix.
git-svn-id: svn://kolibrios.org@1805 a494cfbc-eb01-0410-851d-a64ba20cac60
2011-01-30 11:48:08 +01:00
|
|
|
|
draw_window();
|
|
|
|
|
draw_buttons();
|
2011-02-01 11:56:00 +01:00
|
|
|
|
break;
|
Added sources of the following games: bnc, checkers, fara, FindNumbers, gomoku, reversi, rforces, sq_game, sudoku, whowtbam, xonix.
git-svn-id: svn://kolibrios.org@1805 a494cfbc-eb01-0410-851d-a64ba20cac60
2011-01-30 11:48:08 +01:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
ExitProcess();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void draw_window()
|
|
|
|
|
{
|
|
|
|
|
WindowRedrawStatus(1); //<2F><>砫<EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ᮢ<EFBFBD><E1AEA2> <20><><EFBFBD><EFBFBD>
|
|
|
|
|
DefineAndDrawWindow(300,176,280,340,0x34,0xDCFFDC,0,0,"FindNumbers v1.1"); //<2F><><EFBFBD>㥬 <20><><EFBFBD><EFBFBD>
|
|
|
|
|
DrawBar(0,13,271,1,0x0CFF0C); //<2F><><EFBFBD><EFBFBD><EFBFBD> ᢥ<><E1A2A5><EFBFBD>
|
|
|
|
|
DrawBar(0,285,271,1,0x0CFF0C);
|
|
|
|
|
DrawBar(0,299,271,1,0x0CFF0C); //<2F><><EFBFBD><EFBFBD><EFBFBD> ᭨<><E1ADA8>
|
|
|
|
|
if (find<=90)
|
|
|
|
|
{
|
|
|
|
|
WriteText(4,4,0x80,0x000000,"<22><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD> <20><> <20><> 10 <20><> 90 <20><> <20><><EFBFBD>浪<EFBFBD>...");
|
|
|
|
|
WriteText(4,289,0x80,0x000000,"<22>饬 <20><>: ");
|
|
|
|
|
WriteText(162,289,0x80,0x000000,"<22><>⠫<EFBFBD><E2A0AB><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD>: ");
|
|
|
|
|
WriteNumber(70,289,0x80,0,find);
|
|
|
|
|
WriteNumber(252,289,0x80,0,90-find+1);
|
|
|
|
|
DrawFlatButton(155,300,115,14,582,0xAFFFAF,"<22><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> (F2)");
|
|
|
|
|
WriteText(4,304,0x80,0x000000,"Made by Artemonische,2010");
|
|
|
|
|
}
|
2011-02-01 12:20:03 +01:00
|
|
|
|
IF (find==91)
|
Added sources of the following games: bnc, checkers, fara, FindNumbers, gomoku, reversi, rforces, sq_game, sudoku, whowtbam, xonix.
git-svn-id: svn://kolibrios.org@1805 a494cfbc-eb01-0410-851d-a64ba20cac60
2011-01-30 11:48:08 +01:00
|
|
|
|
{
|
|
|
|
|
WriteText(70,100,0x80,0x000000,"<22><> <20><>諨 <20><><EFBFBD> <20><>! :)");
|
|
|
|
|
DrawFlatButton(100,110,70,20,582,0xE4DFE1,"<22><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> (F2)");
|
|
|
|
|
}
|
|
|
|
|
WindowRedrawStatus(2); //<2F><><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ᮢ<EFBFBD><E1AEA2> <20><><EFBFBD><EFBFBD>
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void draw_buttons()
|
|
|
|
|
{
|
|
|
|
|
int i,tempi,tempj;
|
2011-02-01 12:20:03 +01:00
|
|
|
|
FOR (i=1;i<=81;i++)
|
Added sources of the following games: bnc, checkers, fara, FindNumbers, gomoku, reversi, rforces, sq_game, sudoku, whowtbam, xonix.
git-svn-id: svn://kolibrios.org@1805 a494cfbc-eb01-0410-851d-a64ba20cac60
2011-01-30 11:48:08 +01:00
|
|
|
|
{
|
2011-02-01 12:38:36 +01:00
|
|
|
|
IF (box[i].mark==1)
|
Added sources of the following games: bnc, checkers, fara, FindNumbers, gomoku, reversi, rforces, sq_game, sudoku, whowtbam, xonix.
git-svn-id: svn://kolibrios.org@1805 a494cfbc-eb01-0410-851d-a64ba20cac60
2011-01-30 11:48:08 +01:00
|
|
|
|
{
|
|
|
|
|
tempi=box[i].y*30-30;
|
|
|
|
|
tempj=30*box[i].x-16;
|
|
|
|
|
DefineButton(tempi,tempj,29,29,box[i].button_id,0xAFFFAF);
|
|
|
|
|
WriteNumber(tempi+11,tempj+11,0x80,0,box[i].text);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void initialization()
|
|
|
|
|
{
|
|
|
|
|
int i,j,t;
|
|
|
|
|
t=0;
|
2011-02-01 12:20:03 +01:00
|
|
|
|
FOR (i=1;i<=9;i++)
|
Added sources of the following games: bnc, checkers, fara, FindNumbers, gomoku, reversi, rforces, sq_game, sudoku, whowtbam, xonix.
git-svn-id: svn://kolibrios.org@1805 a494cfbc-eb01-0410-851d-a64ba20cac60
2011-01-30 11:48:08 +01:00
|
|
|
|
{
|
2011-02-01 12:20:03 +01:00
|
|
|
|
FOR (j=1;j<=9;j++)
|
Added sources of the following games: bnc, checkers, fara, FindNumbers, gomoku, reversi, rforces, sq_game, sudoku, whowtbam, xonix.
git-svn-id: svn://kolibrios.org@1805 a494cfbc-eb01-0410-851d-a64ba20cac60
2011-01-30 11:48:08 +01:00
|
|
|
|
{
|
|
|
|
|
t++;
|
|
|
|
|
box[t].x=j;
|
|
|
|
|
box[t].y=i;
|
|
|
|
|
box[t].mark=1;
|
|
|
|
|
box[t].button_id=500+t;
|
|
|
|
|
box[t].text=Generate(t);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
int Generate(int xx)
|
|
|
|
|
{
|
|
|
|
|
int temp,k,p;
|
|
|
|
|
p=2;
|
2011-02-01 12:20:03 +01:00
|
|
|
|
WHILE (p==2)
|
Added sources of the following games: bnc, checkers, fara, FindNumbers, gomoku, reversi, rforces, sq_game, sudoku, whowtbam, xonix.
git-svn-id: svn://kolibrios.org@1805 a494cfbc-eb01-0410-851d-a64ba20cac60
2011-01-30 11:48:08 +01:00
|
|
|
|
{
|
|
|
|
|
temp=random(81)+10;
|
|
|
|
|
p=1;
|
2011-02-01 12:20:03 +01:00
|
|
|
|
FOR (k=1; k<xx; k++)
|
Added sources of the following games: bnc, checkers, fara, FindNumbers, gomoku, reversi, rforces, sq_game, sudoku, whowtbam, xonix.
git-svn-id: svn://kolibrios.org@1805 a494cfbc-eb01-0410-851d-a64ba20cac60
2011-01-30 11:48:08 +01:00
|
|
|
|
{
|
2011-02-01 12:20:03 +01:00
|
|
|
|
IF (box[k].text==temp)
|
Added sources of the following games: bnc, checkers, fara, FindNumbers, gomoku, reversi, rforces, sq_game, sudoku, whowtbam, xonix.
git-svn-id: svn://kolibrios.org@1805 a494cfbc-eb01-0410-851d-a64ba20cac60
2011-01-30 11:48:08 +01:00
|
|
|
|
{
|
|
|
|
|
p=2;
|
2011-02-01 12:20:03 +01:00
|
|
|
|
BREAK;
|
Added sources of the following games: bnc, checkers, fara, FindNumbers, gomoku, reversi, rforces, sq_game, sudoku, whowtbam, xonix.
git-svn-id: svn://kolibrios.org@1805 a494cfbc-eb01-0410-851d-a64ba20cac60
2011-01-30 11:48:08 +01:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
return temp;
|
|
|
|
|
}
|
|
|
|
|
stop:
|