-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathc-communicator.js
116 lines (95 loc) · 3.1 KB
/
c-communicator.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
class Communicator
{
// +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
// Setup
constructor(server_url, server_port, logger, game)
{
// Message register
this.register_ = {};
// General
this.logger_ = logger;
this.game_ = game;
// Connection
this.connection_open_ = false;
this.websocket_ = new WebSocket('ws://' + server_url + ':' + server_port);
// Connection events
let event_target = this;
this.websocket_.onopen = function(e){event_target.onOpen.call(event_target, e);};
this.websocket_.onmessage = function(e){event_target.onMessage.call(event_target, e);};
this.websocket_.onclose = function(e){event_target.onClose.call(event_target, e);};
this.websocket_.onerror = function(e){event_target.onError.call(event_target, e);};
}
// +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
// Handle events
onOpen(event)
{
this.logger_.log(1, 'WebSocket open');
this.connection_open_ = true;
}
onMessage(event)
{
this.logger_.log(2, 'WebSocket message receive');
// Unpack message
let message = JSON.parse(event.data);
let m_type = message.type;
// Create player array if never created before
if(this.register_[m_type] == undefined)
{
this.register_[m_type] = new Set();
}
// Give message to registered players
let event_target = this;
this.register_[m_type].forEach(
function(message_target)
{
message_target.handleMessage(message);
}
);
}
onClose(event)
{
this.logger_.log(1, 'WebSocket close');
this.game_.stopGame();
this.game_.resetGame();
this.game_.ui_handler_.generateAlert('Connection lost', 'The server disconnected. Please come back later.', false);
}
onError(event)
{
this.logger_.log(1, 'WebSocket error');
this.game_.stopGame();
this.game_.resetGame();
this.game_.ui_handler_.generateAlert('Connection lost', 'The server disconnected. Please come back later.', false);
}
// +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
// Methods for receiving
registerToMessageType(type, message_target)
{
// Create player array if never created before
if(this.register_[type] == undefined)
{
this.register_[type] = new Set();
}
this.register_[type].add(message_target);
}
unregisterFromMessageType(type, message_target)
{
if(this.register_[type] == undefined)
{
return true;
}
this.register_[type].delete(message_target);
}
// +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
// Methods for sending
sendMessage(type, destination, content)
{
this.logger_.log(2, 'WebSocket message send');
let message =
{
type: type,
destination: destination,
content: content,
};
this.websocket_.send(JSON.stringify(message));
}
}