Advertisement
Coriic

STATKI 03.01 24.00

Jan 3rd, 2016
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 25.33 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[((mx-370)DIV 30)][((my-370)DIV 30)]=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. if (tab[((my-65)DIV 30)+1][((mx-435)DIV 30)+1]<>0) then
  451. begin
  452. al_rectfill( al_screen, 240, 415 , 1000, 440, al_makecol( 0, 0, 0 ) );
  453. end
  454. else
  455. begin
  456. al_textout_ex(al_screen, al_font, 'Tu jest statek', 310, 420, al_makecol(0,0,0), -1);
  457. end;
  458. end;
  459. wyswietl_c(tab);
  460. until (m=1);
  461. wyswietl_c(tab);
  462. end;
  463. wyswietl_c(tab);
  464. delay(1000);
  465. end;
  466.  
  467. procedure tworzenie(var tab:tablica; var tab_c : tablica; gracz : string);
  468. begin
  469. tworzenie_4(tab,tab_c, gracz);
  470. tworzenie_3(tab,tab_c, gracz);
  471. tworzenie_2(tab,tab_c, gracz);
  472. tworzenie_1(tab,tab_c, gracz);
  473. end;
  474.  
  475.  
  476. procedure przerwa();
  477. var
  478. m: integer;
  479. begin
  480. al_clear_to_color( al_screen, al_makecol( 0, 0, 0 ) );
  481. for m:=20 downto 11 do
  482. begin
  483. al_textout_ex(al_screen, al_font, 'Zmiana zawodnika, masz sekund', 310, 300, al_makecol(200,200,200), -1);
  484. al_textout_ex(al_screen, al_font, litery[m], 500, 300, al_makecol(200,200,200), -1);
  485. delay(1000);
  486. al_clear_to_color( al_screen, al_makecol( 0, 0, 0 ) );
  487. end;
  488. al_clear_to_color( al_screen, al_makecol( 0, 0, 0 ) );
  489. end;
  490.  
  491. function powitalny() : byte;
  492. begin
  493. 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);
  494. al_textout_ex(al_screen, al_font, 'Wykonal: Kamil Sobolewski Informatyka EAIIB 2015', 800, 700, al_makecol(200,200,200), -1);
  495. al_rectfill( al_screen, 470, 270 , 730, 320, al_makecol( 0, 0, 0 ) );
  496. al_rect( al_screen, 470, 270, 730, 320, al_makecol( 200, 200, 200 ) );
  497. al_textout_ex(al_screen, al_font, 'Gra z innym uzytkownikiem', 500, 295, al_makecol(200,200,200), -1);
  498. al_rectfill( al_screen, 470, 330 , 730, 380, al_makecol( 0, 0, 0 ) );
  499. al_rect( al_screen, 470, 330, 730, 390, al_makecol( 200, 200, 200 ) );
  500. al_textout_ex(al_screen, al_font, 'Gra z komputerem', 540, 360, al_makecol(200,200,200), -1);
  501. repeat
  502. pozycja_myszki();
  503. if((mx>470) AND (mx<730) AND (my<320) AND (my>270))then
  504. begin
  505. al_rectfill( al_screen, 470, 270 , 730, 320, al_makecol( 200, 200, 200 ) );
  506. al_rect( al_screen, 470, 270, 730, 320, al_makecol( 200, 200, 200 ) );
  507. al_textout_ex(al_screen, al_font, 'Gra z innym uzytkownikiem', 500, 295, al_makecol(0,0,0), -1);
  508. end;
  509. if((mx>470) AND (mx<730) AND (my<390) AND (my>330))then
  510. begin
  511. al_rectfill( al_screen, 470, 330 , 730, 390, al_makecol( 200, 200, 200 ) );
  512. al_rect( al_screen, 470, 330, 730, 390, al_makecol( 200, 200, 200 ) );
  513. al_textout_ex(al_screen, al_font, 'Gra z komputerem', 540, 360, al_makecol(0,0,0), -1);
  514. end;
  515. until (mb=1);
  516. if((mx>470) AND (mx<730) AND (my<390) AND (my>330))then
  517. begin
  518. powitalny:=2;
  519. end;
  520. if((mx>470) AND (mx<730) AND (my<320) AND (my>270))then
  521. begin
  522. powitalny:=1;
  523. end;
  524. end;
  525.  
  526. function sprawdzenie ( var tab : tablica; a: integer; b: integer) : integer;
  527. begin
  528. if (tab[a][b]>0) then
  529. begin
  530. 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
  531. begin
  532. al_textout_ex(al_screen, al_font, 'Trafiony, niezatapiony!', 310, 420, al_makecol(0,0,0), -1);
  533. al_textout_ex(al_screen, al_font, 'Trafiony, zatopiony!', 310, 420, al_makecol(200,200,200), -1);
  534. tab[a][b]:=-11;
  535. sprawdzenie:=1;
  536. end
  537. else
  538. begin
  539. al_textout_ex(al_screen, al_font, 'Trafiony, niezatapiony!', 310, 420, al_makecol(200,200,200), -1);
  540. al_textout_ex(al_screen, al_font, 'Trafiony, zatopiony!', 310, 420, al_makecol(0,0,0), -1);
  541. tab[a][b]:=-10;
  542. sprawdzenie:=2;
  543. end;
  544. end
  545. else
  546. begin
  547. tab[a][b]:=-10;
  548. sprawdzenie:=3;
  549. al_textout_ex(al_screen, al_font, 'Pudlo!', 310, 420, al_makecol(200,200,200), -1);
  550. end;
  551. end;
  552.  
  553. procedure ruch ( var tab : tablica; var tab_c : tablica; var tab_wys : tablica;gracz: string);
  554. var
  555. m, a, b, i, iterator1,iterator2, check : integer;
  556. begin
  557. clear();
  558. m:=0;
  559. i:=0;
  560. wyswietl(tab_wys, tab_c, gracz,-2);
  561. al_textout_ex(al_screen, al_font, 'Twoj ruch, wybierz pole i strzelaj', 310, 400, al_makecol(200,200,200), -1);
  562. repeat
  563. begin
  564. mb:=0;
  565. repeat
  566. pozycja_myszki();
  567. przekroczenie_1(35, 350, 65, 360);
  568. until ((mb=1) AND (przekroczenie_1(35,350,65,360)=false));
  569. 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
  570. begin
  571. a:=((my-65)DIV 30)+1;
  572. b:=((mx-35) DIV 30)+1;
  573. check:=sprawdzenie(tab,a,b);
  574. if (check=1) then
  575. begin
  576. tab_c[a][b]:=-3;
  577. for iterator1:=-3 to 3 do
  578. begin
  579. for iterator2:=-3 to 3 do
  580. begin
  581. if(tab[a+iterator1][b+iterator2]=-10) then
  582. begin
  583. if ((a+iterator1>11) OR (a+iterator1<0) OR (b+iterator2>11) OR (b+iterator2<0)) then
  584. break;
  585. tab[a+iterator1][b+iterator2]:=-11;
  586. tab_c[a+iterator1][b+iterator2]:=-3;
  587. end;
  588. end;
  589. end;
  590. end;
  591. if (check=2) then tab_c[a][b]:=-2;;
  592. if (check=3) then tab_c[a][b]:=-1;
  593. m:=1;
  594. if (i<>0) then
  595. begin
  596. al_textout_ex(al_screen, al_font, 'To pole bylo wybrane wczesniej', 310, 420, al_makecol(0,0,0), -1);
  597. end;
  598. end
  599. else
  600. begin
  601. al_textout_ex(al_screen, al_font, 'To pole bylo wybrane wczesniej', 310, 420, al_makecol(200,200,200), -1);
  602. end;
  603. i:=i+1;
  604. end;
  605. until (m=1);
  606. wyswietl(tab_wys, tab_c, gracz,-2);
  607. delay(1000);
  608. end;
  609.  
  610. function warunek_gry (tab1 : tablica; tab2 : tablica) : integer;
  611. var
  612. i, j : integer;
  613. licznik1, licznik2 : integer;
  614. begin
  615. licznik1:=0;
  616. licznik2:=0;
  617. for i:=1 to 10 do
  618. begin
  619. for j:=1 to 10 do
  620. begin
  621. if (tab1[i][j]<=0) then licznik1:=licznik1+1;
  622. if (tab2[i][j]<=0) then licznik2:=licznik2+1;
  623. end;
  624. end;
  625. if (licznik1=100) then warunek_gry:=0;
  626. if (licznik2=100) then warunek_gry:=1;
  627. if((licznik1<>100) AND (licznik2<>100))then warunek_gry:=2;
  628. end;
  629.  
  630. procedure dwoch_graczy ();
  631. var
  632. wygrany : string;
  633. warunek : integer;
  634. begin
  635. wyswietl(tab1,tab1_c, 'Gracz 1.',-1);
  636. tworzenie(tab1,tab1_c, 'Gracz 1.');
  637. przerwa();
  638. wyswietl(tab2,tab2_c, 'Gracz 2.', -1);
  639. tworzenie(tab2,tab2_c, 'Gracz 2.');
  640. przerwa();
  641. warunek:=5;
  642. repeat
  643. ruch(tab2, tab1_c, tab1, 'Gracz 1.');
  644. warunek:=warunek_gry(tab1,tab2);
  645. if((warunek=0) OR (warunek=1)) then break;
  646. delay(1500);
  647. przerwa();
  648. clear();
  649. ruch(tab1, tab2_c, tab2, 'Gracz 2.');
  650. delay(1500);
  651. warunek:=warunek_gry(tab1,tab2);
  652. if((warunek=0) OR (warunek=1)) then break;
  653. przerwa();
  654. clear();
  655. until ((warunek=0) OR (warunek=1));
  656. if (warunek_gry(tab1, tab2)=0) then wygrany:='Gracz 2.';
  657. if (warunek_gry(tab1, tab2)=1) then wygrany:='Gracz 1.';
  658. clear();
  659. koniec(wygrany);
  660. end;
  661.  
  662. procedure komputer ();
  663. begin
  664. al_textout_ex(al_screen, al_font, 'Robim co mozem', 310, 420, al_makecol(200,200,200), -1);
  665. {wyswietl(tab1,tab1_c, 'Gracz 1.',-1);
  666. tworzenie(tab1,tab1_c, 'Gracz 1.');}
  667.  
  668.  
  669. end;
  670.  
  671. begin
  672. inicjalizuj();
  673. tryb:=powitalny();
  674. delay(500);
  675. clear();
  676. case tryb of
  677. 1 : dwoch_graczy();
  678. 2 : komputer();
  679. end;
  680. al_readkey;
  681. al_exit();
  682. end.
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement