1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
|
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Drawing;
using System.Data;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
using ShiftOS.Engine;
namespace ShiftOS.WinForms.Applications
{
[Launcher("Snakey", true, "al_snakey", "Games")]
[RequiresUpgrade("snakey")]
[WinOpen("snakey")]
[DefaultIcon("iconSnakey")]
public partial class Snakey : UserControl, IShiftOSWindow
{
private int[,] snakemap;
private int snakedirection = 0; // 0 - Left, 1 - Down, 2 - Right, 3 - Up
public Snakey()
{
InitializeComponent();
}
public void OnLoad()
{
makeGrid();
}
private void OnKeyPress(object sender, KeyPressEventArgs e)
{
switch (e.KeyChar)
{
case (char)Keys.Up:
snakedirection = 3;
break;
case (char)Keys.Down:
snakedirection = 1;
break;
case (char)Keys.Left:
snakedirection = 0;
break;
case (char)Keys.Right:
snakedirection = 2;
break;
default:
break;
}
}
private void makeGrid()
{
for (int x = 0; x < 10; x++)
{
for (int y = 0; y < 10; y++)
{
tableLayoutPanel1.Controls.Add(newPicBox(x, y), x, y);
}
}
}
private PictureBox newPicBox(int x, int y)
{
PictureBox picBox = new PictureBox();
picBox.Size = new System.Drawing.Size(20, 20);
picBox.Image = Properties.Resources.SnakeyBG;
picBox.Name = "pb" + x.ToString() + "b" + y.ToString();
return picBox;
}
public void OnSkinLoad() { }
public bool OnUnload() { return true; }
public void OnUpgrade() { }
}
}
|