Ejemplo n.º 1
0
 protected PluginUIBase(IKapturePlugin kapturePlugin)
 {
     KapturePlugin = kapturePlugin;
     BuildWindows();
     SetWindowVisibility();
     AddEventHandlers();
 }
Ejemplo n.º 2
0
 public RollMonitor(IKapturePlugin plugin)
 {
     _plugin       = plugin;
     _processTimer = new Timer
     {
         Interval = _plugin.Configuration.RollMonitorProcessFrequency, Enabled = true
     };
     _processTimer.Elapsed += ProcessRolls;
 }
Ejemplo n.º 3
0
 public LootLogger(IKapturePlugin plugin)
 {
     _plugin = plugin;
     SetLogFormat();
     _writeTimer = new Timer
     {
         Interval = _plugin.Configuration.WriteToLogFrequency, Enabled = true
     };
     _writeTimer.Elapsed += WriteToLogFile;
     _isProcessing        = false;
 }
Ejemplo n.º 4
0
 /// <summary>
 /// Initializes a new instance of the <see cref="ENLootProcessor"/> class.
 /// </summary>
 /// <param name="kapturePlugin">kapture plugin.</param>
 public ENLootProcessor(IKapturePlugin kapturePlugin)
     : base(kapturePlugin)
 {
 }
Ejemplo n.º 5
0
 /// <summary>
 /// Initializes a new instance of the <see cref="LootWindow"/> class.
 /// </summary>
 /// <param name="plugin">plugin.</param>
 public LootWindow(KapturePlugin plugin)
     : base(plugin, Loc.Localize("LootOverlayWindow", "Loot") + "###Kapture_Loot_Window")
 {
     this.plugin = plugin;
 }
Ejemplo n.º 6
0
 /// <summary>
 /// Initializes a new instance of the <see cref="RollWindow"/> class.
 /// </summary>
 /// <param name="plugin">plugin.</param>
 public RollWindow(KapturePlugin plugin)
     : base(plugin, Loc.Localize("RollMonitorOverlayWindow", "Roll Monitor") + "###Kapture_RollMonitor_Window")
 {
     this.plugin = plugin;
 }
Ejemplo n.º 7
0
 /// <summary>
 /// Initializes a new instance of the <see cref="PluginDataManager"/> class.
 /// </summary>
 /// <param name="plugin">kapture plugin.</param>
 public PluginDataManager(IKapturePlugin plugin)
 {
     this.Plugin   = plugin;
     this.DataPath = KapturePlugin.PluginInterface.ConfigDirectory + "/data/";
     this.CreateDataDirectory();
 }
