-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsnake.js
142 lines (126 loc) · 2.93 KB
/
snake.js
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
var s;
var w = 20;
var food;
var direction;
var highScore = 0;
function setup(){
createCanvas(560,560);
s = new Snake();
pickLocation(); // set food location
direction = createVector(1,0); // set default direction of travel
}
function draw(){
frameRate(10);
background(51);
// draw food
fill(255,0,100);
rect(food.x,food.y,w,w);
// move and show snake
s.death();
s.update();
s.show();
if(s.total >= highScore){
highScore = s.total;
}
// create new food if food is eaten
if(s.eat(food)){
pickLocation();
}
fill(255,255,255,100);
stroke(0);
textSize(20);
textStyle(BOLD);
textAlign(RIGHT);
text("Score: " + s.total,width-30,50);
text("Best: " + highScore, width-30,100);
}
function pickLocation(){
// pick a random column and row based on square size (w)
var cols = floor(width/w);
var rows = floor(height/w);
food = createVector(floor(random(cols)),floor(random(rows)));
food.mult(w);
}
function Snake(){
this.x = 0;
this.y = 0;
this.xspeed = 1;
this.yspeed = 0;
this.total = 0;
this.tail = [];
this.update = function(){
// haven't eaten food, shift tail vector
if(this.total === this.tail.length){
for (var i = 0; i<this.total-1; i++){
this.tail[i] = this.tail[i+1];
}
}
// add current position to end of list
this.tail[this.total-1] = createVector(this.x,this.y);
// get speed from direction
this.dir(direction);
// move according to specified speed
this.x = this.x + this.xspeed*w;
this.y = this.y + this.yspeed*w;
// don't move beyond canvas
this.x = constrain(this.x,0,width-w);
this.y = constrain(this.y,0,height-w);
}
this.show = function(){
// draw snake
fill(255);
stroke(0);
// tail
for (var i =0; i<this.total; i++){
rect(this.tail[i].x, this.tail[i].y,w,w);
}
// head
rect(this.x,this.y,w,w);
}
// set direction of snake
this.dir = function(direction){
// don't set new direction if it's opposite
if(this.xspeed+direction.x){
this.xspeed = direction.x;
}
if(this.yspeed+direction.y){
this.yspeed = direction.y;
}
}
// consume food and grow if head overlaps food
this.eat = function(pos){
var d = dist(this.x,this.y,pos.x,pos.y);
if (d<1){
this.total++;
return true;
}else{
return false;
}
}
// lose tail if head intersects body (or a wall)
this.death = function(){
for(var i=0; i<this.tail.length; i++){
var pos = this.tail[i];
var d = dist(this.x,this.y,pos.x,pos.y);
if(d<1){
this.total = 0;
this.tail = [];
//console.log(this.tail)
}
}
}
}
// set directions
function keyPressed(){
if(keyCode===UP_ARROW){
direction.set(0,-1);
}else if(keyCode === DOWN_ARROW){
direction.set(0,1);
}else if(keyCode === LEFT_ARROW){
direction.set(-1,0);
}else if(keyCode === RIGHT_ARROW){
direction.set(1,0);
}else if(key == ' '){
s.total++;
}
}