forked from chroma-sdk/chroma-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathAnimation.ts
101 lines (87 loc) · 3 KB
/
Animation.ts
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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
import {AnimationFrame} from "./AnimationFrame";
import {ChromaInstance} from "./ChromaInstance";
import Color from "./Color";
import {DeviceRequestData} from "./DeviceRequestData";
import DeviceContainer from "./Devices";
import {IDevice, IDeviceData} from "./Devices/Base";
import ChromaLink from "./Devices/ChromaLink";
import Headset from "./Devices/Headset";
import Keyboard from "./Devices/Keyboard";
import Keypad from "./Devices/Keypad";
import Mouse from "./Devices/Mouse";
import Mousepad from "./Devices/Mousepad";
import Effect from "./Effect";
function sleep(time: number) {
return new Promise((resolve) => setTimeout(resolve, time));
}
export interface IPlayInstance {
send(container: DeviceContainer): void;
deleteEffect(effects: string[]): Promise<any>;
sendDeviceUpdate(devices: IDeviceData[], store: boolean): Promise<any>;
}
export class Animation {
public Frames: AnimationFrame[] = [];
public isPlaying: boolean = false;
public Instance: IPlayInstance = null;
public currentFrame: number = 0;
private isInit: boolean= false;
public async play(instance: IPlayInstance) {
if (!this.isInit) {
this.isInit = true;
await this.createFrames();
}
this.Instance = instance;
this.isPlaying = true;
this.currentFrame = 0;
await this.createEffects(instance);
this.playLoop(instance);
}
public async playLoop(instance: IPlayInstance) {
for (const i of this.Frames){
await instance.send(i);
await sleep(i.delay);
if (!this.isPlaying) {
break;
}
}
if (this.isPlaying) {
this.playLoop(instance);
}
}
public async stop() {
this.isPlaying = false;
const effectIds: string[] = [];
for (const frame of this.Frames){
if (frame.Keyboard.effectId !== "") {
effectIds.push(frame.Keyboard.effectId);
}
frame.Keyboard.effectId = "";
}
await this.Instance.deleteEffect(effectIds);
}
public async createEffects(instance: IPlayInstance) {
this.Instance = instance;
const keyboardEffectData: any = [];
const device = new DeviceRequestData();
device.device = "keyboard";
for (const frame of this.Frames){
keyboardEffectData.push(frame.Keyboard.effectData);
}
device.effectData = {
effects: keyboardEffectData,
};
const response = await instance.sendDeviceUpdate([device], true);
const keyboardids = response[0];
for (let i = 0; i < keyboardids.length; i++) {
this.Frames[i].Keyboard.effectId = keyboardids[i] !== null ? keyboardids[i].id : "";
}
return;
}
public async createFrames() {
for (let i = 0; i < 10; i++) {
const frame = new AnimationFrame();
frame.Keyboard.setAll(new Color("ff0000"));
this.Frames.push(frame);
}
}
}