继电器状态
This commit is contained in:
parent
fe0cd20114
commit
712a415245
@ -20,10 +20,8 @@
|
|||||||
<q-item-label> 关联的继电器 </q-item-label>
|
<q-item-label> 关联的继电器 </q-item-label>
|
||||||
<div class="q-gutter-sm row">
|
<div class="q-gutter-sm row">
|
||||||
<q-chip
|
<q-chip
|
||||||
v-for="(
|
v-for="item in combinationTypeConfig.refRelaysCode"
|
||||||
item, index
|
:key="item"
|
||||||
) in combinationTypeConfig.refRelaysCode"
|
|
||||||
:key="keySelect.substr(index, 1)"
|
|
||||||
square
|
square
|
||||||
color="primary"
|
color="primary"
|
||||||
text-color="white"
|
text-color="white"
|
||||||
@ -74,7 +72,6 @@ import { PhaseFailureProtector } from 'src/graphics/phaseFailureProtector/PhaseF
|
|||||||
|
|
||||||
defineExpose({ editRelateRelays });
|
defineExpose({ editRelateRelays });
|
||||||
|
|
||||||
const keySelect = 'abcdefghijklmnopqrstuvwxyz';
|
|
||||||
const relayCabinetStore = useRelayCabinetStore();
|
const relayCabinetStore = useRelayCabinetStore();
|
||||||
const $q = useQuasar();
|
const $q = useQuasar();
|
||||||
const showRangeConfig = ref(true);
|
const showRangeConfig = ref(true);
|
||||||
|
@ -27,7 +27,7 @@
|
|||||||
v-for="(
|
v-for="(
|
||||||
combinationtype, index
|
combinationtype, index
|
||||||
) in relateRelayConfig.combinationtypes"
|
) in relateRelayConfig.combinationtypes"
|
||||||
:key="keySelect.substr(index, 1)"
|
:key="combinationtype"
|
||||||
v-model="combinationtype.expanded"
|
v-model="combinationtype.expanded"
|
||||||
:label="combinationtype.code"
|
:label="combinationtype.code"
|
||||||
@click="toggleItem(index)"
|
@click="toggleItem(index)"
|
||||||
@ -43,8 +43,8 @@
|
|||||||
/>
|
/>
|
||||||
<div class="q-gutter-sm row">
|
<div class="q-gutter-sm row">
|
||||||
<q-chip
|
<q-chip
|
||||||
v-for="(item, index) in combinationtype.refRelaysCode"
|
v-for="item in combinationtype.refRelaysCode"
|
||||||
:key="keySelect.substr(index, 1)"
|
:key="item"
|
||||||
square
|
square
|
||||||
color="primary"
|
color="primary"
|
||||||
text-color="white"
|
text-color="white"
|
||||||
@ -107,7 +107,6 @@ import { PhaseFailureProtector } from 'src/graphics/phaseFailureProtector/PhaseF
|
|||||||
|
|
||||||
defineExpose({ editRelateRelays });
|
defineExpose({ editRelateRelays });
|
||||||
|
|
||||||
const keySelect = 'abcdefghijklmnopqrstuvwxyz';
|
|
||||||
const relayCabinetStore = useRelayCabinetStore();
|
const relayCabinetStore = useRelayCabinetStore();
|
||||||
const $q = useQuasar();
|
const $q = useQuasar();
|
||||||
const showRangeConfig = ref(true);
|
const showRangeConfig = ref(true);
|
||||||
|
@ -1,7 +1,8 @@
|
|||||||
import * as pb_1 from 'google-protobuf';
|
import * as pb_1 from 'google-protobuf';
|
||||||
import { IRelayData, Relay } from 'src/graphics/relay/Relay';
|
import { IRelayData, IRelayState, Relay } from 'src/graphics/relay/Relay';
|
||||||
import { relayCabinetGraphicData } from 'src/protos/relayCabinetLayoutGraphics';
|
import { relayCabinetGraphicData } from 'src/protos/relayCabinetLayoutGraphics';
|
||||||
import { GraphicDataBase } from '../graphics/GraphicDataBase';
|
import { GraphicDataBase, GraphicStateBase } from '../graphics/GraphicDataBase';
|
||||||
|
import { state } from 'src/protos/device_state';
|
||||||
|
|
||||||
export class RelayData extends GraphicDataBase implements IRelayData {
|
export class RelayData extends GraphicDataBase implements IRelayData {
|
||||||
constructor(data?: relayCabinetGraphicData.Relay) {
|
constructor(data?: relayCabinetGraphicData.Relay) {
|
||||||
@ -42,3 +43,36 @@ export class RelayData extends GraphicDataBase implements IRelayData {
|
|||||||
return pb_1.Message.equals(this.data, other.data);
|
return pb_1.Message.equals(this.data, other.data);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
export class RelayState extends GraphicStateBase implements IRelayState {
|
||||||
|
constructor(proto?: state.ReplyState) {
|
||||||
|
let states;
|
||||||
|
if (proto) {
|
||||||
|
states = proto;
|
||||||
|
} else {
|
||||||
|
states = new state.ReplyState();
|
||||||
|
}
|
||||||
|
super(states, Relay.Type);
|
||||||
|
}
|
||||||
|
get code(): string {
|
||||||
|
return this.states.id;
|
||||||
|
}
|
||||||
|
get xh(): boolean {
|
||||||
|
return this.states.xh;
|
||||||
|
}
|
||||||
|
set xh(xh: boolean) {
|
||||||
|
this.states.xh = xh;
|
||||||
|
}
|
||||||
|
get states(): state.ReplyState {
|
||||||
|
return this.getState<state.ReplyState>();
|
||||||
|
}
|
||||||
|
clone(): RelayState {
|
||||||
|
return new RelayState(this.states.cloneMessage());
|
||||||
|
}
|
||||||
|
copyFrom(data: GraphicStateBase): void {
|
||||||
|
pb_1.Message.copyInto(data._state, this._state);
|
||||||
|
}
|
||||||
|
eq(data: GraphicStateBase): boolean {
|
||||||
|
return pb_1.Message.equals(this._state, data._state);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
@ -25,7 +25,7 @@ import {
|
|||||||
import { RelayCabinetData } from './relayCabinetGraphics/RelayCabinetInteraction';
|
import { RelayCabinetData } from './relayCabinetGraphics/RelayCabinetInteraction';
|
||||||
import { RelayCabinetDraw } from 'src/graphics/relayCabinet/RelayCabinetDrawAssistant';
|
import { RelayCabinetDraw } from 'src/graphics/relayCabinet/RelayCabinetDrawAssistant';
|
||||||
import { Relay, RelayTemplate } from 'src/graphics/relay/Relay';
|
import { Relay, RelayTemplate } from 'src/graphics/relay/Relay';
|
||||||
import { RelayData } from './relayCabinetGraphics/RelayInteraction';
|
import { RelayData, RelayState } from './relayCabinetGraphics/RelayInteraction';
|
||||||
import { RelayDraw } from 'src/graphics/relay/RelayDrawAssistant';
|
import { RelayDraw } from 'src/graphics/relay/RelayDrawAssistant';
|
||||||
import {
|
import {
|
||||||
PhaseFailureProtector,
|
PhaseFailureProtector,
|
||||||
@ -75,7 +75,7 @@ export function initDrawApp(): IDrawApp {
|
|||||||
});
|
});
|
||||||
const app = drawApp;
|
const app = drawApp;
|
||||||
new RelayCabinetDraw(app, new RelayCabinetTemplate(new RelayCabinetData()));
|
new RelayCabinetDraw(app, new RelayCabinetTemplate(new RelayCabinetData()));
|
||||||
new RelayDraw(app, new RelayTemplate(new RelayData()));
|
new RelayDraw(app, new RelayTemplate(new RelayData(), new RelayState()));
|
||||||
new PhaseFailureProtectorDraw(
|
new PhaseFailureProtectorDraw(
|
||||||
app,
|
app,
|
||||||
new PhaseFailureProtectorTemplate(new PhaseFailureProtectorData())
|
new PhaseFailureProtectorTemplate(new PhaseFailureProtectorData())
|
||||||
|
@ -1,13 +1,25 @@
|
|||||||
import { GraphicData, IGraphicApp, IGraphicStorage } from 'src/jl-graphic';
|
import {
|
||||||
|
ClientEngine,
|
||||||
|
GraphicData,
|
||||||
|
GraphicQueryStore,
|
||||||
|
GraphicState,
|
||||||
|
IGraphicApp,
|
||||||
|
IGraphicScene,
|
||||||
|
IGraphicStorage,
|
||||||
|
} from 'src/jl-graphic';
|
||||||
import { getPublishMapInfoByLineId } from 'src/api/PublishApi';
|
import { getPublishMapInfoByLineId } from 'src/api/PublishApi';
|
||||||
import { useLineStore } from 'src/stores/line-store';
|
import { useLineStore } from 'src/stores/line-store';
|
||||||
import { toUint8Array } from 'js-base64';
|
import { toUint8Array } from 'js-base64';
|
||||||
import { relayCabinetGraphicData } from 'src/protos/relayCabinetLayoutGraphics';
|
import { relayCabinetGraphicData } from 'src/protos/relayCabinetLayoutGraphics';
|
||||||
import { RelayCabinetData } from './relayCabinetGraphics/RelayCabinetInteraction';
|
import { RelayCabinetData } from './relayCabinetGraphics/RelayCabinetInteraction';
|
||||||
import { RelayData } from './relayCabinetGraphics/RelayInteraction';
|
import { RelayData, RelayState } from './relayCabinetGraphics/RelayInteraction';
|
||||||
import { RelayCabinetTemplate } from 'src/graphics/relayCabinet/RelayCabinet';
|
import { RelayCabinetTemplate } from 'src/graphics/relayCabinet/RelayCabinet';
|
||||||
import { RelayTemplate } from 'src/graphics/relay/Relay';
|
import { RelayTemplate } from 'src/graphics/relay/Relay';
|
||||||
import { SceneToPictureType } from './lineApp';
|
import { SceneToPictureType } from './lineApp';
|
||||||
|
import { getWebsocketUrl } from 'src/configs/UrlManage';
|
||||||
|
import { getOnlyToken } from 'src/configs/TokenManage';
|
||||||
|
import { state } from 'src/protos/device_state';
|
||||||
|
import { Notify, QNotifyUpdateOptions } from 'quasar';
|
||||||
|
|
||||||
export function initRelayScene(lineApp: IGraphicApp) {
|
export function initRelayScene(lineApp: IGraphicApp) {
|
||||||
// 继电器
|
// 继电器
|
||||||
@ -21,10 +33,68 @@ export function initRelayScene(lineApp: IGraphicApp) {
|
|||||||
});
|
});
|
||||||
const relayGraphicTemplate = [
|
const relayGraphicTemplate = [
|
||||||
new RelayCabinetTemplate(new RelayCabinetData()),
|
new RelayCabinetTemplate(new RelayCabinetData()),
|
||||||
new RelayTemplate(new RelayData()),
|
new RelayTemplate(new RelayData(), new RelayState()),
|
||||||
];
|
];
|
||||||
relayScene.registerGraphicTemplates(...relayGraphicTemplate);
|
relayScene.registerGraphicTemplates(...relayGraphicTemplate);
|
||||||
return lineApp;
|
relayScene.on('postdataloaded', () => {
|
||||||
|
handleSubscribe(relayScene, lineApp);
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
function handleSubscribe(relayScene: IGraphicScene, lineApp: IGraphicApp) {
|
||||||
|
const lineStore = useLineStore();
|
||||||
|
const simulationId = lineStore.simulationId;
|
||||||
|
const mapId = lineStore.mapId;
|
||||||
|
const app = relayScene;
|
||||||
|
|
||||||
|
lineApp?.enableWsMassaging({
|
||||||
|
engine: ClientEngine.Centrifugo,
|
||||||
|
wsUrl: `${getWebsocketUrl()}`,
|
||||||
|
token: getOnlyToken() as string,
|
||||||
|
});
|
||||||
|
app.subscribe({
|
||||||
|
destination: `simulation-${simulationId}_${mapId}-devices-status`,
|
||||||
|
messageConverter: (message: Uint8Array) => {
|
||||||
|
const states: GraphicState[] = [];
|
||||||
|
const storage = state.PushedDevicesStatus.deserialize(message);
|
||||||
|
if (storage.all) {
|
||||||
|
storage.allStatus.replyState.forEach((relayState) => {
|
||||||
|
if (relayState.id) {
|
||||||
|
states.push(new RelayState(relayState));
|
||||||
|
}
|
||||||
|
});
|
||||||
|
} else {
|
||||||
|
storage.varStatus.updatedReply.forEach((relayState) => {
|
||||||
|
if (relayState.id) {
|
||||||
|
states.push(new RelayState(relayState));
|
||||||
|
}
|
||||||
|
});
|
||||||
|
}
|
||||||
|
if (states && states.length > 0) {
|
||||||
|
lineStore.setSocketStates(states);
|
||||||
|
}
|
||||||
|
return states;
|
||||||
|
},
|
||||||
|
graphicQueryer: (state: GraphicState, store: GraphicQueryStore) => {
|
||||||
|
return store.queryById(state.code);
|
||||||
|
},
|
||||||
|
});
|
||||||
|
|
||||||
|
let msgNotify: null | ((props?: QNotifyUpdateOptions | undefined) => void) =
|
||||||
|
null;
|
||||||
|
app.on('websocket-connect-state-change', (connected) => {
|
||||||
|
if (!connected && !msgNotify) {
|
||||||
|
msgNotify = Notify.create({
|
||||||
|
type: 'negative',
|
||||||
|
timeout: 0,
|
||||||
|
position: 'top-right',
|
||||||
|
message: '通信链接已断开!',
|
||||||
|
});
|
||||||
|
} else if (msgNotify && connected) {
|
||||||
|
msgNotify();
|
||||||
|
msgNotify = null;
|
||||||
|
}
|
||||||
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
async function loadRelayDatas(): Promise<IGraphicStorage> {
|
async function loadRelayDatas(): Promise<IGraphicStorage> {
|
||||||
|
@ -1,6 +1,7 @@
|
|||||||
import { Color, Graphics } from 'pixi.js';
|
import { Color, Graphics } from 'pixi.js';
|
||||||
import {
|
import {
|
||||||
GraphicData,
|
GraphicData,
|
||||||
|
GraphicState,
|
||||||
JlGraphic,
|
JlGraphic,
|
||||||
JlGraphicTemplate,
|
JlGraphicTemplate,
|
||||||
VectorText,
|
VectorText,
|
||||||
@ -16,10 +17,16 @@ export interface IRelayData extends GraphicData {
|
|||||||
eq(other: IRelayData): boolean;
|
eq(other: IRelayData): boolean;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
export interface IRelayState extends GraphicState {
|
||||||
|
get xh(): boolean; //继电器吸合
|
||||||
|
set xh(v: boolean);
|
||||||
|
}
|
||||||
|
|
||||||
export const relayConsts = {
|
export const relayConsts = {
|
||||||
radius: 8,
|
radius: 8,
|
||||||
lineWidth: 3,
|
lineWidth: 3,
|
||||||
lineColor: '0xff0000',
|
closeColor: '0x00FF00',
|
||||||
|
openColor: '0xff0000',
|
||||||
};
|
};
|
||||||
export class Relay extends JlGraphic {
|
export class Relay extends JlGraphic {
|
||||||
static Type = 'Relay';
|
static Type = 'Relay';
|
||||||
@ -39,6 +46,11 @@ export class Relay extends JlGraphic {
|
|||||||
get datas(): IRelayData {
|
get datas(): IRelayData {
|
||||||
return this.getDatas<IRelayData>();
|
return this.getDatas<IRelayData>();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
get states(): IRelayState {
|
||||||
|
return this.getStates<IRelayState>();
|
||||||
|
}
|
||||||
|
|
||||||
doRepaint(): void {
|
doRepaint(): void {
|
||||||
this.labelGraphic.text = this.datas.code;
|
this.labelGraphic.text = this.datas.code;
|
||||||
const labelPosition = this.datas.childTransforms?.find(
|
const labelPosition = this.datas.childTransforms?.find(
|
||||||
@ -51,10 +63,16 @@ export class Relay extends JlGraphic {
|
|||||||
}
|
}
|
||||||
this.refDevice.position.set(0, -20);
|
this.refDevice.position.set(0, -20);
|
||||||
const relayGraphic = this.relayGraphic;
|
const relayGraphic = this.relayGraphic;
|
||||||
|
let relayColor = relayConsts.openColor;
|
||||||
|
if (this.states?.xh) {
|
||||||
|
relayColor = relayConsts.closeColor;
|
||||||
|
} else {
|
||||||
|
relayColor = relayConsts.openColor;
|
||||||
|
}
|
||||||
relayGraphic
|
relayGraphic
|
||||||
.clear()
|
.clear()
|
||||||
.lineStyle(relayConsts.lineWidth, new Color(relayConsts.lineColor));
|
.lineStyle(relayConsts.lineWidth, new Color(relayColor));
|
||||||
relayGraphic.beginFill(relayConsts.lineColor);
|
relayGraphic.beginFill(relayColor);
|
||||||
relayGraphic.drawCircle(0, 0, relayConsts.radius);
|
relayGraphic.drawCircle(0, 0, relayConsts.radius);
|
||||||
relayGraphic.endFill;
|
relayGraphic.endFill;
|
||||||
}
|
}
|
||||||
@ -68,14 +86,16 @@ export class Relay extends JlGraphic {
|
|||||||
}
|
}
|
||||||
|
|
||||||
export class RelayTemplate extends JlGraphicTemplate<Relay> {
|
export class RelayTemplate extends JlGraphicTemplate<Relay> {
|
||||||
constructor(dataTemplate: IRelayData) {
|
constructor(dataTemplate: IRelayData, stateTemplate?: IRelayState) {
|
||||||
super(Relay.Type, {
|
super(Relay.Type, {
|
||||||
dataTemplate,
|
dataTemplate,
|
||||||
|
stateTemplate,
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
new(): Relay {
|
new(): Relay {
|
||||||
const relay = new Relay();
|
const relay = new Relay();
|
||||||
relay.loadData(this.datas);
|
relay.loadData(this.datas);
|
||||||
|
relay.loadState(this.states);
|
||||||
return relay;
|
return relay;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -2166,9 +2166,10 @@ export namespace state {
|
|||||||
removedTrainId?: string[];
|
removedTrainId?: string[];
|
||||||
updatedSwitch?: SwitchState[];
|
updatedSwitch?: SwitchState[];
|
||||||
updatedSection?: SectionState[];
|
updatedSection?: SectionState[];
|
||||||
|
updatedReply?: ReplyState[];
|
||||||
}) {
|
}) {
|
||||||
super();
|
super();
|
||||||
pb_1.Message.initialize(this, Array.isArray(data) ? data : [], 0, -1, [1, 2, 3, 4], this.#one_of_decls);
|
pb_1.Message.initialize(this, Array.isArray(data) ? data : [], 0, -1, [1, 2, 3, 4, 5], this.#one_of_decls);
|
||||||
if (!Array.isArray(data) && typeof data == "object") {
|
if (!Array.isArray(data) && typeof data == "object") {
|
||||||
if ("updatedTrain" in data && data.updatedTrain != undefined) {
|
if ("updatedTrain" in data && data.updatedTrain != undefined) {
|
||||||
this.updatedTrain = data.updatedTrain;
|
this.updatedTrain = data.updatedTrain;
|
||||||
@ -2182,6 +2183,9 @@ export namespace state {
|
|||||||
if ("updatedSection" in data && data.updatedSection != undefined) {
|
if ("updatedSection" in data && data.updatedSection != undefined) {
|
||||||
this.updatedSection = data.updatedSection;
|
this.updatedSection = data.updatedSection;
|
||||||
}
|
}
|
||||||
|
if ("updatedReply" in data && data.updatedReply != undefined) {
|
||||||
|
this.updatedReply = data.updatedReply;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
get updatedTrain() {
|
get updatedTrain() {
|
||||||
@ -2208,11 +2212,18 @@ export namespace state {
|
|||||||
set updatedSection(value: SectionState[]) {
|
set updatedSection(value: SectionState[]) {
|
||||||
pb_1.Message.setRepeatedWrapperField(this, 4, value);
|
pb_1.Message.setRepeatedWrapperField(this, 4, value);
|
||||||
}
|
}
|
||||||
|
get updatedReply() {
|
||||||
|
return pb_1.Message.getRepeatedWrapperField(this, ReplyState, 5) as ReplyState[];
|
||||||
|
}
|
||||||
|
set updatedReply(value: ReplyState[]) {
|
||||||
|
pb_1.Message.setRepeatedWrapperField(this, 5, value);
|
||||||
|
}
|
||||||
static fromObject(data: {
|
static fromObject(data: {
|
||||||
updatedTrain?: ReturnType<typeof TrainState.prototype.toObject>[];
|
updatedTrain?: ReturnType<typeof TrainState.prototype.toObject>[];
|
||||||
removedTrainId?: string[];
|
removedTrainId?: string[];
|
||||||
updatedSwitch?: ReturnType<typeof SwitchState.prototype.toObject>[];
|
updatedSwitch?: ReturnType<typeof SwitchState.prototype.toObject>[];
|
||||||
updatedSection?: ReturnType<typeof SectionState.prototype.toObject>[];
|
updatedSection?: ReturnType<typeof SectionState.prototype.toObject>[];
|
||||||
|
updatedReply?: ReturnType<typeof ReplyState.prototype.toObject>[];
|
||||||
}): VariationStatus {
|
}): VariationStatus {
|
||||||
const message = new VariationStatus({});
|
const message = new VariationStatus({});
|
||||||
if (data.updatedTrain != null) {
|
if (data.updatedTrain != null) {
|
||||||
@ -2227,6 +2238,9 @@ export namespace state {
|
|||||||
if (data.updatedSection != null) {
|
if (data.updatedSection != null) {
|
||||||
message.updatedSection = data.updatedSection.map(item => SectionState.fromObject(item));
|
message.updatedSection = data.updatedSection.map(item => SectionState.fromObject(item));
|
||||||
}
|
}
|
||||||
|
if (data.updatedReply != null) {
|
||||||
|
message.updatedReply = data.updatedReply.map(item => ReplyState.fromObject(item));
|
||||||
|
}
|
||||||
return message;
|
return message;
|
||||||
}
|
}
|
||||||
toObject() {
|
toObject() {
|
||||||
@ -2235,6 +2249,7 @@ export namespace state {
|
|||||||
removedTrainId?: string[];
|
removedTrainId?: string[];
|
||||||
updatedSwitch?: ReturnType<typeof SwitchState.prototype.toObject>[];
|
updatedSwitch?: ReturnType<typeof SwitchState.prototype.toObject>[];
|
||||||
updatedSection?: ReturnType<typeof SectionState.prototype.toObject>[];
|
updatedSection?: ReturnType<typeof SectionState.prototype.toObject>[];
|
||||||
|
updatedReply?: ReturnType<typeof ReplyState.prototype.toObject>[];
|
||||||
} = {};
|
} = {};
|
||||||
if (this.updatedTrain != null) {
|
if (this.updatedTrain != null) {
|
||||||
data.updatedTrain = this.updatedTrain.map((item: TrainState) => item.toObject());
|
data.updatedTrain = this.updatedTrain.map((item: TrainState) => item.toObject());
|
||||||
@ -2248,6 +2263,9 @@ export namespace state {
|
|||||||
if (this.updatedSection != null) {
|
if (this.updatedSection != null) {
|
||||||
data.updatedSection = this.updatedSection.map((item: SectionState) => item.toObject());
|
data.updatedSection = this.updatedSection.map((item: SectionState) => item.toObject());
|
||||||
}
|
}
|
||||||
|
if (this.updatedReply != null) {
|
||||||
|
data.updatedReply = this.updatedReply.map((item: ReplyState) => item.toObject());
|
||||||
|
}
|
||||||
return data;
|
return data;
|
||||||
}
|
}
|
||||||
serialize(): Uint8Array;
|
serialize(): Uint8Array;
|
||||||
@ -2262,6 +2280,8 @@ export namespace state {
|
|||||||
writer.writeRepeatedMessage(3, this.updatedSwitch, (item: SwitchState) => item.serialize(writer));
|
writer.writeRepeatedMessage(3, this.updatedSwitch, (item: SwitchState) => item.serialize(writer));
|
||||||
if (this.updatedSection.length)
|
if (this.updatedSection.length)
|
||||||
writer.writeRepeatedMessage(4, this.updatedSection, (item: SectionState) => item.serialize(writer));
|
writer.writeRepeatedMessage(4, this.updatedSection, (item: SectionState) => item.serialize(writer));
|
||||||
|
if (this.updatedReply.length)
|
||||||
|
writer.writeRepeatedMessage(5, this.updatedReply, (item: ReplyState) => item.serialize(writer));
|
||||||
if (!w)
|
if (!w)
|
||||||
return writer.getResultBuffer();
|
return writer.getResultBuffer();
|
||||||
}
|
}
|
||||||
@ -2283,6 +2303,9 @@ export namespace state {
|
|||||||
case 4:
|
case 4:
|
||||||
reader.readMessage(message.updatedSection, () => pb_1.Message.addToRepeatedWrapperField(message, 4, SectionState.deserialize(reader), SectionState));
|
reader.readMessage(message.updatedSection, () => pb_1.Message.addToRepeatedWrapperField(message, 4, SectionState.deserialize(reader), SectionState));
|
||||||
break;
|
break;
|
||||||
|
case 5:
|
||||||
|
reader.readMessage(message.updatedReply, () => pb_1.Message.addToRepeatedWrapperField(message, 5, ReplyState.deserialize(reader), ReplyState));
|
||||||
|
break;
|
||||||
default: reader.skipField();
|
default: reader.skipField();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user