-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathc-player.js
277 lines (236 loc) · 9.56 KB
/
c-player.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
class Player
{
// +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
// Notes
// Positive x is right
// Positive y is down
// Vector up is [0,-1]
// +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
// Setup
constructor(id, fieldsize, collision_detector, drawer, communicator, ui_handler, logger, storage)
{
// General setup
this.id_ = id;
this.is_local_ = false;
this.fieldsize_ = fieldsize;
this.collision_detector_ = collision_detector;
this.drawer_ = drawer;
this.communicator_ = communicator;
this.ui_handler_ = ui_handler;
this.logger_ = logger;
this.draw_queue_ = [];
this.storage_ = storage;
// Id setup
if(this.id_ == 'local')
{
this.is_local_ = true;
this.communicator_.registerToMessageType('PlayerId', this);
this.communicator_.sendMessage('RequestPlayerId', 'Server', undefined);
}
// Position and movement
this.alive_ = true;
this.startpositions_ = [[100, 100], [this.fieldsize_[0] - 100, 100],
[this.fieldsize_[0] - 100, this.fieldsize_[1] -100], [100, this.fieldsize_[1] - 100]];
this.startposition_ = [this.fieldsize_[0]/2, this.fieldsize_[1]/2];
this.position_head_old_ = this.startposition_;
this.position_head_ = this.startposition_;
this.startdirections_ = [135, -135, -45, 45];
this.direction_ = 0; // In degrees
this.speed_ = 50; // In pixels per second
this.turnrate_ = 90; // In degrees per second
// Optics
this.colors_ = ['#ffff00', '#ff0000', '#00ff00', '#0000ff']
this.color_ = '#000000';
this.thickness_ = 5;
if(this.id_ != 'local')
{
this.color_ = this.colors_[this.id_ % this.colors_.length];
}
// Special effects: Holes
this.last_hole_ = Date.now();
this.hole_length_ = 20; // Length of holes in pixels
this.hole_distance_ = 300; // Typical distance between holes in pixels
this.hole_distance_diff_ = 150 // Number of pixels added or removed to/from typical hole distance
this.hole_distance_calc_ = this.hole_distance_; // Actual calculated hole distance for next hole
}
reset()
{
this.startposition_ = this.startpositions_[this.id_ % this.startpositions_.length];
this.position_head_old_ = this.startposition_;
this.position_head_ = this.startposition_;
this.direction_ = this.startdirections_[this.id_ % this.startdirections_.length];
this.alive_ = true;
this.draw_queue_ = [];
}
// +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
// Methods for handling messages
handleMessage(message)
{
switch(message.type)
{
case 'PlayerId':
this.id_ = message.content;
this.color_ = this.colors_[this.id_ % this.colors_.length];
this.startposition_ = this.startpositions_[this.id_ % this.startpositions_.length];
this.position_head_old_ = this.startposition_;
this.position_head_ = this.startposition_;
this.direction_ = this.startdirections_[this.id_ % this.startdirections_.length];
this.sendMessageRemotePlayerHello();
this.ui_handler_.updatePlayerCards();
this.draw_queue_.push(this.generateDrawStartPositionRequest());
this.drawPendingDrawRequests();
break;
case 'PositionUpdate':
this.position_head_old_ = message.content.draw_request.position_head_old;
this.position_head_ = message.content.draw_request.position_head;
this.color_ = message.content.draw_request.color;
this.thickness_ = message.content.draw_request.thickness;
this.draw_queue_.push(message.content.draw_request);
break;
default:
this.logger_.log(1, 'Unknown message type')
break;
}
}
sendMessageRemotePlayerHello()
{
this.communicator_.sendMessage('RequestRemotePlayerHello', 'Global', this.id_);
}
// +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
// Methods: Updatingplayer
updateAllIfAlive(delta_ms, direction)
{
if(this.alive_)
{
this.updateDirection(delta_ms, direction);
this.updatePosition(delta_ms);
this.handleEffectHoles(delta_ms);
this.storeAndSendDrawRequest();
this.drawPendingDrawRequests();
}
}
// +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
// Methods: Updatingplayer: Direction and position
updateDirection(delta_ms, direction)
{
switch(direction)
{
case 'left':
this.direction_ -= this.turnrate_ * (delta_ms / 1000);
break;
case 'right':
this.direction_ += this.turnrate_ * (delta_ms / 1000);
break;
default:
// Do not change direction
break;
}
}
updatePosition(delta_ms)
{
// Store old position
this.position_head_old_ = [this.position_head_[0], this.position_head_[1]];
// Calculate new position
let vector_up = [0, -1];
let direction_radians = this.direction_ * Math.PI / 180;
let vector_forward_x = Math.cos(direction_radians) * vector_up[0] - Math.sin(direction_radians) * vector_up[1];
let vector_forward_y = Math.sin(direction_radians) * vector_up[0] + Math.cos(direction_radians) * vector_up[1];
let vector_move = [vector_forward_x * this.speed_ * delta_ms / 1000,
vector_forward_y * this.speed_ * delta_ms / 1000];
// Update units traveled
const move_distance = Math.sqrt(
vector_move[0] * vector_move[0] + vector_move[1] * vector_move[1]
);
this.storage_.increaseUnitsTraveled(move_distance / 100);
this.ui_handler_.updateStats(this.storage_.win_count_, this.storage_.units_traveled_);
let potential_new_position_x = this.position_head_[0] + vector_move[0];
let potential_new_position_y = this.position_head_[1] + vector_move[1];
let potential_new_position = [potential_new_position_x, potential_new_position_y];
// Check if new position collides with obstacles
if(this.collision_detector_.collisionAtLocation(potential_new_position))
{
this.alive_ = false;
this.ui_handler_.generateAlert("You died.", "Stay to spectate.", false);
this.communicator_.sendMessage('RequestRemotePlayerDeath', 'Global', this.id_);
};
// Check if new position collides with border and update to new position
let border_detection = this.collision_detector_.borderAtLocation(potential_new_position);
this.position_head_ = border_detection[0];
// If collided with border
if(border_detection[1])
{
this.position_head_old_ = [this.position_head_[0], this.position_head_[1]]; // Deep copy
}
}
// +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
// Methods: Updatingplayer: Draw and network
generateDrawStartPositionRequest()
{
let draw_request = {
position_head_old: this.position_head_old_,
position_head: [this.position_head_[0] + this.thickness_, this.position_head_[1] + this.thickness_],
color: this.color_,
thickness: this.thickness_
};
return draw_request;
}
generateDrawRequest()
{
let draw_request = {
position_head_old: this.position_head_old_,
position_head: this.position_head_,
color: this.color_,
thickness: this.thickness_
};
return draw_request;
}
sendDrawRequest(draw_request)
{
let message_content = {
player: this.id_,
draw_request: draw_request
};
this.communicator_.sendMessage('RequestPositionUpdate', 'Global', message_content);
}
storeAndSendDrawRequest()
{
let draw_request = this.generateDrawRequest();
this.draw_queue_.push(draw_request);
this.sendDrawRequest(draw_request);
}
drawPendingDrawRequests()
{
while(this.draw_queue_.length > 0)
{
let draw_request = this.draw_queue_.shift();
this.drawer_.drawLineFromTo(draw_request.position_head_old, draw_request.position_head, draw_request.color,
draw_request.thickness);
}
}
// +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
// Methods: Special effects
handleEffectHoles(delta_ms)
{
// Distance in pixels from the beginning of the last hole
let distance_last_hole = this.speed_ * (Date.now() - this.last_hole_) / 1000;
// Draw hole aka draw nothing
if(distance_last_hole < this.hole_length_)
{
this.color_ = '#00000000';
}
else
{
this.color_ = this.colors_[this.id_ % this.colors_.length];
}
// Start new hole
if(distance_last_hole > this.hole_distance_calc_)
{
// Calculate new hole distance
let min = Math.ceil(this.hole_distance_ - this.hole_distance_diff_);
let max = Math.floor(this.hole_distance_ + this.hole_distance_diff_);
this.hole_distance_calc_ = Math.floor(Math.random() * (max - min + 1)) + min;
// Start new hole now
this.last_hole_ = Date.now();
}
}
}