forked from akhilpandey95/Arduino-gesture-module
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathLed Matrix(snake-game)
202 lines (195 loc) · 3.36 KB
/
Led Matrix(snake-game)
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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
/*
this is a game named trucks and cars developed on arduino uno board
and displayed using a LCD display (16*2)
author:akhil@hector, om@Ethcelon
design: Suraj, Saiteja
Library used: LiquidCrystal.h
game played with buttons as well as pot(potentiometer)
*/
// the glyphs which are written down are found on the net so
//one can make any custom shapes of their desire and need.
#include<LiquidCrystal.h>
const int buttonpin1= A0;
const int buttonpin2= A1;
int buttonstate1=0;
int buttonstate2=0;
int score;
int carposition=4;
boolean crash;
unsigned int crashtime;
boolean newgame;
byte G[n][8]={
// car up
{ B00000,
B01110,
B11111,
B01010,
B00000,
B00000,
B00000,
B00000}
// car down
,{B00000,
B00000,
B00000,
B00000,
B01110,
B11111,
B01010,
B00000}
// truck up
,{B00000,
B11110,
B11111,
B01010,
B00000,
B00000,
B00000,
B00000}
// truck down
,{B00000,
B00000,
B00000,
B00000,
B11110,
B11111,
B01010,
B00000}
// crash up
,{B10101,
B01110,
B01110,
B10101,
B00000,
B00000,
B00000,
B00000}
// crash down
,{B00000,
B00000,
B00000,
B10101,
B01110,
B01110,
B10101,
B00000}
};
char blank=32;
const int roadlen= 15;
int Road[roadlen];
char line[roadlen+2];
int roadpos;
int car_pos;
char carG[n][2]={
{1,Blank},{2,blank),{blank,1},{blank,1}
};
char truckG[n][2]={
{3,blank},{4,blank},{blank,3},{blank,4}
};
char crashG[n][2]={
{5,blank},{6,blank},{blank,5},{blank
LiquidCrystal Displcd(12,11,5,4,3,2);
void setup()
{
lcd.begin(16,2);
pinMode(buttonpin1,OUTPUT);
pinMode(buttonpin2,OUTPUT);
for(int i=0;i<n;i++)
{
Displcd.createChar(i+1,G[i]);
}
for(int i=0;i<Roadlen
newgame=true;
}
void loop()
{
if(newgame)
{
init();
}
if(crash==true)
{
displaygameover();
displaytime();
}
// delay(1500); //------- a delay must be given
}
void init()
{
score=0;
crash=false;
crashtime=0;
Displcd.setCursor(1,0);
Displcd.print("The game is about to begin");
for(int i=3;i>0;i++)
{
Displcd.print(i);
}
roadsetup();
control();
}
void displaygameover()
{
byte armsDown[8] = {
0b00100,
0b01010,
0b00100,
0b00100,
0b01110,
0b10101,
0b00100,
0b01010
};
byte armsUp[8] = {
0b00100,
0b01010,
0b00100,
0b10101,
0b01110,
0b00100,
0b00100,
0b01010
};
Displcd.createChar(0,armsUp);
Displcd.createChar(1,armsDown);
Displcd("the game is over");
Displcd.setCursor(4,1);
Displcd.write(byte[0]);
delay(300);
Displcd.setCursor(4,1);
Displcd.write(byte[1]);
delay(300);
newgame=false;
}
void displaytime()
{
Displcd.setCursor(8,2);
Displcd.print
}
void control()
{
buttonstate1=digitalRead(buttonstate1);
buttonstate2=digitalRead(buttonstate2);
if(buttonstate1==HIGH &&
}
void roadsetup()
{
for(int i=0;i<2;i++)
{
if(crash)
{
line[0]=crashG[car_pos][i];
}
else
{
line[0]=carG[car_pos][i];
}
for(int j=0;j<roadlen;j++)
{
int pos=Road[(j+roadindex)%Roadlen];
line[j+1]=pos>0 && pos<carposition ? truckG[pos][i]:blank;
}
Displcd.setCursor(0,i);
Displcd.print(line);
}
}