Ejemplo n.º 8
0
        /// <summary>
        /// Load test data.
        /// </summary>
        /// <param name="plugin">kapture plugin.</param>
        public static void LoadTestData(IKapturePlugin plugin)
        {
            // get test data by language
            TestDataSet?testDataSet = null;
            var         langCode    = plugin.ClientLanguage();

            testDataSet = langCode switch
            {
                0 => new TestDataSet
                {
                    ItemName1   = "Ruby Tide Bracelets of Fending",
                    ItemName2   = "Wind-up Aldgoat",
                    PlayerName1 = "Wyatt Earp",
                    PlayerName2 = "April O'Neil",
                },
                1 => new TestDataSet
                {
                    ItemName1   = "Ruby Tide Bracelets of Fending",
                    ItemName2   = "Wind-up Aldgoat",
                    PlayerName1 = "Wyatt Earp",
                    PlayerName2 = "April O'Neil",
                },
                2 => new TestDataSet
                {
                    ItemName1   = "Topasring",
                    ItemName2   = "Kiesgolem",
                    PlayerName1 = "Hans Yolo",
                    PlayerName2 = "April O'Neil",
                },
                3 => new TestDataSet
                {
                    ItemName1   = "Ruby Tide Bracelets of Fending",
                    ItemName2   = "Wind-up Aldgoat",
                    PlayerName1 = "Wyatt Earp",
                    PlayerName2 = "April O'Neil",
                },
                4 => new TestDataSet
                {
                    ItemName1 = "延夏学士指饰", ItemName2 = "改良型田园监督者耳坠", PlayerName1 = "望舒", PlayerName2 = "语嫣",
                },
                _ => testDataSet,
            };

            if (testDataSet == null)
            {
                return;
            }

            // add loot
            var event1 = new LootEvent
            {
                LootEventType     = LootEventType.Add,
                LootEventTypeName = Enum.GetName(typeof(LootEventType), LootEventType.Add) ?? string.Empty,
                Timestamp         = DateUtil.CurrentTime(),
                LootEventId       = Guid.NewGuid(),
                TerritoryTypeId   = 1,
                ContentId         = 1,
                LootMessage       = new LootMessage
                {
                    ItemId   = 1,
                    ItemName = testDataSet.ItemName1,
                },
                ItemName            = testDataSet.ItemName1,
                ItemNameAbbreviated = testDataSet.ItemName1,
            };

            plugin.RollMonitor.ProcessRoll(event1);
            plugin.LootEvents.Add(event1);

            // add again
            var event2 = new LootEvent
            {
                LootEventType     = LootEventType.Add,
                LootEventTypeName = Enum.GetName(typeof(LootEventType), LootEventType.Add) ?? string.Empty,
                Timestamp         = DateUtil.CurrentTime(),
                LootEventId       = Guid.NewGuid(),
                TerritoryTypeId   = 1,
                ContentId         = 1,
                LootMessage       = new LootMessage
                {
                    ItemId   = 1,
                    ItemName = testDataSet.ItemName2,
                },
                ItemName            = testDataSet.ItemName2,
                ItemNameAbbreviated = testDataSet.ItemName2,
            };

            plugin.RollMonitor.ProcessRoll(event2);
            plugin.LootEvents.Add(event2);

            // cast
            var event3 = new LootEvent
            {
                LootEventType     = LootEventType.Cast,
                LootEventTypeName = Enum.GetName(typeof(LootEventType), LootEventType.Cast) ?? string.Empty,
                Timestamp         = DateUtil.CurrentTime(),
                LootEventId       = Guid.NewGuid(),
                TerritoryTypeId   = 1,
                ContentId         = 1,
                LootMessage       = new LootMessage
                {
                    ItemId   = 1,
                    ItemName = testDataSet.ItemName1,
                },
                ItemName            = testDataSet.ItemName1,
                ItemNameAbbreviated = testDataSet.ItemName1,
                PlayerName          = testDataSet.PlayerName1,
            };

            plugin.RollMonitor.ProcessRoll(event3);
            plugin.LootEvents.Add(event3);

            // cast again
            var event4 = new LootEvent
            {
                LootEventType     = LootEventType.Cast,
                LootEventTypeName = Enum.GetName(typeof(LootEventType), LootEventType.Cast) ?? string.Empty,
                Timestamp         = DateUtil.CurrentTime(),
                LootEventId       = Guid.NewGuid(),
                TerritoryTypeId   = 1,
                ContentId         = 1,
                LootMessage       = new LootMessage
                {
                    ItemId   = 1,
                    ItemName = testDataSet.ItemName1,
                },
                ItemName            = testDataSet.ItemName1,
                ItemNameAbbreviated = testDataSet.ItemName1,
                PlayerName          = testDataSet.PlayerName2,
            };

            plugin.RollMonitor.ProcessRoll(event4);
            plugin.LootEvents.Add(event4);

            // need roll
            var event5 = new LootEvent
            {
                LootEventType     = LootEventType.Need,
                LootEventTypeName = Enum.GetName(typeof(LootEventType), LootEventType.Need) ?? string.Empty,
                Timestamp         = DateUtil.CurrentTime(),
                LootEventId       = Guid.NewGuid(),
                TerritoryTypeId   = 1,
                ContentId         = 1,
                LootMessage       = new LootMessage
                {
                    ItemId   = 1,
                    ItemName = testDataSet.ItemName1,
                },
                ItemName            = testDataSet.ItemName1,
                ItemNameAbbreviated = testDataSet.ItemName1,
                PlayerName          = testDataSet.PlayerName2,
                Roll = 45,
            };

            plugin.RollMonitor.ProcessRoll(event5);
            plugin.LootEvents.Add(event5);

            // need roll again
            var event6 = new LootEvent
            {
                LootEventType     = LootEventType.Need,
                LootEventTypeName = Enum.GetName(typeof(LootEventType), LootEventType.Need) ?? string.Empty,
                Timestamp         = DateUtil.CurrentTime(),
                LootEventId       = Guid.NewGuid(),
                TerritoryTypeId   = 1,
                ContentId         = 1,
                LootMessage       = new LootMessage
                {
                    ItemId   = 1,
                    ItemName = testDataSet.ItemName1,
                },
                ItemName            = testDataSet.ItemName1,
                ItemNameAbbreviated = testDataSet.ItemName1,
                PlayerName          = testDataSet.PlayerName1,
                Roll = 57,
            };

            plugin.RollMonitor.ProcessRoll(event6);
            plugin.LootEvents.Add(event6);

            // obtain
            var event7 = new LootEvent
            {
                LootEventType     = LootEventType.Obtain,
                LootEventTypeName = Enum.GetName(typeof(LootEventType), LootEventType.Obtain) ?? string.Empty,
                Timestamp         = DateUtil.CurrentTime(),
                LootEventId       = Guid.NewGuid(),
                TerritoryTypeId   = 1,
                ContentId         = 1,
                LootMessage       = new LootMessage
                {
                    ItemId   = 1,
                    ItemName = testDataSet.ItemName1,
                },
                ItemName            = testDataSet.ItemName1,
                ItemNameAbbreviated = testDataSet.ItemName1,
                PlayerName          = testDataSet.PlayerName1,
            };

            plugin.RollMonitor.ProcessRoll(event7);
            plugin.LootEvents.Add(event7);
        }
Ejemplo n.º 9
0
 public SettingsWindow(IKapturePlugin plugin)
 {
     _plugin = plugin;
     UpdateItemList();
 }
Ejemplo n.º 10
0
 public RollMonitorOverlayWindow(IKapturePlugin plugin)
 {
     _plugin = plugin;
 }
Ejemplo n.º 11
0
 protected LootProcessor(IKapturePlugin plugin)
 {
     Plugin = plugin;
     CompileRegex();
 }
Ejemplo n.º 12
0
 public PluginUI(IKapturePlugin kapturePlugin) : base(kapturePlugin)
 {
 }
Ejemplo n.º 13
0
 /// <summary>
 /// Initializes a new instance of the <see cref="LootProcessor"/> class.
 /// </summary>
 /// <param name="plugin">kapture plugin.</param>
 protected LootProcessor(IKapturePlugin plugin)
 {
     this.Plugin = plugin;
     this.CompileRegex();
 }
Ejemplo n.º 14
0
 public LootOverlayWindow(IKapturePlugin plugin)
 {
     _plugin = plugin;
 }