FlowingSPDG / streamdeck-vmix-plugin

Elgato StreamDeck plugin for communicating with vMix.
https://flowing.tokyo
MIT License
7 stars 1 forks source link

Activatorの際に[]func(XMLResponse) bool で点灯判定を行う #63

Open FlowingSPDG opened 2 months ago

FlowingSPDG commented 2 months ago

Activator受信時にXML()を発行、OnActivatorにロジックは仕込まない OnXMLの際に、xmlHandlersの判定を行う trueの場合対象を点灯する

ActivatorNameを入れる必要がある

FlowingSPDG commented 2 months ago
type tallyHandler struct {
  contexts []string
}

func (th *tallyHandler) ShouldTally(*XMLRrsponse) bool {
  // ...
}

type vMixConnections struct {
  tallyHandlers map[string]tallyHandler
}

こんな感じ?