-
Notifications
You must be signed in to change notification settings - Fork 2
/
eventManager.js
78 lines (69 loc) · 3.69 KB
/
eventManager.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
/*
* AsTeRICS - Assistive Technology Rapid Integration and Construction Set (http://www.asterics.org)
*
*
* Y88b d88P 888 d8888 .d8888b. .d8888b.
* Y88b d88P 888 d88888 d88P Y88b d88P Y88b
* Y88b d88P 888 d88P888 888 888 Y88b.
* Y88b d888b d88P .d88b. 8888888b. d88P 888 888 "Y888b.
* Y88b d88888b d88P d8P Y8b 888 Y88b d88P 888 888 "Y88b.
* Y88b d88P Y88b d88P 88888888 888 888 d88P 888 888 888 "888
* Y88888P Y88888P Y8b. 888 d88P d8888888888 Y88b d88P Y88b d88P
* Y888P Y888P "Y8888 8888888P" d88P 888 "Y8888P" "Y8888P"
*
* Copyright 2015 Kompetenznetzwerk KI-I (http://ki-i.at)
*
* 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.
*/
ACS.eventManager = function() {
// ***********************************************************************************************************************
// ************************************************** private variables **************************************************
// ***********************************************************************************************************************
var events = [];
// ***********************************************************************************************************************
// ************************************************** private methods ****************************************************
// ***********************************************************************************************************************
// ***********************************************************************************************************************
// ************************************************** public stuff *******************************************************
// ***********************************************************************************************************************
var returnObj = {};
returnObj.registerHandler = function(eventName, handler) {
if (events[eventName]) {
if (events[eventName].indexOf(handler) === -1) events[eventName].push(handler);
} else {
events[eventName] = [handler];
}
}
returnObj.removeHandler = function(eventName, handler) {
if ((events[eventName]) && (events[eventName].indexOf(handler) > -1)) {
events[eventName].splice(events[eventName].indexOf(handler), 1);
return true;
} else {
return false;
}
}
returnObj.fireEvent = function(eventName, args) {
log.info('the event ' + eventName + ' has been fired and the handlers (if any) are now being called...');
if (!events[eventName]) {
return false;
} else {
for (var i = 0; i < events[eventName].length; i++) {
events[eventName][i](args);
}
}
}
// ***********************************************************************************************************************
// ************************************************** constructor code ***************************************************
// ***********************************************************************************************************************
return returnObj;
}