-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsketch.js
140 lines (117 loc) · 2.75 KB
/
sketch.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
// Welcome to IMA!!!
// The link for this is: https://tinyurl.com/nyu-snake
// https://teachablemachine.withgoogle.com/
// https://p5js.org/
// *** HERE IS CODE YOU CAN EDIT ******//
// REPLACE THIS WITH YOUR OWN TEACHABLE MACHINE MODEL!!
let imageModelURL = "https://teachablemachine.withgoogle.com/models/SQPgEaA5P/";
// IF YOU WANT TO TRY KEYBOARD CHANGE TO "TRUE";
let keyboard_control = false;
// Higher numbers are slower!!! Try 1 to 60
let speed = 5;
// *** THE REST OF THE CODE ******//
let video;
let flipVideo;
let label = "waiting...";
let classifier;
// STEP 1: Load the model!
function preload() {
classifier = ml5.imageClassifier(imageModelURL + "model.json");
}
let snake;
let rez = 20;
let food;
let w;
let h;
function setup() {
createCanvas(640, 480);
// Create the video
// Create the video
video = createCapture(VIDEO);
video.size(320, 240);
video.hide();
flippedVideo = ml5.flipImage(video);
// Start classifying
classifyVideo();
w = floor(width / rez);
h = floor(height / rez);
// frameRate(5);
snake = new Snake();
foodLocation();
}
// Get a prediction for the current video frame
function classifyVideo() {
flippedVideo = ml5.flipImage(video);
classifier.classify(flippedVideo, gotResult);
}
// When we get a result
function gotResult(error, results) {
// If there is an error
if (error) {
console.error(error);
return;
}
// The results are in an array ordered by confidence.
label = results[0].label;
// Classifiy again!
controlSnake();
classifyVideo();
}
function foodLocation() {
let x = floor(random(w));
let y = floor(random(h));
food = createVector(x, y);
}
function keyPressed() {
if (keyboard_control) {
if (keyCode == RIGHT_ARROW) snake.setDir(1, 0);
if (keyCode == LEFT_ARROW) snake.setDir(-1, 0);
if (keyCode == UP_ARROW) snake.setDir(0, -1);
if (keyCode == DOWN_ARROW) snake.setDir(0, 1);
}
}
function controlSnake() {
// console.log(label);
if (!keyboard_control) {
if (label === "Up") {
// UP
snake.setDir(0, -1);
} else if (label === "Right") {
// RIGHT
snake.setDir(1, 0);
} else if (label === "Left") {
// LEFT
snake.setDir(-1, 0);
} else if (label === "Down") {
// DOWN
snake.setDir(0, 1);
}
}
}
function draw() {
background(220);
if (!keyboard_control) {
image(flippedVideo, 0, 0, 160, 120);
textSize(32);
fill(255);
stroke(0);
text(label, 10, 40);
}
scale(rez);
if (snake.eat(food)) {
foodLocation();
snake.update();
}
if (frameCount % speed == 0) {
snake.update();
}
snake.show();
if (snake.endGame()) {
print("END GAME");
background(255, 0, 0);
noLoop();
}
noStroke();
fill(255, 0, 0);
rect(food.x, food.y, 1, 1);
}