Add reading of SLTimes

This commit is contained in:
2022-04-15 14:55:26 -05:00
parent 0db9e4945e
commit 77b034ce57
4 changed files with 41 additions and 12 deletions

View File

@ -17,18 +17,18 @@ exports.SLGetSystemTime = class SLGetSystemTime extends SLMessage {
decode() {
super.decode();
this.year = this.readUInt16LE();
this.month = this.readUInt16LE();
this.dayOfWeek = this.readUInt16LE();
this.day = this.readUInt16LE();
this.hour = this.readUInt16LE();
this.minute = this.readUInt16LE();
this.second = this.readUInt16LE();
this.millisecond = this.readUInt16LE();
this.date = this.readSLDateTime();
this.year = this.date.getFullYear();
this.month = this.date.getMonth() + 1; // + 1 is for backward compatibility, SLTime represents months as 1-based
this.dayOfWeek = this.date.getDay(); // should probably be tweaked to adjust what days are 0-6 as SLTime and Javascript start on different days of the week
this.day = this.date.getDate();
this.hour = this.date.getHours();
this.minute = this.date.getMinutes();
this.second = this.date.getSeconds();
this.millisecond = this.date.getMilliseconds();
var adjustForDST = this.readInt32LE();
this.adjustForDST = adjustForDST === 1;
this.date = new Date(this.year, this.month - 1, this.day, this.hour, this.minute, this.second);
}
static getResponseId() {

View File

@ -165,6 +165,20 @@ exports.SLMessage = class SLMessage extends SmartBuffer {
this.writeInt16LE(date.getMilliseconds());
}
readSLDateTime() {
let date = new Date();
date.setFullYear(this.readInt16LE());
date.setMonth(this.readInt16LE() - 1);
this.readInt16LE();
date.setDate(this.readInt16LE());
date.setHours(this.readInt16LE());
date.setMinutes(this.readInt16LE());
date.setSeconds(this.readInt16LE());
date.setMilliseconds(this.readInt16LE());
return date;
}
static slackForAlignment(val) {
return (4 - val % 4) % 4;
}