Advertisement
ada1711

Untitled

May 12th, 2023
36
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.71 KB | None | 0 0
  1. using ShipsGame.Klasy;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.ComponentModel;
  5. using System.Data;
  6. using System.Drawing;
  7. using System.Linq;
  8. using System.Text;
  9. using System.Threading.Tasks;
  10. using System.Windows.Forms;
  11.  
  12. namespace ShipsGame.Okna
  13. {
  14. public partial class UstawienieStatkow : Form
  15. {
  16.  
  17. int myszX;
  18. int myszY;
  19.  
  20. int indexAktualnegoStatku;
  21.  
  22. // true - poziomo
  23. // false - pionowo
  24. bool poziom;
  25.  
  26. bool[] rozmieszczoneStatki = new bool[4];
  27.  
  28.  
  29. public UstawienieStatkow()
  30. {
  31. InitializeComponent();
  32.  
  33. planszaGracza.Width = 400;
  34. planszaGracza.Height = 400;
  35.  
  36. poziom = true;
  37.  
  38. Gra.Uzytkownik = new Gracz();
  39. Gra.Komputer = new Gracz();
  40.  
  41. indexAktualnegoStatku = 0;
  42.  
  43. lblNazwaGracza.Visible = false;
  44. btnDalej.Enabled = false;
  45. }
  46.  
  47. private void planszaGracza_MouseMove(object sender, MouseEventArgs e)
  48. {
  49. if (indexAktualnegoStatku < rozmieszczoneStatki.Length)
  50. {
  51. myszX = Koordynaty.PobierzKomorke(e.Location.X);
  52. myszY = Koordynaty.PobierzKomorke(e.Location.Y);
  53.  
  54. planszaGracza.Refresh();
  55.  
  56. if(poziom)
  57. {
  58. for (int i = 0; i < Gra.RozmiaryStatkow[indexAktualnegoStatku]; i++)
  59. {
  60. if (myszX + i <= Gracz.OSTATNI_INDEX_PLANSZY)
  61. {
  62. Rysowanie.RysujObramowanie()
  63. }
  64. }
  65.  
  66. }
  67. }
  68. }
  69. }
  70. }
  71.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement