-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathboard.js
357 lines (321 loc) · 10.8 KB
/
board.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
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
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
/*
* Copyright (C) 2014 Google Inc. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
/**
* @fileoverview
* This file represents a TicTacToe board object, with all needed drawing and
* state update functions.
*/
/**
* Creates an empty board object with no location
* @param {CanvasRenderingContext2D} context the 2D context of the canvas that
* the board is drawn on.
* @constructor
*/
var card_files = [
"10_of_clubs.png",
"10_of_diamonds.png",
"10_of_hearts.png",
"10_of_spades.png",
"2_of_clubs.png",
"2_of_diamonds.png",
"2_of_hearts.png",
"2_of_spades.png",
"3_of_clubs.png",
"3_of_diamonds.png",
"3_of_hearts.png",
"3_of_spades.png",
"4_of_clubs.png",
"4_of_diamonds.png",
"4_of_hearts.png",
"4_of_spades.png",
"5_of_clubs.png",
"5_of_diamonds.png",
"5_of_hearts.png",
"5_of_spades.png",
"6_of_clubs.png",
"6_of_diamonds.png",
"6_of_hearts.png",
"6_of_spades.png",
"7_of_clubs.png",
"7_of_diamonds.png",
"7_of_hearts.png",
"7_of_spades.png",
"8_of_clubs.png",
"8_of_diamonds.png",
"8_of_hearts.png",
"8_of_spades.png",
"9_of_clubs.png",
"9_of_diamonds.png",
"9_of_hearts.png",
"9_of_spades.png",
"ace_of_clubs.png",
"ace_of_diamonds.png",
"ace_of_hearts.png",
"ace_of_spades2.png",
"jack_of_clubs2.png",
"jack_of_diamonds2.png",
"jack_of_hearts2.png",
"jack_of_spades2.png",
"king_of_clubs2.png",
"king_of_diamonds2.png",
"king_of_hearts2.png",
"king_of_spades2.png",
"queen_of_clubs2.png",
"queen_of_diamonds2.png",
"queen_of_hearts2.png",
"queen_of_spades2.png"];
function board(context) {
this.mContext = context;
this.setup = function () {
console.log("SETTING UP BOARD");
var socket = io();
socket.on('chat message', function(msg){
console.log("CHAT MESSAGE");
console.log(msg);
});
socket.on('jump', function () {
jump();
})
console.log("Waiting for connect");
socket.on('connect', function () {
console.log('Emitting chromecast');
socket.emit('i_am_chromecast');
})
var svg = d3.select('svg');
// These are the size of the screem
var width = $('svg').width();
var height = $('svg').height();
var players = [
{ name: 'player1', avatar: 'bear.png' },
{ name: 'player2', avatar: 'beaver.png' },
{ name: 'player3', avatar: 'bee.png' },
{ name: 'player4', avatar: 'chicken.png' },
{ name: 'player5', avatar: 'cow.png' },
{ name: 'player6', avatar: 'dog.png' },
{ name: 'player7', avatar: 'elephant.png' },
{ name: 'player8', avatar: 'giraffe.png' },
{ name: 'player9', avatar: 'goat.png' },
{ name: 'player10', avatar: 'hippo.png' },
{ name: 'player11', avatar: 'owl.png' },
{ name: 'player12', avatar: 'penguin.png' },
{ name: 'player13', avatar: 'pig.png' },
{ name: 'player14', avatar: 'sheep.png' },
{ name: 'player15', avatar: 'turkey.png' },
{ name: 'player16', avatar: 'zebra.png' }
]
// Margins set at 5%
var x_margin = width * .05;
var y_margin = height * .05;
// Double the margin, and subtract from the width and height
var playable_area_width = width - (2 * x_margin);
var playable_area_height = height - (2 * y_margin);
var min_avatar_height = 125;
var max_avatar_height = 250;
// adjust the avatar size based on the number of players
// check for the maximum size
var avatar_size = d3.max([min_avatar_height, (playable_area_height/players.length)]);
// check for the minimum size
avatar_size = d3.min([avatar_size, max_avatar_height]);
// This are the radii of the ellipse
var y_radius = (playable_area_height - avatar_size) / 2;
var x_radius = (playable_area_width - avatar_size) / 2;
// This are the radii of the Inner Ellipse
var inner_y_radius = y_radius - (avatar_size/2);
var inner_x_radius = x_radius - (avatar_size/2);
var ellipse= {
x: x_margin + (avatar_size/2) + x_radius,
y: y_margin + (avatar_size/2) + y_radius
};
var spoon_size = 30;
var spoon_buffer = spoon_size + 30;
// make the avatars
var personSelection = svg.selectAll('.avatar')
.data(chance.shuffle(players))
.enter()
.append('g')
.attr('class', 'person')
personSelection
.append('svg:image')
.attr('class', 'avatar')
.attr('id', function(player, index) {
return 'player_' + index;
})
.attr('x', function (player, index) {
// x_radius * cos(Theta)
return (x_radius * Math.cos( (index) / players.length * 2 * Math.PI) ) + (width/2) - (avatar_size/2) ;
})
.attr('y', function (player, index) {
// y_radius * sin(Theta)
return (y_radius * Math.sin((index) / players.length * 2 * Math.PI)) + (height/2) - (avatar_size/2);
})
.attr('width', avatar_size)
.attr('height', avatar_size)
.attr('xlink:href', function (player) {
return 'images/' + player.avatar;
})
personSelection
.append('g')
.attr('class', 'card-stack')
personSelection
.append('text')
.attr('class', 'name')
.attr('x', function (person, index) {
// x_radius * cos(Theta)
return (x_radius * Math.cos( (index) / players.length * 2 * Math.PI) ) + (width/2) - (avatar_size/2) ;
})
.attr('y', function (person, index) {
// y_radius * sin(Theta)
return (y_radius * Math.sin((index) / players.length * 2 * Math.PI)) + (height/2) - (avatar_size/2);
})
.text( function (person, index) {
return person.name;
})
.attr('font-family', 'sans-serif')
.attr('font-size', '20px')
.attr('fill', 'orange');
var spoons = [];
for (i=0; i < players.length-1; i++) {
spoons.push({});
}
var spoon_g = svg.selectAll('.spoon')
.data(spoons)
.enter()
.append("g")
.attr('class', 'spoon')
.attr("transform", "translate(" + (width / 2 - 25/2) + "," + (height / 2 - 25/2) + ")")
.each(caroom);
spoon_g.append("svg:image")
.attr('width', spoon_size)
.attr('height', spoon_size)
.attr('xlink:href', 'images/spoon.png')
.append('animateTransform')
.attr('attributeName', "transform")
.attr('type', "rotate")
.attr('from', function () {
return (true ? '0' : '360') + " 15 15";
})
.attr('to', function () {
return (true ? '360' : '0') + " 15 15";
})
.attr('dur', function () {
return chance.natural({min:0.5, max: 3}) + 's';
})
.attr('repeatCount', "indefinite");
function jump(){
var jumpHeight = 30;
var originalY = d3.select('#player_0').attr('y');
d3.select('#player_0')
.transition()
.attr('y', originalY - jumpHeight )
.ease('linear')
.duration(1000)
.each('end',function() {
d3.select(this)
.transition()
.attr('y', originalY )
.duration(1000);
});
};
function randomInnerPath(){
var theta = chance.natural({ min:0, max:2*Math.PI });
str = 'translate(' +
// x location of a random point on the inner ellipse, accounting for spoon size and the buffer
( ( (inner_x_radius - spoon_buffer) * Math.cos( theta ) ) + (width/2) - spoon_size ) +
',' +
// y location of a random point on the inner ellipse, accounting for spoon size and the buffer
( ( (inner_y_radius - spoon_buffer) * Math.sin( theta ) ) + (height/2) - spoon_size ) +
')';
return str;
};
function caroom () {
d3.select(this).transition()
.attr('transform', randomInnerPath)
.ease('linear')
.duration(function () {
return chance.integer({min: 1500, max: 2500});
})
.each('end', caroom);
}
function random_x () {
return chance.integer({min: 0, max: width});
}
function random_y () {
return chance.integer({min: 0, max: height});
}
}
}
// Helper code
// // Make the center
// avatar_g
// .append('circle')
// .attr('class', 'point')
// .attr('cx', ellipse.x)
// .attr('cy', ellipse.y)
// .attr('r', 5);
// // Make the circles
// avatar_g.selectAll('.b')
// .data(avatars)
// .enter()
// .append('circle')
// .attr('class', 'point')
// .attr('cx', function (avatar, index) {
// // x_radius * cos(Theta)
// return (x_radius * Math.cos( (index) / avatars.length * 2 * Math.PI) ) + (width/2) ;
// })
// .attr('cy', function (avatar, index) {
// // y_radius * sin(Theta)
// return (y_radius * Math.sin((index) / avatars.length * 2 * Math.PI)) + (height/2);
// })
// .attr('r', 5);
// Make the lines
// Based on 0,0
// avatar_g
// .append('line')
// .attr('class', 'line')
// .attr('x1', x_margin )
// .attr('x2', x_margin + inner_x_radius*2 )
// .attr('y1', y_margin + inner_y_radius )
// .attr('y2', y_margin + inner_y_radius )
// .attr('stroke', 'black' )
// .attr('stroke-width', 3);
// avatar_g
// .append('line')
// .attr('class', 'line')
// .attr('x1', x_margin + inner_x_radius )
// .attr('x2', x_margin + inner_x_radius )
// .attr('y1', y_margin )
// .attr('y2', y_margin + inner_y_radius*2 )
// .attr('stroke', 'black' )
// .attr('stroke-width', 3);
// // Based on the center of the inner ellipsis
// avatar_g
// .append('line')
// .attr('class', 'line')
// .attr('x1', ellipse.x - inner_x_radius )
// .attr('x2', ellipse.x + inner_x_radius )
// .attr('y1', ellipse.y )
// .attr('y2', ellipse.y )
// .attr('stroke', 'black' )
// .attr('stroke-width', 3);
// avatar_g
// .append('line')
// .attr('class', 'line')
// .attr('x1', ellipse.x )
// .attr('x2', ellipse.x )
// .attr('y1', ellipse.y - inner_y_radius )
// .attr('y2', ellipse.y + inner_y_radius)
// .attr('stroke', 'black' )
// .attr('stroke-width', 3);