Example #1
0
 public RoomForm(RoomChose parent, Room room, string Playername, GameManager_2 game_host, int ishost) // bien ishost xac dinh la day được gọi từ vào phòng hay tạo phòng
 {
     this.parent     = parent;
     this.room_info  = room;
     this.Playername = Playername;
     this.game_host  = game_host;
     this.ishost     = ishost;
     InitializeComponent();
     //   Label_RoomID.Text = room_info.RoomID.ToString();
     check_timer          = new Timer();
     check_timer.Tick    += new EventHandler(timer_tick);
     check_timer.Interval = 300;
     check_timer.Enabled  = true;
     if (ishost == 1)
     {
         guna2Button_Ready.Enabled = false;
         guna2Button_Start.Enabled = true;
     }
     else
     {
         guna2Button_Ready.Enabled = true;
         guna2Button_Start.Enabled = false;
     }
     guna2Button_Sophong.Text = "Phòng " + room_info.RoomID.ToString();
 }
Example #2
0
        //public Start()
        //{
        //    InitializeComponent();
        //    this.IsMdiContainer = true;
        //    yasuo_sprite = new Bitmap("yasuosprite.png");
        //    background = new Bitmap("background_1.jpg");
        //    creep = new Bitmap("creep.png");
        //    X_yasuo = Y_yasuo = 20;
        //    whatframes = direction = 0; // 0 phai 1 trai 2 tren 3 duoi 4 dung yen
        //    DoubleBuffered = true;
        //    isdraw = 1;



        //}
        public Start(RoomForm roomform, GameManager_2 game_host)
        {
            InitializeComponent();
            this.IsMdiContainer = true;
            yasuo_sprite        = new Bitmap("yasuosprite.png");
            background          = new Bitmap("background_1.jpg");
            creep  = new Bitmap("creep.png");
            carrot = new Bitmap("carrot2.png");
            carrot.MakeTransparent();
            X_yasuo        = Y_yasuo = 20;
            whatframes     = direction = 0; // 0 phai 1 trai 2 tren 3 duoi 4 dung yen
            DoubleBuffered = true;
            isdraw         = 1;
            this.game_host = game_host;
            result         = new List <string>();
            this.roomform  = roomform;


            timer          = new Timer();
            timer.Tick    += new EventHandler(timer_tick);
            timer.Interval = 100;
            timer.Enabled  = true;
            time           = 0;

            timer3          = new Timer();
            timer3.Tick    += new EventHandler(timer3_tick);
            timer3.Interval = 100;
            timer3.Enabled  = true;
        }
        public void RoomChose_Load(object sender, EventArgs e)
        {
            Mycnt.Open();
            // lay het du lieu trong bang DTBQT
            string     sql = "SELECT * FROM ROOMLIST";
            SqlCommand com = new SqlCommand(sql, Mycnt); //bat dau truy van

            com.CommandType = CommandType.Text;
            SqlDataAdapter da = new SqlDataAdapter(com); //chuyen du lieu ve
            DataTable      dt = new DataTable();         //tạo một kho ảo để lưu trữ dữ liệu

            da.Fill(dt);                                 // đổ dữ liệu vào kho
            Mycnt.Close();                               // đóng kết nối
            roomList = new List <Room>();
            if (dt.Rows.Count < 1)
            {
                return;
            }
            else
            {
                if (dt.Rows.Count % 16 == 0)
                {
                    listpnl = new FlowLayoutPanel[dt.Rows.Count / 16];
                }
                else
                {
                    listpnl = new FlowLayoutPanel[dt.Rows.Count / 16 + 1];
                }


                for (int i = 0; i < dt.Rows.Count; i++)
                {
                    roomList.Add(new Room(dt.Rows[i]["RoomID"].ToString().Trim(), dt.Rows[i]["HostID"].ToString().Trim(), dt.Rows[i]["GuestID"].ToString().Trim(), Convert.ToInt32(dt.Rows[i]["IsClosed"].ToString().Trim()), Convert.ToInt32(dt.Rows[i]["IsReady"].ToString().Trim()), Convert.ToInt32(dt.Rows[i]["IsStart"].ToString().Trim())));
                }
            }
            listbtn = new Guna.UI2.WinForms.Guna2Button[roomList.Count];

            for (int j = 0; j < listpnl.Length; j++)
            {
                listpnl[j] = new FlowLayoutPanel()
                {
                    Location = new System.Drawing.Point(101, 167), Size = new System.Drawing.Size(785, 324)
                };
                // this.listpnl[j].BackColor = System.Drawing.Color.Transparent;
                this.listpnl[j].BackColor = System.Drawing.Color.Teal;
                this.Controls.Add(listpnl[j]);
            }
            int number_room_inpanel = 0;
            int number_pnl          = 0;

            for (int i = 0; i < roomList.Count; i++)
            {
                string a = "Phòng ";

                a         += roomList[i].RoomID;
                listbtn[i] = new Guna.UI2.WinForms.Guna2Button()
                {
                    Text = a, Size = new System.Drawing.Size(150, 100)
                };
                listbtn[i].BorderRadius = 15;
                listbtn[i].Name         = "Room" + i.ToString();
                listbtn[i].Font         = new System.Drawing.Font("Segoe UI", 13F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
                listbtn[i].FillColor    = Color.White;
                listbtn[i].ForeColor    = Color.Black;
                if (roomList[i].IsStart == 1)
                {
                    listbtn[i].FillColor = Color.Red;
                }
                if (number_room_inpanel == 16)
                {
                    number_room_inpanel = 0;
                    number_pnl++;
                }
                else
                {
                    number_room_inpanel++;
                }
                listpnl[number_pnl].Controls.Add(listbtn[i]);
                listpnl[0].BringToFront();
                //////////// su kien click
                listbtn[i].Click += (s, k) =>
                {
                    Guna.UI2.WinForms.Guna2Button raised_controls = s as Guna.UI2.WinForms.Guna2Button;
                    int count = -1;
                    foreach (Guna.UI2.WinForms.Guna2Button x in listbtn)
                    {
                        count++;
                        string temp = x.Text.Substring(6);

                        if (raised_controls.Text == x.Text)
                        {
                            if (roomList[count].IsClosed == 1)
                            {
                                MessageBox.Show("Phòng đầy !", "Thông báo", MessageBoxButtons.OK, MessageBoxIcon.Information);
                            }
                            else
                            {
                                roomList[count].GuestID  = PlayerName;
                                roomList[count].IsClosed = 1;
                                roomList[count].IsReady  = 0;
                                Mycnt.Open();
                                sql = String.Format("UPDATE ROOMLIST SET ISCLOSED = '0',IsReady = '0',IsStart ='0',GuestID = '' WHERE GuestID = '{0}'" +
                                                    "UPDATE ROOMLIST SET ISCLOSED = '1',IsReady = '0',GuestID = '{0}',IsStart ='0' WHERE ROOMID = '{1}'", PlayerName, temp);
                                com = new SqlCommand(sql, Mycnt); //bat dau truy van
                                com.ExecuteNonQuery();
                                Mycnt.Close();
                                MessageBox.Show("Vào Phòng Thành Công !", "Thông báo", MessageBoxButtons.OK, MessageBoxIcon.Information);
                                GameManager_2 game_host = new GameManager_2(null, this, GetQuestionFromRoom(temp));
                                int           aa;
                                for (aa = 0; aa < roomList.Count - 1; aa++)
                                {
                                    if (roomList[aa].RoomID == temp)
                                    {
                                        break;
                                    }
                                }
                                room = new RoomForm(this, roomList[aa], PlayerName, game_host, 0); // dùng chung biến room
                                room.Show();
                                room.check_timer.Enabled = true;
                                this.Hide();
                                int concat = 10;
                            }
                        }
                    }
                };
            }
        }
        private void guna2Button1_Click(object sender, EventArgs e)
        {
            //// Tao phong
            Mycnt.Open();


            string query = string.Format("update roomlist set HostID = '', Isclosed = '0', IsReady = '0',IsStart = '0' where hostid = '{0}'"
                                         + " update roomlist set GuestID = '', Isclosed = '0', IsReady = '0',IsStart ='0' where GuestID = '{0}'" +
                                         "delete from Roomlist where HostID = '' and GuestID = ''"
                                         + "update RoomList set HostID = GuestID, GuestID = '', Isclosed = '0', IsReady = '0',IsStart ='0' where HostID = '' and GuestID != ''", PlayerName);
            SqlCommand cmd = new SqlCommand(query, Mycnt);

            cmd.ExecuteNonQuery();

            Random rd     = new Random();
            int    roomid = rd.Next(999);

            for (int i = 0; i < roomList.Count; i++)
            {
                if (roomList[i].RoomID == roomid.ToString())
                {
                    roomid++;
                    i = -1;
                }
            }
            query = String.Format("INSERT INTO RoomList VALUES ('{0}','{1}','', '0','0','0')    ", roomid.ToString(), PlayerName);



            //// Tao bo cau hoi

            string s; // string tạm

            string[] temp;


            GameManager_2 game_host = new GameManager_2();
            int           type      = 1;

            for (int i = 0; i < 10; i++)
            {
                temp = game_host.list[i].GetQuestion(); // lay bo cau hoi ra
                for (int j = 0; j < temp.Length; j++)
                {
                    temp[j] = temp[j].Replace("'", "`");
                }
                if (i < game_host.n)  // Xu ly cau hoi loai 1
                {
                    s = String.Format("INSERT INTO RoomQuestions VALUES ('{0}','{1}',N'{2}',N'{3}',N'{4}',N'{5}',N'{6}',N'{7}')", roomid, type, temp[0], temp[1], temp[2], temp[3], temp[4], temp[5]);
                }
                else
                {
                    type = 2;
                    s    = String.Format("INSERT INTO RoomQuestions VALUES ('{0}','{1}',N'{2}','{3}','{4}','{5}','{6}',N'{7}')", roomid, type, temp[0], "", "", "", "", temp[1].Trim());
                }
                query += s + "    ";
            }

            SqlCommand com = new SqlCommand(query, Mycnt); //bat dau truy van

            com.ExecuteNonQuery();
            Mycnt.Close();

            roomList.Add(new Room(roomid.ToString(), PlayerName, "", 0, 0, 0));
            room = new RoomForm(this, roomList[roomList.Count - 1], PlayerName, game_host, 1);// dùng chung biến room
            room.Show();
            this.Hide();
        }