Advertisement
Coriic

STATKI 04.01 16.40

Jan 4th, 2016
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 33.40 KB | None | 0 0
  1. rogram 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) OR (tab[i][j]=-9)) 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))AND (tab[((my-65)DIV 30)+1][((mx-435)DIV 30)+1]=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_4_k;
  464. var
  465. typ_statku, x, y, stw : integer;
  466. begin
  467. stw:=0;
  468. repeat
  469. randomize();
  470. typ_statku:=random(13)+1;
  471. if(typ_statku=1) then
  472. begin
  473. y:=random(8)+1;
  474. x:=random(9)+2;
  475. tab2[y][x]:=10;
  476. tab2[y+1][x]:=10;
  477. tab2[y+2][x]:=10;
  478. tab2[y+2][x-1]:=10;
  479. break;
  480. end;
  481. if(typ_statku=2) then
  482. begin
  483. y:=random(8)+1;
  484. x:=random(9)+1;
  485. tab2[y][x]:=10;
  486. tab2[y+1][x]:=10;
  487. tab2[y+2][x]:=10;
  488. tab2[y+2][x+1]:=10;
  489. break;
  490. end;
  491. if(typ_statku=3) then
  492. begin
  493. y:=random(7)+1;
  494. x:=random(10)+1;
  495. tab2[y][x]:=10;
  496. tab2[y+1][x]:=10;
  497. tab2[y+2][x]:=10;
  498. tab2[y+3][x]:=10;
  499. break;
  500. end;
  501. if(typ_statku=4) then
  502. begin
  503. y:=random(10)+1;
  504. x:=random(7)+1;
  505. tab2[y][x]:=10;
  506. tab2[y][x+1]:=10;
  507. tab2[y][x+2]:=10;
  508. tab2[y][x+3]:=10;
  509. break;
  510. end;
  511. if(typ_statku=5) then
  512. begin
  513. y:=random(9)+1;
  514. x:=random(8)+1;
  515. tab2[y][x]:=10;
  516. tab2[y][x+1]:=10;
  517. tab2[y][x+2]:=10;
  518. tab2[y+1][x+1]:=10;
  519. break;
  520. end;
  521. if(typ_statku=6) then
  522. begin
  523. y:=random(9)+2;
  524. x:=random(8)+1;
  525. tab2[y][x]:=10;
  526. tab2[y][x+1]:=10;
  527. tab2[y][x+2]:=10;
  528. tab2[y-1][x+2]:=10;
  529. break;
  530. end;
  531. if(typ_statku=7) then
  532. begin
  533. y:=random(9)+2;
  534. x:=random(8)+1;
  535. tab2[y][x]:=10;
  536. tab2[y][x+1]:=10;
  537. tab2[y][x+2]:=10;
  538. tab2[y-1][x]:=10;
  539. break;
  540. end;
  541. if(typ_statku=8) then
  542. begin
  543. y:=random(9)+2;
  544. x:=random(8)+1;
  545. tab2[y][x]:=10;
  546. tab2[y][x+1]:=10;
  547. tab2[y][x+2]:=10;
  548. tab2[y-1][x+1]:=10;
  549. break;
  550. end;
  551. if(typ_statku=9) then
  552. begin
  553. y:=random(9)+1;
  554. x:=random(8)+1;
  555. tab2[y][x]:=10;
  556. tab2[y+1][x]:=10;
  557. tab2[y][x+1]:=10;
  558. tab2[y][x+2]:=10;
  559. break;
  560. end;
  561. if(typ_statku=10) then
  562. begin
  563. y:=random(9)+1;
  564. x:=random(8)+1;
  565. tab2[y][x]:=10;
  566. tab2[y][x+1]:=10;
  567. tab2[y][x+2]:=10;
  568. tab2[y+1][x+2]:=10;
  569. break;
  570. end;
  571. if(typ_statku=11) then
  572. begin
  573. y:=random(9)+1;
  574. x:=random(9)+1;
  575. tab2[y][x]:=10;
  576. tab2[y+1][x+1]:=10;
  577. tab2[y][x+1]:=10;
  578. tab2[y+1][x]:=10;
  579. break;
  580. end;
  581. if(typ_statku=12) then
  582. begin
  583. y:=random(8)+1;
  584. x:=random(9)+2;
  585. tab2[y][x]:=10;
  586. tab2[y+1][x]:=10;
  587. tab2[y+2][x]:=10;
  588. tab2[y][x-1]:=10;
  589. break;
  590. end;
  591. if(typ_statku=13) then
  592. begin
  593. y:=random(8)+1;
  594. x:=random(9)+1;
  595. tab2[y][x]:=10;
  596. tab2[y+1][x]:=10;
  597. tab2[y+2][x]:=10;
  598. tab2[y][x+1]:=10;
  599. break;
  600. end;
  601. until (stw=1);
  602. end;
  603.  
  604. procedure tworzenie_3_k();
  605. var
  606. typ_statku, it1, it2, x, y, stw, a, war : integer;
  607. begin
  608. stw:=0;
  609. for a:=8 to 9 do
  610. begin
  611. war:=0;
  612. repeat
  613. randomize();
  614. typ_statku:=random(6)+1;
  615. if (typ_statku=1)then
  616. begin
  617. y:=random(10)+1;
  618. x:=random(8)+1;
  619. for it1:=-1 to 1 do
  620. begin
  621. for it2:=-1 to 1 do
  622. begin
  623. if ((tab2[y+it1][x+it2]=0) AND (tab2[y+it1][x+1+it2]=0) AND (tab2[y+it1][x+2+it2]=0))then
  624. begin
  625. war:=war+1;
  626. end;
  627. end;
  628. end;
  629. if (war=9) then
  630. begin
  631. tab2[y][x]:=a;
  632. tab2[y][x+1]:=a;
  633. tab2[y][x+2]:=a;
  634. break;
  635. end;
  636. war:=0;
  637. end;
  638. if (typ_statku=2)then
  639. begin
  640. y:=random(9)+1;
  641. x:=random(9)+1;
  642. for it1:=-1 to 1 do
  643. begin
  644. for it2:=-1 to 1 do
  645. begin
  646. if ((tab2[y+it1][x+it2]=0) AND (tab2[y+it1][x+1+it2]=0) AND (tab2[y+1+it1][x+1+it2]=0))then
  647. begin
  648. war:=war+1;
  649. end;
  650. end;
  651. end;
  652. if (war=9) then
  653. begin
  654. tab2[y][x]:=a;
  655. tab2[y][x+1]:=a;
  656. tab2[y+1][x+1]:=a;
  657. break;
  658. end;
  659. war:=0;
  660. end;
  661. if (typ_statku=3)then
  662. begin
  663. y:=random(9)+1;
  664. x:=random(9)+1;
  665. for it1:=-1 to 1 do
  666. begin
  667. for it2:=-1 to 1 do
  668. begin
  669. if ((tab2[y+it1][x+it2]=0) AND (tab2[y+it1][x+1+it2]=0) AND (tab2[y+1+it1][x+it2]=0))then
  670. begin
  671. war:=war+1;
  672. end;
  673. end;
  674. end;
  675. if (war=9) then
  676. begin
  677. tab2[y][x]:=a;
  678. tab2[y][x+1]:=a;
  679. tab2[y+1][x]:=a;
  680. break;
  681. end;
  682. war:=0;
  683. end;
  684. if (typ_statku=4)then
  685. begin
  686. y:=random(9)+1;
  687. x:=random(9)+1;
  688. for it1:=-1 to 1 do
  689. begin
  690. for it2:=-1 to 1 do
  691. begin
  692. if ((tab2[y+it1][x+it2]=0) AND (tab2[y+1+it1][x+1+it2]=0) AND (tab2[y+1+it1][x+it2]=0))then
  693. begin
  694. war:=war+1;
  695. end;
  696. end;
  697. end;
  698. if (war=9) then
  699. begin
  700. tab2[y][x]:=a;
  701. tab2[y+1][x]:=a;
  702. tab2[y+1][x+1]:=a;
  703. break;
  704. end;
  705. war:=0;
  706. end;
  707. if (typ_statku=5)then
  708. begin
  709. y:=random(9)+2;
  710. x:=random(9)+1;
  711. for it1:=-1 to 1 do
  712. begin
  713. for it2:=-1 to 1 do
  714. begin
  715. if ((tab2[y+it1][x+it2]=0) AND (tab2[y+it1][x+1+it2]=0) AND (tab2[y-1+it1][x+1+it2]=0))then
  716. begin
  717. war:=war+1;
  718. end;
  719. end;
  720. end;
  721. if (war=9) then
  722. begin
  723. tab2[y][x]:=a;
  724. tab2[y][x+1]:=a;
  725. tab2[y-1][x+1]:=a;
  726. break;
  727. end;
  728. war:=0;
  729. end;
  730. if (typ_statku=6)then
  731. begin
  732. y:=random(8)+1;
  733. x:=random(10)+1;
  734. for it1:=-1 to 1 do
  735. begin
  736. for it2:=-1 to 1 do
  737. begin
  738. if ((tab2[y+it1][x+it2]=0) AND (tab2[y+1+it1][x+it2]=0) AND (tab2[y+2+it1][x+it2]=0))then
  739. begin
  740. war:=war+1;
  741. end;
  742. end;
  743. end;
  744. if (war=9) then
  745. begin
  746. tab2[y][x]:=a;
  747. tab2[y+1][x]:=a;
  748. tab2[y+2][x]:=a;
  749. break;
  750. end;
  751. war:=0;
  752. end;
  753. until (stw=1) ;
  754. end;
  755. end;
  756.  
  757. procedure tworzenie_2_k();
  758. var
  759. stw, typ_statku, it1, it2, war, a, x, y : integer;
  760. begin
  761. stw:=0;
  762. for a:=5 to 7 do
  763. begin
  764. war:=0;
  765. repeat
  766. randomize();
  767. typ_statku:=random(2)+1;
  768. if (typ_statku=1)then
  769. begin
  770. y:=random(10)+1;
  771. x:=random(9)+1;
  772. for it1:=-1 to 1 do
  773. begin
  774. for it2:=-1 to 1 do
  775. begin
  776. if ((tab2[y+it1][x+it2]=0) AND (tab2[y+it1][x+1+it2]=0))then
  777. begin
  778. war:=war+1;
  779. end;
  780. end;
  781. end;
  782. if (war=9) then
  783. begin
  784. tab2[y][x]:=a;
  785. tab2[y][x+1]:=a;
  786. break;
  787. end;
  788. war:=0;
  789. end;
  790. if (typ_statku=2)then
  791. begin
  792. y:=random(9)+1;
  793. x:=random(10)+1;
  794. for it1:=-1 to 1 do
  795. begin
  796. for it2:=-1 to 1 do
  797. begin
  798. if ((tab2[y+it1][x+it2]=0) AND (tab2[y+1+it1][x+it2]=0))then
  799. begin
  800. war:=war+1;
  801. end;
  802. end;
  803. end;
  804. if (war=9) then
  805. begin
  806. tab2[y][x]:=a;
  807. tab2[y+1][x]:=a;
  808. break;
  809. end;
  810. war:=0;
  811. end;
  812. until (stw=1);
  813. end;
  814. end;
  815.  
  816. procedure tworzenie_1_k();
  817. var
  818. it1, it2, b, war, stw,x, y :integer;
  819. begin
  820. stw:=0;
  821. for b:=1 to 4 do
  822. begin
  823. war:=0;
  824. repeat
  825. y:=random(10)+1;
  826. x:=random(10)+1;
  827. for it1:=-1 to 1 do
  828. begin
  829. for it2:=-1 to 1 do
  830. begin
  831. if (tab2[y+it1][x+it2]=0) then
  832. begin
  833. war:=war+1;
  834. end;
  835. end;
  836. end;
  837. if (war=9) then
  838. begin
  839. tab2[y][x]:=b;
  840. break;
  841. end;
  842. war:=0;
  843. until (stw=1);
  844. end;
  845. end;
  846.  
  847. procedure tworzenie(var tab:tablica; var tab_c : tablica; gracz : string);
  848. begin
  849. tworzenie_4(tab,tab_c, gracz);
  850. tworzenie_3(tab,tab_c, gracz);
  851. tworzenie_2(tab,tab_c, gracz);
  852. tworzenie_1(tab,tab_c, gracz);
  853. end;
  854.  
  855. procedure tworzenie_k ();
  856. begin
  857. tworzenie_4_k();
  858. tworzenie_3_k();
  859. tworzenie_2_k();
  860. tworzenie_1_k();
  861. end;
  862.  
  863. procedure przerwa();
  864. var
  865. m: integer;
  866. begin
  867. al_clear_to_color( al_screen, al_makecol( 0, 0, 0 ) );
  868. for m:=15 downto 11 do
  869. begin
  870. al_textout_ex(al_screen, al_font, 'Zmiana zawodnika, masz sekund', 310, 300, al_makecol(200,200,200), -1);
  871. al_textout_ex(al_screen, al_font, litery[m], 500, 300, al_makecol(200,200,200), -1);
  872. delay(1000);
  873. al_clear_to_color( al_screen, al_makecol( 0, 0, 0 ) );
  874. end;
  875. al_clear_to_color( al_screen, al_makecol( 0, 0, 0 ) );
  876. end;
  877.  
  878. function powitalny() : byte;
  879. begin
  880. 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);
  881. al_textout_ex(al_screen, al_font, 'Wykonal: Kamil Sobolewski Informatyka EAIIB 2015', 800, 700, al_makecol(200,200,200), -1);
  882. al_rectfill( al_screen, 470, 270 , 730, 320, al_makecol( 0, 0, 0 ) );
  883. al_rect( al_screen, 470, 270, 730, 320, al_makecol( 200, 200, 200 ) );
  884. al_textout_ex(al_screen, al_font, 'Gra z innym uzytkownikiem', 500, 295, al_makecol(200,200,200), -1);
  885. al_rectfill( al_screen, 470, 330 , 730, 380, al_makecol( 0, 0, 0 ) );
  886. al_rect( al_screen, 470, 330, 730, 390, al_makecol( 200, 200, 200 ) );
  887. al_textout_ex(al_screen, al_font, 'Gra z komputerem', 540, 360, al_makecol(200,200,200), -1);
  888. repeat
  889. pozycja_myszki();
  890. if((mx>470) AND (mx<730) AND (my<320) AND (my>270))then
  891. begin
  892. al_rectfill( al_screen, 470, 270 , 730, 320, al_makecol( 200, 200, 200 ) );
  893. al_rect( al_screen, 470, 270, 730, 320, al_makecol( 200, 200, 200 ) );
  894. al_textout_ex(al_screen, al_font, 'Gra z innym uzytkownikiem', 500, 295, al_makecol(0,0,0), -1);
  895. end;
  896. if((mx>470) AND (mx<730) AND (my<390) AND (my>330))then
  897. begin
  898. al_rectfill( al_screen, 470, 330 , 730, 390, al_makecol( 200, 200, 200 ) );
  899. al_rect( al_screen, 470, 330, 730, 390, al_makecol( 200, 200, 200 ) );
  900. al_textout_ex(al_screen, al_font, 'Gra z komputerem', 540, 360, al_makecol(0,0,0), -1);
  901. end;
  902. until (mb=1);
  903. if((mx>470) AND (mx<730) AND (my<390) AND (my>330))then
  904. begin
  905. powitalny:=2;
  906. end;
  907. if((mx>470) AND (mx<730) AND (my<320) AND (my>270))then
  908. begin
  909. powitalny:=1;
  910. end;
  911. end;
  912.  
  913. function sprawdzenie ( var tab : tablica; a: integer; b: integer) : integer;
  914. begin
  915. if (tab[a][b]>0) then
  916. begin
  917. if (((tab[a+1][b]=0) OR (tab[a+1][b]=-10)OR (tab[a+1][b]=-9)) AND ((tab[a-1][b]=0) OR (tab[a-1][b]=-10)OR (tab[a-1][b]=-9)) AND ((tab[a][b+1]=0) OR (tab[a][b+1]=-10)OR (tab[a][b+1]=-9)) AND ((tab[a][b-1]=0)OR (tab[a][b-1]=-10)OR (tab[a][b-1]=-9)))then
  918. begin
  919. al_rectfill( al_screen, 240, 415 , 1000, 440, al_makecol( 0, 0, 0 ) );
  920. al_textout_ex(al_screen, al_font, 'Trafiony, zatopiony!', 310, 420, al_makecol(200,200,200), -1);
  921. tab[a][b]:=-11;
  922. sprawdzenie:=1;
  923. end
  924. else
  925. begin
  926. al_rectfill( al_screen, 240, 415 , 1000, 440, al_makecol( 0, 0, 0 ) );
  927. al_textout_ex(al_screen, al_font, 'Trafiony, niezatapiony!', 310, 420, al_makecol(200,200,200), -1);
  928. tab[a][b]:=-10;
  929. sprawdzenie:=2;
  930. end;
  931. end
  932. else
  933. begin
  934. tab[a][b]:=-9;
  935. sprawdzenie:=3;
  936. al_rectfill( al_screen, 240, 415 , 1000, 440, al_makecol( 0, 0, 0 ) );
  937. al_textout_ex(al_screen, al_font, 'Pudlo!', 310, 420, al_makecol(200,200,200), -1);
  938. end;
  939. end;
  940.  
  941. procedure ruch ( var tab : tablica; var tab_c : tablica; var tab_wys : tablica;gracz: string);
  942. var
  943. m, a, b, i, iterator1,iterator2, check : integer;
  944. begin
  945. clear();
  946. m:=0;
  947. i:=0;
  948. wyswietl(tab_wys, tab_c, gracz,-2);
  949. al_textout_ex(al_screen, al_font, 'Twoj ruch, wybierz pole i strzelaj', 310, 400, al_makecol(200,200,200), -1);
  950. repeat
  951. begin
  952. mb:=0;
  953. repeat
  954. pozycja_myszki();
  955. przekroczenie_1(35, 350, 65, 360);
  956. until ((mb=1) AND (przekroczenie_1(35,350,65,360)=false));
  957. 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
  958. begin
  959. a:=((my-65)DIV 30)+1;
  960. b:=((mx-35) DIV 30)+1;
  961. check:=sprawdzenie(tab,a,b);
  962. if (check=1) then
  963. begin
  964. tab_c[a][b]:=-3;
  965. for iterator1:=-3 to 3 do
  966. begin
  967. for iterator2:=-3 to 3 do
  968. begin
  969. if((iterator1=0) AND (iterator2=0)) then break;
  970. if(tab[a+iterator1][b+iterator2]=-10) then
  971. begin
  972. if ((a+iterator1>11) OR (a+iterator1<0) OR (b+iterator2>11) OR (b+iterator2<0)) then
  973. break;
  974. tab[a+iterator1][b+iterator2]:=-11;
  975. tab_c[a+iterator1][b+iterator2]:=-3;
  976. end;
  977. end;
  978. end;
  979. end;
  980. if (check=2) then tab_c[a][b]:=-2;;
  981. if (check=3) then tab_c[a][b]:=-1;
  982. m:=1;
  983. if (i<>0) then
  984. begin
  985. al_textout_ex(al_screen, al_font, 'To pole bylo wybrane wczesniej', 310, 420, al_makecol(0,0,0), -1);
  986. end;
  987. end
  988. else
  989. begin
  990. al_textout_ex(al_screen, al_font, 'To pole bylo wybrane wczesniej', 310, 420, al_makecol(200,200,200), -1);
  991. end;
  992. i:=i+1;
  993. end;
  994. until (m=1);
  995. wyswietl(tab_wys, tab_c, gracz,-2);
  996. delay(1000);
  997. end;
  998.  
  999. function warunek_gry (tab1 : tablica; tab2 : tablica) : integer;
  1000. var
  1001. i, j : integer;
  1002. licznik1, licznik2 : integer;
  1003. begin
  1004. licznik1:=0;
  1005. licznik2:=0;
  1006. for i:=1 to 10 do
  1007. begin
  1008. for j:=1 to 10 do
  1009. begin
  1010. if (tab1[i][j]<=0) then licznik1:=licznik1+1;
  1011. if (tab2[i][j]<=0) then licznik2:=licznik2+1;
  1012. end;
  1013. end;
  1014. if (licznik1=100) then warunek_gry:=0;
  1015. if (licznik2=100) then warunek_gry:=1;
  1016. if((licznik1<>100) AND (licznik2<>100))then warunek_gry:=2;
  1017. end;
  1018.  
  1019. procedure dwoch_graczy ();
  1020. var
  1021. wygrany : string;
  1022. warunek : integer;
  1023. begin
  1024. wyswietl(tab1,tab1_c, 'Gracz 1.',-1);
  1025. tworzenie(tab1,tab1_c, 'Gracz 1.');
  1026. przerwa();
  1027. wyswietl(tab2,tab2_c, 'Gracz 2.', -1);
  1028. tworzenie(tab2,tab2_c, 'Gracz 2.');
  1029. przerwa();
  1030. warunek:=5;
  1031. repeat
  1032. ruch(tab2, tab1_c, tab1, 'Gracz 1.');
  1033. warunek:=warunek_gry(tab1,tab2);
  1034. if((warunek=0) OR (warunek=1)) then break;
  1035. delay(1500);
  1036. przerwa();
  1037. clear();
  1038. ruch(tab1, tab2_c, tab2, 'Gracz 2.');
  1039. delay(1500);
  1040. warunek:=warunek_gry(tab1,tab2);
  1041. if((warunek=0) OR (warunek=1)) then break;
  1042. przerwa();
  1043. clear();
  1044. until ((warunek=0) OR (warunek=1));
  1045. if (warunek_gry(tab1, tab2)=0) then wygrany:='Gracz 2.';
  1046. if (warunek_gry(tab1, tab2)=1) then wygrany:='Gracz 1.';
  1047. clear();
  1048. koniec(wygrany);
  1049. end;
  1050.  
  1051. procedure komputer ();
  1052. begin
  1053. wyswietl(tab2,tab2_c, 'Komputer',-1);
  1054. tworzenie_k();
  1055. wyswietl(tab2,tab2_c, 'Komputer',-1);
  1056. end;
  1057.  
  1058. begin
  1059. inicjalizuj();
  1060. tryb:=powitalny();
  1061. delay(500);
  1062. clear();
  1063. case tryb of
  1064. 1 : dwoch_graczy();
  1065. 2 : komputer();
  1066. end;
  1067. al_readkey;
  1068. al_exit();
  1069. end.
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement