Advertisement
Coriic

IDEOLO

Jan 3rd, 2016
92
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 25.21 KB | None | 0 0
  1. program statki;
  2.  
  3. uses allegro, crt, dos;
  4.  
  5. type
  6. tablica=ARRAY[-1..11,-1..11] of integer;
  7.  
  8. const
  9. ScreenWidth= 1200;
  10. ScreenHeight= 720;
  11.  
  12. var
  13. tab1, tab2, tab1_c, tab2_c : tablica;
  14. litery : ARRAY [1..20] of string;
  15. mx, my, mb, tryb : integer;
  16.  
  17. procedure inicjalizuj();
  18. var
  19. i, j: integer;
  20. begin
  21. al_init;
  22. al_install_keyboard;
  23. al_install_mouse;
  24. al_set_color_depth(32);
  25. al_set_gfx_mode(Al_GFX_AUTODETECT_WINDOWED,ScreenWidth,ScreenHeight,0,0);
  26. al_show_mouse( al_screen );
  27. al_unscare_mouse();
  28. for i:=0 to 11 do
  29. begin
  30. for j:=0 to 11 do
  31. begin
  32. tab1[i][j]:=0;
  33. tab2[i][j]:=0;
  34. tab1_c[i][j]:=0;
  35. tab2_c[i][j]:=0;
  36. end;
  37. end;
  38. litery[1]:='A';
  39. litery[2]:='B';
  40. litery[3]:='C';
  41. litery[4]:='D';
  42. litery[5]:='E';
  43. litery[6]:='F';
  44. litery[7]:='G';
  45. litery[8]:='H';
  46. litery[9]:='I';
  47. litery[10]:='J';
  48. litery[11]:='1';
  49. litery[12]:='2';
  50. litery[13]:='3';
  51. litery[14]:='4';
  52. litery[15]:='5';
  53. litery[16]:='6';
  54. litery[17]:='7';
  55. litery[18]:='8';
  56. litery[19]:='9';
  57. litery[20]:='10';
  58. end;
  59.  
  60. procedure pozycja_myszki();
  61. begin
  62. if ((mx <> al_mouse_x) AND (my <> al_mouse_y) AND (mb <> al_mouse_b)) then
  63. begin
  64. mx:=al_mouse_x;
  65. my:=al_mouse_y;
  66. mb:=al_mouse_b;
  67. end;
  68. end;
  69.  
  70. procedure clear ();
  71. begin
  72. al_clear_to_color( al_screen, al_makecol( 0, 0, 0 ) );
  73. end;
  74.  
  75. procedure wyswietl_c (var tab : tablica);
  76. var
  77. i, j : integer;
  78. begin
  79. for i:=1 to 10 do
  80. begin
  81. for j:=1 to 10 do
  82. begin
  83. if (tab[i][j]>0) then
  84. begin
  85. al_rectfill( al_screen, (j-1)*30+435, (i-1)*30+65, j*30+430, i*30+60, al_makecol( 200, 30, 30 ) );
  86. al_rect( al_screen, (j-1)*30+435, (i-1)*30+65, j*30+430, i*30+60, al_makecol( 200, 30, 30 ) );
  87. end;
  88. end;
  89. end;
  90. end;
  91.  
  92. procedure wyswietl (var tab : tablica; var tab_c:tablica; gracz : string; parametr : integer);
  93. var
  94. i, j : integer;
  95. begin
  96. al_textout_ex(al_screen, al_font,gracz, 350, 10, al_makecol(200,200,200), -1);
  97. for i:=1 to 10 do
  98. begin
  99. for j:=1 to 10 do
  100. begin
  101. if (tab_c[i][j]=0) then
  102. begin
  103. al_rectfill( al_screen, (j-1)*30+35, (i-1)*30+65, j*30+30, i*30+60, al_makecol( 128, 30, 30 ) );
  104. al_rect( al_screen, (j-1)*30+35, (i-1)*30+65, j*30+30, i*30+60, al_makecol( 128, 30, 30 ) );
  105. end;
  106. if (tab_c[i][j]=-1) then
  107. begin
  108. al_rectfill( al_screen, (j-1)*30+35, (i-1)*30+65, j*30+30, i*30+60, al_makecol( 0, 0, 0 ) );
  109. al_rect( al_screen, (j-1)*30+35, (i-1)*30+65, j*30+30, i*30+60, al_makecol( 200, 200, 200 ) );
  110. end;
  111. if (tab_c[i][j]=-2) then
  112. begin
  113. al_rectfill( al_screen, (j-1)*30+35, (i-1)*30+65, j*30+30, i*30+60, al_makecol( 200, 200, 200 ) );
  114. al_rect( al_screen, (j-1)*30+35, (i-1)*30+65, j*30+30, i*30+60, al_makecol( 200, 200, 200 ) );
  115. end;
  116. if (tab_c[i][j]=-3) then
  117. begin
  118. al_rectfill( al_screen, (j-1)*30+35, (i-1)*30+65, j*30+30, i*30+60, al_makecol( 255, 255, 0 ) );
  119. al_rect( al_screen, (j-1)*30+35, (i-1)*30+65, j*30+30, i*30+60, al_makecol( 200, 200, 200 ) );
  120. end;
  121. end;
  122. end;
  123. for i:=1 to 10 do
  124. begin
  125. for j:=1 to 10 do
  126. begin
  127. if (tab[i][j]=0) then
  128. begin
  129. al_rectfill( al_screen, (j-1)*30+435, (i-1)*30+65, j*30+430, i*30+60, al_makecol( 128, 30, 30 ) );
  130. al_rect( al_screen, (j-1)*30+435, (i-1)*30+65, j*30+430, i*30+60, al_makecol( 128, 30, 30 ) );
  131. end;
  132. if (tab[i][j]>0) then
  133. begin
  134. al_rectfill( al_screen, (j-1)*30+435, (i-1)*30+65, j*30+430, i*30+60, al_makecol( 200, 30, 30 ) );
  135. al_rect( al_screen, (j-1)*30+435, (i-1)*30+65, j*30+430, i*30+60, al_makecol( 200, 30, 30 ) );
  136. end;
  137. if (tab[i][j]=-1) then
  138. begin
  139. al_rectfill( al_screen, (j-1)*30+435, (i-1)*30+65, j*30+430, i*30+60, al_makecol( 0, 0, 0 ) );
  140. al_rect( al_screen, (j-1)*30+435, (i-1)*30+65, j*30+430, i*30+60, al_makecol( 200, 200, 200 ) );
  141. end;
  142. if ((tab[i][j]=-10) OR (tab[i][j]=-11)) then
  143. begin
  144. al_rectfill( al_screen, (j-1)*30+435, (i-1)*30+65, j*30+430, i*30+60, al_makecol( 0, 0, 0 ) );
  145. al_rect( al_screen, (j-1)*30+435, (i-1)*30+65, j*30+430, i*30+60, al_makecol( 200, 200, 200 ) );
  146. al_line( al_screen, (j-1)*30+435, (i-1)*30+65, j*30+430, i*30+60, al_makecol( 200, 200, 200 ) );
  147. al_line( al_screen, (j-1)*30+435, (i-1)*30+90, j*30+430, i*30+35, al_makecol( 200, 200, 200 ) );
  148. end;
  149. end;
  150. end;
  151. al_textout_ex(al_screen, al_font,'Twoje statki', 540, 30, al_makecol(200,200,200), -1);
  152. al_textout_ex(al_screen, al_font,'Twoje strzaly', 130, 30, al_makecol(200,200,200), -1);
  153. for i:=1 to 10 do
  154. begin
  155. al_textout_ex(al_screen, al_font,litery[i], (i-1)*30+44, 50, al_makecol(200,200,200), -1);
  156. al_textout_ex(al_screen, al_font,litery[i], (i-1)*30+444, 50, al_makecol(200,200,200), -1);
  157. end;
  158. for i:=11 to 20 do
  159. begin
  160. al_textout_ex(al_screen, al_font, litery[i], 15, (i-11)*30+73, al_makecol(200,200,200), -1);
  161. al_textout_ex(al_screen, al_font, litery[i], 415, (i-11)*30+73, al_makecol(200,200,200), -1);
  162. end;
  163. if (parametr>=-1) then
  164. begin
  165. al_textout_ex(al_screen, al_font,'Stworz:', 750, 50, al_makecol(200,200,200), -1);
  166. al_textout_ex(al_screen, al_font,'1x czteromasztowiec', 750, 70, al_makecol(200,200,200), -1);
  167. al_textout_ex(al_screen, al_font,'2x trojmasztowiec', 750, 90, al_makecol(200,200,200), -1);
  168. al_textout_ex(al_screen, al_font,'3x dwumasztowiec', 750, 110, al_makecol(200,200,200), -1);
  169. al_textout_ex(al_screen, al_font,'4x jednomasztowiec', 750, 130, al_makecol(200,200,200), -1);
  170. end;
  171. if (parametr>=0) then
  172. begin
  173. al_line( al_screen, 750, (parametr*20)+75, 900, (parametr*20)+75, al_makecol( 200, 200, 200 ) );
  174. end;
  175. if (parametr=-2) then
  176. begin
  177. al_textout_ex(al_screen, al_font,'Legenda:', 750, 70, al_makecol(200,200,200), -1);
  178. al_rectfill( al_screen, 750, 90 , 780, 120, al_makecol( 0, 0, 0 ) );
  179. al_rect( al_screen, 750, 90, 780, 120, al_makecol( 200, 200, 200 ) );
  180. al_textout_ex(al_screen, al_font,'-pudlo', 790, 105, al_makecol(200,200,200), -1);
  181. al_rectfill( al_screen, 750, 130 , 780, 160, al_makecol( 200, 200, 200 ) );
  182. al_rect( al_screen, 750, 130, 780, 160, al_makecol( 200, 200, 200 ) );
  183. al_textout_ex(al_screen, al_font,'-trafiony, niezatopiony', 790, 145, al_makecol(200,200,200), -1);
  184. al_rectfill( al_screen, 750, 170 , 780, 200, al_makecol( 255, 255 , 0 ) );
  185. al_rect( al_screen, 750, 170, 780, 200, al_makecol( 200, 200, 200 ) );
  186. al_textout_ex(al_screen, al_font,'-trafiony, zatopiony', 790, 185, al_makecol(200,200,200), -1);
  187. al_rectfill( al_screen, 750, 210 , 780, 240, al_makecol( 200, 30 , 30 ) );
  188. al_rect( al_screen, 750, 210, 780, 240, al_makecol( 200, 200, 200 ) );
  189. al_textout_ex(al_screen, al_font,'-twoj statek', 790, 225, al_makecol(200,200,200), -1);
  190. al_rectfill( al_screen, 750, 250, 780, 280, al_makecol( 0, 0, 0 ) );
  191. al_rect( al_screen, 750, 250, 780, 280, al_makecol( 200, 200, 200 ) );
  192. al_line( al_screen, 750, 250, 780, 280, al_makecol( 200, 200, 200 ) );
  193. al_line( al_screen, 750, 280, 780, 250, al_makecol( 200, 200, 200 ) );
  194. al_textout_ex(al_screen, al_font,'-strzaly przeciwnika', 790, 265, al_makecol(200,200,200), -1);
  195. end;
  196. al_rectfill( al_screen, 10, 660 , 100, 710, al_makecol( 0, 0, 0 ) );
  197. al_rect( al_screen, 10, 660, 100, 710, al_makecol( 200, 200, 200 ) );
  198. al_textout_ex(al_screen, al_font,'Wyjdz', 35, 685, al_makecol(200,200,200), -1);
  199. end;
  200.  
  201. function warunek_tworzenia_1(var tab : tablica; d : integer) : boolean;
  202. begin
  203. if (((tab[((my-65)DIV 30)+2][((mx-435)DIV 30)]=d) OR (tab[((my-65)DIV 30)+2][((mx-435)DIV 30)]=0)) AND ((tab[((my-65)DIV 30)+2][((mx-435)DIV 30)+1]=d) OR (tab[((my-65)DIV 30)+2][((mx-435)DIV 30)+1]=0)) AND ((tab[((my-65)DIV 30)+2][((mx-435)DIV 30)+2]=d) OR (tab[((my-65)DIV 30)+2][((mx-435)DIV 30)+2]=0)) AND ((tab[((my-65)DIV 30)+1][((mx-435)DIV 30)+2]=d) OR (tab[((my-65)DIV 30)+1][((mx-435)DIV 30)+2]=0)) AND ((tab[((my-65)DIV 30)+1][((mx-435)DIV 30)]=d) OR (tab[((my-65)DIV 30)+1][((mx-435)DIV 30)]=0)) AND ((tab[((my-65)DIV 30)][((mx-435)DIV 30)]=d) OR (tab[((my-65)DIV 30)][((mx-435)DIV 30)]=0)) AND ((tab[((my-65)DIV 30)][((mx-435)DIV 30)+1]=d) OR (tab[((my-65)DIV 30)][((mx-435)DIV 30)+1]=0)) AND ((tab[((my-65)DIV 30)][((mx-435)DIV 30)+2]=d)OR (tab[((my-65)DIV 30)][((mx-435)DIV 30)+2]=0)))then
  204. warunek_tworzenia_1:=true
  205. else
  206. warunek_tworzenia_1:=false;
  207. end;
  208.  
  209. function warunek_tworzenia_2 (var tab:tablica; i : integer) : boolean;
  210. begin
  211. if (((tab[((my-65)DIV 30)+2][((mx-435)DIV 30)+1]=i) OR (tab[((my-65)DIV 30)+1][((mx-435)DIV 30)+2]=i) OR (tab[((my-65)DIV 30)+1][((mx-435)DIV 30)]=i) OR (tab[((my-65)DIV 30)][((mx-435)DIV 30)+1]=i))AND (tab[((my-65)DIV 30)+1][((mx-435)DIV 30)+1]=0)) then
  212. warunek_tworzenia_2:=true
  213. else
  214. warunek_tworzenia_2:=false;
  215. end;
  216.  
  217. procedure koniec(wygrany : string);
  218. begin
  219. al_textout_centre_ex(al_screen,al_font,'KONIEC GRY', ScreenWidth div 2, ScreenHeight div 3, al_makecol(200,200,200), -1);
  220. al_textout_centre_ex(al_screen,al_font,'Wygral:', ScreenWidth div 2-30, ScreenHeight div 3+15, al_makecol(200,200,200), -1);
  221. al_textout_centre_ex(al_screen,al_font,wygrany, (ScreenWidth div 2)+42, ScreenHeight div 3+15, al_makecol(200,200,200), -1);
  222. al_readkey;
  223. halt;
  224. end;
  225.  
  226. function przekroczenie_1( a: integer; b: integer; c: integer; d: integer):boolean;
  227. begin
  228. if ((mb=1) AND (((mx<a) OR (mx>b)) OR ((my<c) OR (my>d)))) then
  229. begin
  230. al_textout_ex(al_screen, al_font, 'Jestes poza plansza', 310, 450, al_makecol(200,200,200), -1);
  231. przekroczenie_1 :=true;
  232. if ((mx>10) AND (mx<100) AND(my>660) AND (my<710)) then
  233. begin
  234. al_rectfill( al_screen, 10, 660 , 100, 710, al_makecol( 200, 200, 200 ) );
  235. al_rect( al_screen, 10, 660, 100, 710, al_makecol( 200, 200, 200 ) );
  236. al_textout_ex(al_screen, al_font,'Wyjdz', 35, 685, al_makecol(0,0,0), -1);
  237. delay(500);
  238. clear();
  239. koniec('pies');
  240. end;
  241. end
  242. else
  243. begin
  244. al_textout_ex(al_screen, al_font, 'Jestes poza plansza', 310, 450, al_makecol(0,0,0), -1);
  245. przekroczenie_1:=false;
  246. end;
  247. end;
  248.  
  249. procedure tworzenie_4(var tab : tablica;var tab_c :tablica; gracz : string);
  250. var
  251. m : integer;
  252. begin
  253. m:=0;
  254. al_textout_ex(al_screen, al_font, 'Stworz 4 masztowiec', 310, 400, al_makecol(200,200,200), -1);
  255. wyswietl(tab,tab_c, gracz, -1);
  256. repeat
  257. begin
  258. mb:=0;
  259. repeat
  260. pozycja_myszki();
  261. przekroczenie_1(435,750,65,360);
  262. until ((mb=1)AND (przekroczenie_1(435,750,65,360)=false));
  263. if (m=0) then
  264. begin
  265. tab[((my-65)DIV 30)+1][((mx-435)DIV 30)+1]:=10;
  266. m:=m+1;
  267. al_rectfill( al_screen, 240, 415 , 1000, 440, al_makecol( 0, 0, 0 ) );
  268. end
  269. else
  270. begin
  271. if (warunek_tworzenia_2(tab, 10)=true) then
  272. begin
  273. tab[((my-65)DIV 30)+1][((mx-435)DIV 30)+1]:=10;
  274. m:=m+1;
  275. al_rectfill( al_screen, 240, 415 , 1000, 440, al_makecol( 0, 0, 0 ) );
  276. end
  277. else if (warunek_tworzenia_2(tab, 10)=false) then
  278. begin
  279. al_textout_ex(al_screen, al_font, 'Statek musi byc polaczony', 250, 420, al_makecol(200,200,200), -1);
  280. end;
  281. end;
  282. end;
  283. wyswietl_c(tab);
  284. until (m=4);
  285. wyswietl_c(tab);
  286. end;
  287.  
  288. procedure tworzenie_3(var tab: tablica; var tab_c :tablica; gracz : string);
  289. var
  290. m, d, p : integer;
  291. begin
  292. al_textout_ex(al_screen, al_font, 'Stworz 4 masztowiec', 310, 400, al_makecol(0,0,0), -1);
  293. for d:=8 to 9 do
  294. begin
  295. wyswietl(tab,tab_c, gracz,0);
  296. m:=0;
  297. al_textout_ex(al_screen, al_font, 'Stworz 3 masztowiec', 310, 400, al_makecol(200,200,200), -1);
  298. wyswietl_c(tab);
  299. repeat
  300. begin
  301. mb:=0;
  302. repeat
  303. pozycja_myszki();
  304. przekroczenie_1(435,750,65,360);
  305. until ((mb=1) AND (przekroczenie_1(435,750,65,360)=false));
  306. if (warunek_tworzenia_1(tab, d)=true) then
  307. begin
  308. if (m>=1) then
  309. begin
  310. if (warunek_tworzenia_2(tab,d)=true) then
  311. begin
  312. tab[((my-65)DIV 30)+1][((mx-435)DIV 30)+1]:=d;
  313. m:=m+1;
  314. p:=1;
  315. end
  316. else
  317. begin
  318. al_textout_ex(al_screen, al_font, 'Statek musi byc polaczony', 250, 420, al_makecol(200,200,200), -1);
  319. end;
  320. end
  321. else
  322. begin
  323. tab[((my-65)DIV 30)+1][((mx-435)DIV 30)+1]:=d;
  324. m:=m+1;
  325. p:=1;
  326. end;
  327. al_rectfill( al_screen, 240, 415 , 1000, 440, al_makecol( 0, 0, 0 ) );
  328. end
  329. else if(warunek_tworzenia_1(tab, d)=false) then
  330. begin
  331. al_textout_ex(al_screen, al_font, 'Nowo utworzony statek nie moze dotykac statku wczesniej utworzonego', 310, 420, al_makecol(200,200,200), -1);
  332. p:=1;
  333. end;
  334. if(p=0) then
  335. begin
  336. if (warunek_tworzenia_2(tab, d)=true) then
  337. begin
  338. tab[((my-65)DIV 30)+1][((mx-435)DIV 30)+1]:=d;
  339. al_rectfill( al_screen, 240, 415 , 1000, 440, al_makecol( 0, 0, 0 ) );
  340. m:=m+1;
  341. end
  342. else if(warunek_tworzenia_2(tab, d)=false) then
  343. begin
  344. al_textout_ex(al_screen, al_font, 'Statek musi byc polaczony', 250, 420, al_makecol(200,200,200), -1);
  345.  
  346. end;
  347. end;
  348. wyswietl_c(tab);
  349. end;
  350. p:=0;
  351. until (m=3);
  352. wyswietl_c(tab);
  353. end;
  354. end;
  355.  
  356. procedure tworzenie_2(var tab:tablica; var tab_c : tablica; gracz:string);
  357. var
  358. m, p, b : integer;
  359. begin
  360. al_textout_ex(al_screen, al_font, 'Stworz 3 masztowiec', 310, 400, al_makecol(0,0,0), -1);
  361. for b:=5 to 7 do
  362. begin
  363. wyswietl(tab,tab_c, gracz,1);
  364. m:=0;
  365. al_textout_ex(al_screen, al_font, 'Stworz 2 masztowiec', 310, 400, al_makecol(200,200,200), -1);
  366. wyswietl_c(tab);
  367. repeat
  368. begin
  369. mb:=0;
  370. repeat
  371. pozycja_myszki();
  372. przekroczenie_1(435,750,65,360);
  373. until ((mb=1)AND(przekroczenie_1(435,750,65,360)=false));
  374. if(warunek_tworzenia_1(tab, b)=true) then
  375. begin
  376. if (m>0) then
  377. begin
  378. if (warunek_tworzenia_2(tab,b)=true) then
  379. begin
  380. tab[((my-65)DIV 30)+1][((mx-435)DIV 30)+1]:=b;
  381. end
  382. else if (warunek_tworzenia_2(tab,b)=false) then
  383. begin
  384. al_textout_ex(al_screen, al_font, 'Statek musi byc polaczony', 250, 420, al_makecol(200,200,200), -1);
  385. end;
  386. end
  387. else
  388. begin
  389. tab[((my-65)DIV 30)+1][((mx-435)DIV 30)+1]:=b;
  390. end;
  391. al_rectfill( al_screen, 240, 415 , 1000, 440, al_makecol( 0, 0, 0 ) );
  392. m:=m+1;
  393. p:=1;
  394. end
  395. else if(warunek_tworzenia_1(tab, b)=false) then
  396. begin
  397. al_textout_ex(al_screen, al_font, 'Nowo utworzony statek nie moze dotykac statku wczesniej utworzonego', 310, 420, al_makecol(200,200,200), -1);
  398. p:=1;
  399. end;
  400. if (p=0) then
  401. begin
  402. if(warunek_tworzenia_2(tab, b)=true)then
  403. begin
  404. tab[((my-65)DIV 30)+1][((mx-435)DIV 30)+1]:=b;
  405. al_rectfill( al_screen, 240, 415 , 1000, 440, al_makecol( 0, 0, 0 ) );
  406. m:=m+1;
  407. p:=1;
  408. end
  409. else if (warunek_tworzenia_2(tab, b)=false) then
  410. begin
  411. al_textout_ex(al_screen, al_font, 'Statek musi byc polaczony', 250, 420, al_makecol(200,200,200), -1);
  412. end;
  413. end;
  414. wyswietl_c(tab);
  415. end;
  416. p:=1;
  417. until (m=2);
  418. wyswietl_c(tab);
  419. end;
  420. end;
  421.  
  422. procedure tworzenie_1(var tab:tablica; var tab_c : tablica; gracz:string);
  423. var
  424. m, a : integer;
  425. begin
  426. al_textout_ex(al_screen, al_font, 'Stworz 2 masztowiec', 310, 400, al_makecol(0,0,0), -1);
  427. for a:=1 to 4 do
  428. begin
  429. wyswietl(tab,tab_c, gracz,2);
  430. m:=0;
  431. al_textout_ex(al_screen, al_font, 'Stworz 1 masztowiec', 310, 400, al_makecol(200,200,200), -1);
  432. wyswietl_c(tab);
  433. repeat
  434. begin
  435. mb:=0;
  436. repeat
  437. pozycja_myszki();
  438. przekroczenie_1(435,750,65,360);
  439. until ((mb=1) AND (przekroczenie_1(435,750,65,360)=false));
  440. if((warunek_tworzenia_1(tab,a)=true) AND (tab[((my-65)DIV 30)+1][((mx-435)DIV 30)+1]=0))then
  441. begin
  442. tab[((my-65)DIV 30)+1][((mx-435)DIV 30)+1]:=a;
  443. al_rectfill( al_screen, 240, 415 , 1000, 440, al_makecol( 0, 0, 0 ) );
  444. m:=m+1;
  445. end
  446. else if(warunek_tworzenia_1(tab,a)=false) then
  447. begin
  448. al_textout_ex(al_screen, al_font, 'Nowo utworzony statek nie moze dotykac statku wczesniej utworzonego', 310, 420, al_makecol(200,200,200), -1);
  449. end
  450. else if (tab[((my-65)DIV 30)+1][((mx-435)DIV 30)+1]<>0) then
  451. begin
  452. al_textout_ex(al_screen, al_font, 'Tu jest statek', 310, 420, al_makecol(200,200,200), -1);
  453. end
  454. end;
  455. wyswietl_c(tab);
  456. until (m=1);
  457. wyswietl_c(tab);
  458. end;
  459. wyswietl_c(tab);
  460. delay(1000);
  461. end;
  462.  
  463. procedure tworzenie(var tab:tablica; var tab_c : tablica; gracz : string);
  464. begin
  465. tworzenie_4(tab,tab_c, gracz);
  466. tworzenie_3(tab,tab_c, gracz);
  467. tworzenie_2(tab,tab_c, gracz);
  468. tworzenie_1(tab,tab_c, gracz);
  469. end;
  470.  
  471.  
  472. procedure przerwa();
  473. var
  474. m: integer;
  475. begin
  476. al_clear_to_color( al_screen, al_makecol( 0, 0, 0 ) );
  477. for m:=20 downto 11 do
  478. begin
  479. al_textout_ex(al_screen, al_font, 'Zmiana zawodnika, masz sekund', 310, 300, al_makecol(200,200,200), -1);
  480. al_textout_ex(al_screen, al_font, litery[m], 500, 300, al_makecol(200,200,200), -1);
  481. delay(1000);
  482. al_clear_to_color( al_screen, al_makecol( 0, 0, 0 ) );
  483. end;
  484. al_clear_to_color( al_screen, al_makecol( 0, 0, 0 ) );
  485. end;
  486.  
  487. function powitalny() : byte;
  488. begin
  489. al_textout_centre_ex(al_screen,al_font,'WITAJ W GRZE W STATKI', ScreenWidth div 2, ScreenHeight div 3, al_makecol(200,200,200), -1);
  490. al_textout_ex(al_screen, al_font, 'Wykonal: Kamil Sobolewski Informatyka EAIIB 2015', 800, 700, al_makecol(200,200,200), -1);
  491. al_rectfill( al_screen, 470, 270 , 730, 320, al_makecol( 0, 0, 0 ) );
  492. al_rect( al_screen, 470, 270, 730, 320, al_makecol( 200, 200, 200 ) );
  493. al_textout_ex(al_screen, al_font, 'Gra z innym uzytkownikiem', 500, 295, al_makecol(200,200,200), -1);
  494. al_rectfill( al_screen, 470, 330 , 730, 380, al_makecol( 0, 0, 0 ) );
  495. al_rect( al_screen, 470, 330, 730, 390, al_makecol( 200, 200, 200 ) );
  496. al_textout_ex(al_screen, al_font, 'Gra z komputerem', 540, 360, al_makecol(200,200,200), -1);
  497. repeat
  498. pozycja_myszki();
  499. if((mx>470) AND (mx<730) AND (my<320) AND (my>270))then
  500. begin
  501. al_rectfill( al_screen, 470, 270 , 730, 320, al_makecol( 200, 200, 200 ) );
  502. al_rect( al_screen, 470, 270, 730, 320, al_makecol( 200, 200, 200 ) );
  503. al_textout_ex(al_screen, al_font, 'Gra z innym uzytkownikiem', 500, 295, al_makecol(0,0,0), -1);
  504. end;
  505. if((mx>470) AND (mx<730) AND (my<390) AND (my>330))then
  506. begin
  507. al_rectfill( al_screen, 470, 330 , 730, 390, al_makecol( 200, 200, 200 ) );
  508. al_rect( al_screen, 470, 330, 730, 390, al_makecol( 200, 200, 200 ) );
  509. al_textout_ex(al_screen, al_font, 'Gra z komputerem', 540, 360, al_makecol(0,0,0), -1);
  510. end;
  511. until (mb=1);
  512. if((mx>470) AND (mx<730) AND (my<390) AND (my>330))then
  513. begin
  514. powitalny:=2;
  515. end;
  516. if((mx>470) AND (mx<730) AND (my<320) AND (my>270))then
  517. begin
  518. powitalny:=1;
  519. end;
  520. end;
  521.  
  522. function sprawdzenie ( var tab : tablica; a: integer; b: integer) : integer;
  523. begin
  524. if (tab[a][b]>0) then
  525. begin
  526. if (((tab[a+1][b]=0) OR (tab[a+1][b]=-10)) AND ((tab[a-1][b]=0) OR (tab[a-1][b]=-10)) AND ((tab[a][b+1]=0) OR (tab[a][b+1]=-10)) AND ((tab[a][b-1]=0)OR (tab[a][b-1]=-10)))then
  527. begin
  528. al_textout_ex(al_screen, al_font, 'Trafiony, niezatapiony!', 310, 420, al_makecol(0,0,0), -1);
  529. al_textout_ex(al_screen, al_font, 'Trafiony, zatopiony!', 310, 420, al_makecol(200,200,200), -1);
  530. tab[a][b]:=-11;
  531. sprawdzenie:=1;
  532. end
  533. else
  534. begin
  535. al_textout_ex(al_screen, al_font, 'Trafiony, niezatapiony!', 310, 420, al_makecol(200,200,200), -1);
  536. al_textout_ex(al_screen, al_font, 'Trafiony, zatopiony!', 310, 420, al_makecol(0,0,0), -1);
  537. tab[a][b]:=-10;
  538. sprawdzenie:=2;
  539. end;
  540. end
  541. else
  542. begin
  543. tab[a][b]:=-10;
  544. sprawdzenie:=3;
  545. al_textout_ex(al_screen, al_font, 'Pudlo!', 310, 420, al_makecol(200,200,200), -1);
  546. end;
  547. end;
  548.  
  549. procedure ruch ( var tab : tablica; var tab_c : tablica; var tab_wys : tablica;gracz: string);
  550. var
  551. m, a, b, i, iterator1,iterator2, check : integer;
  552. begin
  553. clear();
  554. m:=0;
  555. i:=0;
  556. wyswietl(tab_wys, tab_c, gracz,-2);
  557. al_textout_ex(al_screen, al_font, 'Twoj ruch, wybierz pole i strzelaj', 310, 400, al_makecol(200,200,200), -1);
  558. repeat
  559. begin
  560. mb:=0;
  561. repeat
  562. pozycja_myszki();
  563. przekroczenie_1(35, 350, 65, 360);
  564. until ((mb=1) AND (przekroczenie_1(35,350,65,360)=false));
  565. if ((tab_c[((my-65)DIV 30)+1][((mx-35)DIV 30)+1]<>-1) AND (tab_c[((my-65)DIV 30)+1][((mx-35) DIV 30)+1]<>-2) AND (tab_c[((my-65)DIV 30)+1][((mx-35) DIV 30)+1]<>-3)) then
  566. begin
  567. a:=((my-65)DIV 30)+1;
  568. b:=((mx-35) DIV 30)+1;
  569. check:=sprawdzenie(tab,a,b);
  570. if (check=1) then
  571. begin
  572. tab_c[a][b]:=-3;
  573. for iterator1:=-3 to 3 do
  574. begin
  575. for iterator2:=-3 to 3 do
  576. begin
  577. if(tab[a+iterator1][b+iterator2]=-10) then
  578. begin
  579. if ((a+iterator1>11) OR (a+iterator1<0) OR (b+iterator2>11) OR (b+iterator2<0)) then
  580. break;
  581. tab[a+iterator1][b+iterator2]:=-11;
  582. tab_c[a+iterator1][b+iterator2]:=-3;
  583. end;
  584. end;
  585. end;
  586. end;
  587. if (check=2) then tab_c[a][b]:=-2;;
  588. if (check=3) then tab_c[a][b]:=-1;
  589. m:=1;
  590. if (i<>0) then
  591. begin
  592. al_textout_ex(al_screen, al_font, 'To pole bylo wybrane wczesniej', 310, 420, al_makecol(0,0,0), -1);
  593. end;
  594. end
  595. else
  596. begin
  597. al_textout_ex(al_screen, al_font, 'To pole bylo wybrane wczesniej', 310, 420, al_makecol(200,200,200), -1);
  598. end;
  599. i:=i+1;
  600. end;
  601. until (m=1);
  602. wyswietl(tab_wys, tab_c, gracz,-2);
  603. delay(1000);
  604. end;
  605.  
  606. function warunek_gry (tab1 : tablica; tab2 : tablica) : integer;
  607. var
  608. i, j : integer;
  609. licznik1, licznik2 : integer;
  610. begin
  611. licznik1:=0;
  612. licznik2:=0;
  613. for i:=1 to 10 do
  614. begin
  615. for j:=1 to 10 do
  616. begin
  617. if (tab1[i][j]<=0) then licznik1:=licznik1+1;
  618. if (tab2[i][j]<=0) then licznik2:=licznik2+1;
  619. end;
  620. end;
  621. if (licznik1=100) then warunek_gry:=0;
  622. if (licznik2=100) then warunek_gry:=1;
  623. if((licznik1<>100) AND (licznik2<>100))then warunek_gry:=2;
  624. end;
  625.  
  626. procedure dwoch_graczy ();
  627. var
  628. wygrany : string;
  629. warunek : integer;
  630. begin
  631. wyswietl(tab1,tab1_c, 'Gracz 1.',-1);
  632. tworzenie(tab1,tab1_c, 'Gracz 1.');
  633. przerwa();
  634. wyswietl(tab2,tab2_c, 'Gracz 2.', -1);
  635. tworzenie(tab2,tab2_c, 'Gracz 2.');
  636. przerwa();
  637. warunek:=5;
  638. repeat
  639. ruch(tab2, tab1_c, tab1, 'Gracz 1.');
  640. warunek:=warunek_gry(tab1,tab2);
  641. if((warunek=0) OR (warunek=1)) then break;
  642. delay(1500);
  643. przerwa();
  644. clear();
  645. ruch(tab1, tab2_c, tab2, 'Gracz 2.');
  646. delay(1500);
  647. warunek:=warunek_gry(tab1,tab2);
  648. if((warunek=0) OR (warunek=1)) then break;
  649. przerwa();
  650. clear();
  651. until ((warunek=0) OR (warunek=1));
  652. if (warunek_gry(tab1, tab2)=0) then wygrany:='Gracz 2.';
  653. if (warunek_gry(tab1, tab2)=1) then wygrany:='Gracz 1.';
  654. clear();
  655. koniec(wygrany);
  656. end;
  657.  
  658. procedure komputer ();
  659. begin
  660. al_textout_ex(al_screen, al_font, 'Robim co mozem', 310, 420, al_makecol(200,200,200), -1);
  661. {wyswietl(tab1,tab1_c, 'Gracz 1.',-1);
  662. tworzenie(tab1,tab1_c, 'Gracz 1.');}
  663. end;
  664.  
  665. begin
  666. inicjalizuj();
  667. tryb:=powitalny();
  668. delay(500);
  669. clear();
  670. case tryb of
  671. 1 : dwoch_graczy();
  672. 2 : komputer();
  673. end;
  674. al_readkey;
  675. al_exit();
  676. end.
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement