public OverlayStreamBossItemViewModel(OverlayStreamBossItemModel item) : this() { this.startingHealth = item.StartingHealth; this.followBonus = item.FollowBonus; this.hostBonus = item.HostBonus; this.subBonus = item.SubscriberBonus; this.donationBonus = item.DonationBonus; this.sparkBonus = item.SparkBonus; this.emberBonus = item.EmberBonus; this.healingBonus = item.HealingBonus; this.overkillBonus = item.OverkillBonus; this.width = item.Width; this.height = item.Height; this.Font = item.TextFont; this.TextColor = ColorSchemes.GetColorName(item.TextColor); this.BorderColor = ColorSchemes.GetColorName(item.BorderColor); this.ProgressColor = ColorSchemes.GetColorName(item.ProgressColor); this.BackgroundColor = ColorSchemes.GetColorName(item.BackgroundColor); this.damageAnimation = item.DamageAnimation; this.newBossAnimation = item.NewBossAnimation; this.NewBossCommand = item.NewStreamBossCommand; this.HTML = item.HTML; }
private static IEnumerable <CommandBase> GetAllCommands(IChannelSettings settings) { List <CommandBase> commands = new List <CommandBase>(); commands.AddRange(settings.ChatCommands); commands.AddRange(settings.EventCommands); commands.AddRange(settings.InteractiveCommands); commands.AddRange(settings.TimerCommands); commands.AddRange(settings.ActionGroupCommands); commands.AddRange(settings.GameCommands); foreach (UserDataViewModel userData in settings.UserData.Values) { commands.AddRange(userData.CustomCommands); if (userData.EntranceCommand != null) { commands.Add(userData.EntranceCommand); } } foreach (GameCommandBase gameCommand in settings.GameCommands) { commands.AddRange(gameCommand.GetAllInnerCommands()); } foreach (UserCurrencyViewModel currency in settings.Currencies.Values) { if (currency.RankChangedCommand != null) { commands.Add(currency.RankChangedCommand); } } foreach (UserInventoryViewModel inventory in settings.Inventories.Values) { commands.Add(inventory.ItemsBoughtCommand); commands.Add(inventory.ItemsSoldCommand); } #pragma warning disable CS0612 // Type or member is obsolete foreach (OverlayWidget widget in settings.overlayWidgetsInternal) { if (widget.Item is OverlayStreamBoss) { OverlayStreamBoss item = ((OverlayStreamBoss)widget.Item); if (item.NewStreamBossCommand != null) { commands.Add(item.NewStreamBossCommand); } } else if (widget.Item is OverlayProgressBar) { OverlayProgressBar item = ((OverlayProgressBar)widget.Item); if (item.GoalReachedCommand != null) { commands.Add(item.GoalReachedCommand); } } else if (widget.Item is OverlayTimer) { OverlayTimer item = ((OverlayTimer)widget.Item); if (item.TimerCompleteCommand != null) { commands.Add(item.TimerCompleteCommand); } } } #pragma warning restore CS0612 // Type or member is obsolete foreach (OverlayWidgetModel widget in settings.OverlayWidgets) { if (widget.Item is OverlayStreamBossItemModel) { OverlayStreamBossItemModel item = ((OverlayStreamBossItemModel)widget.Item); if (item.NewStreamBossCommand != null) { commands.Add(item.NewStreamBossCommand); } } else if (widget.Item is OverlayProgressBarItemModel) { OverlayProgressBarItemModel item = ((OverlayProgressBarItemModel)widget.Item); if (item.GoalReachedCommand != null) { commands.Add(item.GoalReachedCommand); } } else if (widget.Item is OverlayTimerItemModel) { OverlayTimerItemModel item = ((OverlayTimerItemModel)widget.Item); if (item.TimerCompleteCommand != null) { commands.Add(item.TimerCompleteCommand); } } } commands.Add(settings.GameQueueUserJoinedCommand); commands.Add(settings.GameQueueUserSelectedCommand); commands.Add(settings.GiveawayStartedReminderCommand); commands.Add(settings.GiveawayUserJoinedCommand); commands.Add(settings.GiveawayWinnerSelectedCommand); commands.Add(settings.ModerationStrike1Command); commands.Add(settings.ModerationStrike2Command); commands.Add(settings.ModerationStrike3Command); commands.Add(settings.SongAddedCommand); commands.Add(settings.SongRemovedCommand); commands.Add(settings.SongPlayedCommand); return(commands.Where(c => c != null)); }
public OverlayStreamBossItemControl(OverlayStreamBossItemModel item) { InitializeComponent(); this.viewModel = new OverlayStreamBossItemViewModel(item); }
private static IEnumerable <CommandBase> GetAllCommands(SettingsV2Model settings) { List <CommandBase> commands = new List <CommandBase>(); commands.AddRange(settings.ChatCommands); commands.AddRange(settings.EventCommands); commands.AddRange(settings.TimerCommands); commands.AddRange(settings.ActionGroupCommands); commands.AddRange(settings.GameCommands); commands.AddRange(settings.TwitchChannelPointsCommands); commands.AddRange(settings.CustomCommands.Values); foreach (UserDataModel userData in settings.UserData.Values) { commands.AddRange(userData.CustomCommands); if (userData.EntranceCommand != null) { commands.Add(userData.EntranceCommand); } } foreach (GameCommandBase gameCommand in settings.GameCommands) { commands.AddRange(gameCommand.GetAllInnerCommands()); } foreach (OverlayWidgetModel widget in settings.OverlayWidgets) { if (widget.Item is OverlayStreamBossItemModel) { OverlayStreamBossItemModel item = ((OverlayStreamBossItemModel)widget.Item); if (item.NewStreamBossCommand != null) { commands.Add(item.NewStreamBossCommand); } } else if (widget.Item is OverlayProgressBarItemModel) { OverlayProgressBarItemModel item = ((OverlayProgressBarItemModel)widget.Item); if (item.GoalReachedCommand != null) { commands.Add(item.GoalReachedCommand); } } else if (widget.Item is OverlayTimerItemModel) { OverlayTimerItemModel item = ((OverlayTimerItemModel)widget.Item); if (item.TimerCompleteCommand != null) { commands.Add(item.TimerCompleteCommand); } } } commands.Add(settings.GameQueueUserJoinedCommand); commands.Add(settings.GameQueueUserSelectedCommand); commands.Add(settings.GiveawayStartedReminderCommand); commands.Add(settings.GiveawayUserJoinedCommand); commands.Add(settings.GiveawayWinnerSelectedCommand); commands.Add(settings.ModerationStrike1Command); commands.Add(settings.ModerationStrike2Command); commands.Add(settings.ModerationStrike3Command); return(commands.Where(c => c != null)); }