1
0
Fork 0
spacetac/src/scripts/game/BattleLog.ts

42 lines
1.2 KiB
TypeScript
Raw Normal View History

2014-12-31 00:00:00 +00:00
module SpaceTac.Game {
// Log of a battle
// This keeps track of all events in a battle
// It also allows to register a callback to receive these events
export class BattleLog {
// Full list of battle events
events: BaseLogEvent[];
2014-12-31 00:00:00 +00:00
2014-12-31 00:00:00 +00:00
// List of subscribers
private subscribers: Function[];
2014-12-31 00:00:00 +00:00
// Create an initially empty log
constructor() {
this.events = [];
2014-12-31 00:00:00 +00:00
this.subscribers = [];
2014-12-31 00:00:00 +00:00
}
// Add a battle event to the log
add(event: BaseLogEvent) {
2014-12-31 00:00:00 +00:00
this.events.push(event);
2014-12-31 00:00:00 +00:00
this.subscribers.forEach((subscriber) => {
subscriber(event);
});
}
// Subscribe a callback to receive further events
subscribe(callback: (event: BaseLogEvent) => void): Function {
2014-12-31 00:00:00 +00:00
this.subscribers.push(callback);
return callback;
}
// Unsubscribe a callback
// Pass the value returned by 'subscribe' as argument
unsubscribe(callback: Function): void {
var index = this.subscribers.indexOf(callback);
if (index >= 0) {
this.subscribers.splice(index, 1);
}
2014-12-31 00:00:00 +00:00
}
}
}