增加获取保存融合配置

This commit is contained in:
ljqing 2023-01-05 16:26:10 +08:00
parent b22ca5b37c
commit 0f2ae5452a
2 changed files with 62 additions and 0 deletions

View File

@ -1425,6 +1425,18 @@ export default class ClientConnection {
); );
} }
public async GetBlendingConfig(name: string) {
return await this.doRpc<Protocol.GetBlendingConfigResponseEntity>(
new Protocol.GetBlendingConfigRequestEntity(name)
);
}
public async SaveBlendingConfig(name: string) {
return await this.doRpc<Protocol.SaveBlendingConfigResponseEntity>(
new Protocol.SaveBlendingConfigRequestEntity(name)
);
}
public destory() { public destory() {
this.ws?.close(); this.ws?.close();
if (this.ws) { if (this.ws) {

View File

@ -635,6 +635,8 @@ export namespace Protocol {
Commands.kSetBlendingGammaParam, Commands.kSetBlendingGammaParam,
Commands.kEnableBlending, Commands.kEnableBlending,
Commands.kSetBlendingOverlap, Commands.kSetBlendingOverlap,
Commands.kGetBlendingConfig,
Commands.kSaveBlendingConfig,
]); ]);
public static get AllCommands() { public static get AllCommands() {
return this._all_commands; return this._all_commands;
@ -3335,4 +3337,52 @@ export namespace Protocol {
enable = false; enable = false;
width = 0; width = 0;
} }
export class GetBlendingConfigResponseEntity extends PacketEntity {
constructor() {
super();
super.flag = PacketEntity.FLAG_RESPONSE;
}
config = "";
}
export class GetBlendingConfigRequestEntity extends PacketEntity {
constructor(
name: string,
rpc_id = 0
) {
super();
super.command = Commands.kGetBlendingConfig
super.flag = PacketEntity.FLAG_REQUEST;
super.rpc_id = rpc_id;
this.name = name ?? "";
}
name = "";
}
export class SaveBlendingConfigResponseEntity extends PacketEntity {
constructor() {
super();
super.flag = PacketEntity.FLAG_RESPONSE;
}
success = false;
}
export class SaveBlendingConfigRequestEntity extends PacketEntity {
constructor(
name: string,
rpc_id = 0
) {
super();
super.command = Commands.kSaveBlendingConfig;
super.flag = PacketEntity.FLAG_REQUEST;
super.rpc_id = rpc_id;
this.name = name ?? "";
}
name = "";
}
} }