Files
agent/config-serializer/config-items/SwitchKeymapAction.ts
2016-04-02 00:58:06 +02:00

44 lines
1.2 KiB
TypeScript

class SwitchKeymapAction extends KeyAction {
private _keymapId: number;
get keymapId(): number {
return this._keymapId;
}
set keymapId(value) {
if (!TypeChecker.isUInt8Valid(value)) {
throw `Invalid SwitchKeymapAction.keymapId: ${value}`;
}
this._keymapId = value;
}
_fromJsObject(jsObject: any): SwitchKeymapAction {
this.assertKeyActionType(jsObject, KeyActionType.SwitchKeymapAction, 'SwitchKeymapAction');
this.keymapId = jsObject.keymapId;
return this;
}
_fromBinary(buffer: UhkBuffer): SwitchKeymapAction {
this.readAndAssertKeyActionId(buffer, KeyActionId.SwitchKeymapAction, 'SwitchKeymapAction');
this.keymapId = buffer.readUInt8();
return this;
}
_toJsObject(): any {
return {
keyActionType: KeyActionType.SwitchKeymapAction,
keymapId: this.keymapId
};
}
_toBinary(buffer: UhkBuffer) {
buffer.writeUInt8(KeyActionId.SwitchKeymapAction);
buffer.writeUInt8(this.keymapId);
}
toString(): string {
return `<SwitchKeymapAction keymapId="${this.keymapId}">`;
}
}