1
0
Fork 0
spacetac/src/core/BattleLog.ts

77 lines
2.1 KiB
TypeScript
Raw Normal View History

2017-02-09 00:00:35 +00:00
module TS.SpaceTac {
/**
* Function called to inform subscribers of new events.
*/
export type LogSubscriber = (event: BaseBattleEvent) => any;
2014-12-31 00:00:00 +00:00
// 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 {
2014-12-31 00:00:00 +00:00
// Full list of battle events
events: BaseBattleEvent[];
2014-12-31 00:00:00 +00:00
2014-12-31 00:00:00 +00:00
// List of subscribers
private subscribers: LogSubscriber[];
2014-12-31 00:00:00 +00:00
// List of event codes to ignore
private filters: string[];
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 = [];
this.filters = [];
}
postUnserialize(): void {
this.subscribers = [];
}
// Clear the stored events
clear(): void {
this.events = [];
2014-12-31 00:00:00 +00:00
}
// Add a battle event to the log
add(event: BaseBattleEvent): void {
// Apply filters
var filtered = false;
this.filters.forEach((code: string) => {
if (event.code === code) {
filtered = true;
}
});
if (filtered) {
return;
}
2014-12-31 00:00:00 +00:00
this.events.push(event);
2014-12-31 00:00:00 +00:00
this.subscribers.forEach(subscriber => {
2014-12-31 00:00:00 +00:00
subscriber(event);
});
}
// Filter out a type of event
addFilter(event_code: string): void {
this.filters.push(event_code);
}
2014-12-31 00:00:00 +00:00
// Subscribe a callback to receive further events
subscribe(callback: LogSubscriber): LogSubscriber {
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: LogSubscriber): void {
2014-12-31 00:00:00 +00:00
var index = this.subscribers.indexOf(callback);
if (index >= 0) {
this.subscribers.splice(index, 1);
}
2014-12-31 00:00:00 +00:00
}
}
2015-01-07 00:00:00 +00:00
}