├── .gitignore ├── 1.2 └── Assemblies │ └── PerformanceAnalyzer.dll ├── 1.3 └── Assemblies │ └── PerformanceAnalyzer.dll ├── 1.4 └── Assemblies │ └── PerformanceAnalyzer.dll ├── 1.5 └── Assemblies │ └── PerformanceAnalyzer.dll ├── 1.6 └── Assemblies │ └── PerformanceAnalyzer.dll ├── About ├── About.xml ├── Preview.png ├── PublishedFileId.txt ├── custom_patching.png ├── identification_lingo.png ├── internal_meth_profilng.gif ├── locate_mod.png └── open_dnspy.gif ├── Defs └── MainButton.xml ├── Languages └── English │ └── Keyed │ └── English.xml ├── README.md ├── Source ├── DebugLogEnabler.cs ├── Directory.Build.props ├── Dubs Performance Analyzer.1.5.csproj ├── Dubs Performance Analyzer.1.6.csproj ├── Dubs Performance Analyzer.sln ├── GUIElement_TPS.cs ├── GameComponent_Analyzer.cs ├── KeyBindings.cs ├── MainButton_Toggle.cs ├── ModInfoCache.cs ├── Modbase.cs ├── Panel_Settings.cs ├── Profiling │ ├── Analyzer.cs │ ├── GUI │ │ ├── Bottom TabRow │ │ │ ├── Graph │ │ │ │ ├── GraphDrawer.cs │ │ │ │ └── Panel_Graph.cs │ │ │ ├── Panel_BottomTabRow.cs │ │ │ ├── Panel_Patches.cs │ │ │ ├── Panel_Save.cs │ │ │ └── Panel_StackTraces.cs │ │ ├── Constructs │ │ │ ├── Entry.cs │ │ │ ├── GUIController.cs │ │ │ └── Tab.cs │ │ ├── Panel_BottomRow.cs │ │ ├── Panel_DevOptions.cs │ │ ├── Panel_Logs.cs │ │ ├── Panel_Stats.cs │ │ ├── Panel_Tabs.cs │ │ ├── Panel_TopRow.cs │ │ └── Window_SearchBar.cs │ ├── H_DoSingleTickUpdate.cs │ ├── H_RootUpdate.cs │ ├── Patches │ │ ├── Custom │ │ │ ├── CustomTick.cs │ │ │ └── CustomUpdate.cs │ │ ├── GUI │ │ │ ├── H_ColonistBarOnGUI.cs │ │ │ ├── H_DoTabs.cs │ │ │ ├── H_GameComponentOnGUI.cs │ │ │ ├── H_ResourceReadoutOnGUI.cs │ │ │ ├── H_ThingOverlaysOnGUI.cs │ │ │ ├── H_UIRootOnGUI.cs │ │ │ └── H_WindowStackOnGUI.cs │ │ ├── Tick │ │ │ ├── H_DoSingleTick.cs │ │ │ ├── H_FindPath.cs │ │ │ ├── H_GameComponentTick.cs │ │ │ ├── H_GetLord.cs │ │ │ ├── H_GetStatValue.cs │ │ │ ├── H_JobDriver.cs │ │ │ ├── H_JobGivers.cs │ │ │ ├── H_MapComponentTick.cs │ │ │ ├── H_NeedsTrackerTick.cs │ │ │ ├── H_PawnGeneration.cs │ │ │ ├── H_PawnTickProfile.cs │ │ │ ├── H_Room.cs │ │ │ ├── H_Storyteller.cs │ │ │ ├── H_ThingComps.cs │ │ │ ├── H_ThinkNodes.cs │ │ │ ├── H_TickListTick.cs │ │ │ ├── H_WorkGivers.cs │ │ │ └── H_WorldPawns.cs │ │ └── Update │ │ │ ├── H_DrawDynamicThings.cs │ │ │ ├── H_DrawSection.cs │ │ │ ├── H_GameComponentUpdate.cs │ │ │ ├── H_HarmonyPatches.cs │ │ │ ├── H_HarmonyTranspilers.cs │ │ │ ├── H_HarmonyTranspilersInternalMethods.cs │ │ │ ├── H_InfoCard.cs │ │ │ ├── H_MapComponentUpdate.cs │ │ │ ├── H_RegenerateLayers.cs │ │ │ ├── H_RenderPawnAt.cs │ │ │ ├── H_Root.cs │ │ │ ├── H_SectionLayer_Things.cs │ │ │ ├── H_SectionLayer_ThingsDrawLayer.cs │ │ │ ├── H_Shooting.cs │ │ │ ├── H_ThoughtWorkers.cs │ │ │ └── H_UIRootUpdate.cs │ ├── StackTrace.cs │ ├── Statistics │ │ ├── LogStats.cs │ │ ├── ProfileController.cs │ │ ├── ProfileLog.cs │ │ └── Profiler.cs │ └── Utility │ │ ├── DubGUI.cs │ │ ├── DynamicTypeBuilder.cs │ │ ├── Extensions.cs │ │ ├── FileUtility.cs │ │ ├── MethodInfoCache.cs │ │ ├── Myers.cs │ │ ├── ProfilingUtility │ │ ├── InternalMethodUtility.cs │ │ ├── MethodTransplanting.cs │ │ ├── TranspilerMethodUtility.cs │ │ └── Utility.cs │ │ ├── ThreadSafeLogger.cs │ │ ├── Watch.cs │ │ ├── XmlParser.cs │ │ └── colourPicker.cs ├── ResourceCache.cs ├── Settings.cs └── Window_Analyzer.cs └── Textures └── DPA └── UI ├── Clear.dds ├── Clear.png ├── MenuSett.dds ├── MenuSett.png ├── MintSearch.dds ├── MintSearch.png ├── Pin.dds ├── Pin.png ├── Record.dds ├── Record.png ├── Refresh.dds ├── Refresh.png ├── Save.dds ├── Save.png ├── Stop.dds ├── Stop.png ├── Support.dds ├── Support.png ├── az.dds ├── az.png ├── billButt.dds ├── billButt.png ├── discord.dds ├── discord.png ├── dropdown.dds ├── dropdown.png ├── enter.dds ├── enter.png ├── foldup.dds ├── foldup.png ├── hsbMark.dds ├── hsbMark.png ├── hueMark.dds ├── hueMark.png ├── mem.dds ├── mem.png ├── sav.dds └── sav.png /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dubwise56/Dubs-Performance-Analyzer/HEAD/.gitignore -------------------------------------------------------------------------------- /1.2/Assemblies/PerformanceAnalyzer.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dubwise56/Dubs-Performance-Analyzer/HEAD/1.2/Assemblies/PerformanceAnalyzer.dll -------------------------------------------------------------------------------- /1.3/Assemblies/PerformanceAnalyzer.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dubwise56/Dubs-Performance-Analyzer/HEAD/1.3/Assemblies/PerformanceAnalyzer.dll -------------------------------------------------------------------------------- /1.4/Assemblies/PerformanceAnalyzer.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dubwise56/Dubs-Performance-Analyzer/HEAD/1.4/Assemblies/PerformanceAnalyzer.dll -------------------------------------------------------------------------------- /1.5/Assemblies/PerformanceAnalyzer.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dubwise56/Dubs-Performance-Analyzer/HEAD/1.5/Assemblies/PerformanceAnalyzer.dll -------------------------------------------------------------------------------- /1.6/Assemblies/PerformanceAnalyzer.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dubwise56/Dubs-Performance-Analyzer/HEAD/1.6/Assemblies/PerformanceAnalyzer.dll -------------------------------------------------------------------------------- /About/About.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dubwise56/Dubs-Performance-Analyzer/HEAD/About/About.xml -------------------------------------------------------------------------------- /About/Preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dubwise56/Dubs-Performance-Analyzer/HEAD/About/Preview.png -------------------------------------------------------------------------------- /About/PublishedFileId.txt: -------------------------------------------------------------------------------- 1 | 2038874626 -------------------------------------------------------------------------------- /About/custom_patching.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dubwise56/Dubs-Performance-Analyzer/HEAD/About/custom_patching.png -------------------------------------------------------------------------------- /About/identification_lingo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dubwise56/Dubs-Performance-Analyzer/HEAD/About/identification_lingo.png -------------------------------------------------------------------------------- /About/internal_meth_profilng.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dubwise56/Dubs-Performance-Analyzer/HEAD/About/internal_meth_profilng.gif -------------------------------------------------------------------------------- /About/locate_mod.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dubwise56/Dubs-Performance-Analyzer/HEAD/About/locate_mod.png -------------------------------------------------------------------------------- /About/open_dnspy.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dubwise56/Dubs-Performance-Analyzer/HEAD/About/open_dnspy.gif -------------------------------------------------------------------------------- /Defs/MainButton.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dubwise56/Dubs-Performance-Analyzer/HEAD/Defs/MainButton.xml -------------------------------------------------------------------------------- /Languages/English/Keyed/English.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dubwise56/Dubs-Performance-Analyzer/HEAD/Languages/English/Keyed/English.xml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dubwise56/Dubs-Performance-Analyzer/HEAD/README.md -------------------------------------------------------------------------------- /Source/DebugLogEnabler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dubwise56/Dubs-Performance-Analyzer/HEAD/Source/DebugLogEnabler.cs -------------------------------------------------------------------------------- /Source/Directory.Build.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dubwise56/Dubs-Performance-Analyzer/HEAD/Source/Directory.Build.props -------------------------------------------------------------------------------- /Source/Dubs Performance Analyzer.1.5.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dubwise56/Dubs-Performance-Analyzer/HEAD/Source/Dubs Performance Analyzer.1.5.csproj -------------------------------------------------------------------------------- /Source/Dubs Performance Analyzer.1.6.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dubwise56/Dubs-Performance-Analyzer/HEAD/Source/Dubs Performance Analyzer.1.6.csproj -------------------------------------------------------------------------------- /Source/Dubs Performance Analyzer.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dubwise56/Dubs-Performance-Analyzer/HEAD/Source/Dubs Performance Analyzer.sln -------------------------------------------------------------------------------- /Source/GUIElement_TPS.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dubwise56/Dubs-Performance-Analyzer/HEAD/Source/GUIElement_TPS.cs -------------------------------------------------------------------------------- /Source/GameComponent_Analyzer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dubwise56/Dubs-Performance-Analyzer/HEAD/Source/GameComponent_Analyzer.cs -------------------------------------------------------------------------------- /Source/KeyBindings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dubwise56/Dubs-Performance-Analyzer/HEAD/Source/KeyBindings.cs -------------------------------------------------------------------------------- /Source/MainButton_Toggle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dubwise56/Dubs-Performance-Analyzer/HEAD/Source/MainButton_Toggle.cs -------------------------------------------------------------------------------- /Source/ModInfoCache.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dubwise56/Dubs-Performance-Analyzer/HEAD/Source/ModInfoCache.cs -------------------------------------------------------------------------------- /Source/Modbase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dubwise56/Dubs-Performance-Analyzer/HEAD/Source/Modbase.cs -------------------------------------------------------------------------------- /Source/Panel_Settings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dubwise56/Dubs-Performance-Analyzer/HEAD/Source/Panel_Settings.cs -------------------------------------------------------------------------------- /Source/Profiling/Analyzer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dubwise56/Dubs-Performance-Analyzer/HEAD/Source/Profiling/Analyzer.cs -------------------------------------------------------------------------------- /Source/Profiling/GUI/Bottom TabRow/Graph/GraphDrawer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dubwise56/Dubs-Performance-Analyzer/HEAD/Source/Profiling/GUI/Bottom TabRow/Graph/GraphDrawer.cs -------------------------------------------------------------------------------- /Source/Profiling/GUI/Bottom TabRow/Graph/Panel_Graph.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dubwise56/Dubs-Performance-Analyzer/HEAD/Source/Profiling/GUI/Bottom TabRow/Graph/Panel_Graph.cs -------------------------------------------------------------------------------- /Source/Profiling/GUI/Bottom TabRow/Panel_BottomTabRow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dubwise56/Dubs-Performance-Analyzer/HEAD/Source/Profiling/GUI/Bottom TabRow/Panel_BottomTabRow.cs -------------------------------------------------------------------------------- /Source/Profiling/GUI/Bottom TabRow/Panel_Patches.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dubwise56/Dubs-Performance-Analyzer/HEAD/Source/Profiling/GUI/Bottom TabRow/Panel_Patches.cs -------------------------------------------------------------------------------- /Source/Profiling/GUI/Bottom TabRow/Panel_Save.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dubwise56/Dubs-Performance-Analyzer/HEAD/Source/Profiling/GUI/Bottom TabRow/Panel_Save.cs -------------------------------------------------------------------------------- /Source/Profiling/GUI/Bottom TabRow/Panel_StackTraces.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dubwise56/Dubs-Performance-Analyzer/HEAD/Source/Profiling/GUI/Bottom TabRow/Panel_StackTraces.cs -------------------------------------------------------------------------------- /Source/Profiling/GUI/Constructs/Entry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dubwise56/Dubs-Performance-Analyzer/HEAD/Source/Profiling/GUI/Constructs/Entry.cs -------------------------------------------------------------------------------- /Source/Profiling/GUI/Constructs/GUIController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dubwise56/Dubs-Performance-Analyzer/HEAD/Source/Profiling/GUI/Constructs/GUIController.cs -------------------------------------------------------------------------------- /Source/Profiling/GUI/Constructs/Tab.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dubwise56/Dubs-Performance-Analyzer/HEAD/Source/Profiling/GUI/Constructs/Tab.cs -------------------------------------------------------------------------------- /Source/Profiling/GUI/Panel_BottomRow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dubwise56/Dubs-Performance-Analyzer/HEAD/Source/Profiling/GUI/Panel_BottomRow.cs -------------------------------------------------------------------------------- /Source/Profiling/GUI/Panel_DevOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dubwise56/Dubs-Performance-Analyzer/HEAD/Source/Profiling/GUI/Panel_DevOptions.cs -------------------------------------------------------------------------------- /Source/Profiling/GUI/Panel_Logs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dubwise56/Dubs-Performance-Analyzer/HEAD/Source/Profiling/GUI/Panel_Logs.cs -------------------------------------------------------------------------------- /Source/Profiling/GUI/Panel_Stats.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dubwise56/Dubs-Performance-Analyzer/HEAD/Source/Profiling/GUI/Panel_Stats.cs -------------------------------------------------------------------------------- /Source/Profiling/GUI/Panel_Tabs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dubwise56/Dubs-Performance-Analyzer/HEAD/Source/Profiling/GUI/Panel_Tabs.cs -------------------------------------------------------------------------------- /Source/Profiling/GUI/Panel_TopRow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dubwise56/Dubs-Performance-Analyzer/HEAD/Source/Profiling/GUI/Panel_TopRow.cs -------------------------------------------------------------------------------- /Source/Profiling/GUI/Window_SearchBar.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dubwise56/Dubs-Performance-Analyzer/HEAD/Source/Profiling/GUI/Window_SearchBar.cs -------------------------------------------------------------------------------- /Source/Profiling/H_DoSingleTickUpdate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dubwise56/Dubs-Performance-Analyzer/HEAD/Source/Profiling/H_DoSingleTickUpdate.cs -------------------------------------------------------------------------------- /Source/Profiling/H_RootUpdate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dubwise56/Dubs-Performance-Analyzer/HEAD/Source/Profiling/H_RootUpdate.cs -------------------------------------------------------------------------------- /Source/Profiling/Patches/Custom/CustomTick.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dubwise56/Dubs-Performance-Analyzer/HEAD/Source/Profiling/Patches/Custom/CustomTick.cs -------------------------------------------------------------------------------- /Source/Profiling/Patches/Custom/CustomUpdate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dubwise56/Dubs-Performance-Analyzer/HEAD/Source/Profiling/Patches/Custom/CustomUpdate.cs -------------------------------------------------------------------------------- /Source/Profiling/Patches/GUI/H_ColonistBarOnGUI.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dubwise56/Dubs-Performance-Analyzer/HEAD/Source/Profiling/Patches/GUI/H_ColonistBarOnGUI.cs -------------------------------------------------------------------------------- /Source/Profiling/Patches/GUI/H_DoTabs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dubwise56/Dubs-Performance-Analyzer/HEAD/Source/Profiling/Patches/GUI/H_DoTabs.cs -------------------------------------------------------------------------------- /Source/Profiling/Patches/GUI/H_GameComponentOnGUI.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dubwise56/Dubs-Performance-Analyzer/HEAD/Source/Profiling/Patches/GUI/H_GameComponentOnGUI.cs -------------------------------------------------------------------------------- /Source/Profiling/Patches/GUI/H_ResourceReadoutOnGUI.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dubwise56/Dubs-Performance-Analyzer/HEAD/Source/Profiling/Patches/GUI/H_ResourceReadoutOnGUI.cs -------------------------------------------------------------------------------- /Source/Profiling/Patches/GUI/H_ThingOverlaysOnGUI.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dubwise56/Dubs-Performance-Analyzer/HEAD/Source/Profiling/Patches/GUI/H_ThingOverlaysOnGUI.cs -------------------------------------------------------------------------------- /Source/Profiling/Patches/GUI/H_UIRootOnGUI.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dubwise56/Dubs-Performance-Analyzer/HEAD/Source/Profiling/Patches/GUI/H_UIRootOnGUI.cs -------------------------------------------------------------------------------- /Source/Profiling/Patches/GUI/H_WindowStackOnGUI.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dubwise56/Dubs-Performance-Analyzer/HEAD/Source/Profiling/Patches/GUI/H_WindowStackOnGUI.cs -------------------------------------------------------------------------------- /Source/Profiling/Patches/Tick/H_DoSingleTick.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dubwise56/Dubs-Performance-Analyzer/HEAD/Source/Profiling/Patches/Tick/H_DoSingleTick.cs -------------------------------------------------------------------------------- /Source/Profiling/Patches/Tick/H_FindPath.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dubwise56/Dubs-Performance-Analyzer/HEAD/Source/Profiling/Patches/Tick/H_FindPath.cs -------------------------------------------------------------------------------- /Source/Profiling/Patches/Tick/H_GameComponentTick.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dubwise56/Dubs-Performance-Analyzer/HEAD/Source/Profiling/Patches/Tick/H_GameComponentTick.cs -------------------------------------------------------------------------------- /Source/Profiling/Patches/Tick/H_GetLord.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dubwise56/Dubs-Performance-Analyzer/HEAD/Source/Profiling/Patches/Tick/H_GetLord.cs -------------------------------------------------------------------------------- /Source/Profiling/Patches/Tick/H_GetStatValue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dubwise56/Dubs-Performance-Analyzer/HEAD/Source/Profiling/Patches/Tick/H_GetStatValue.cs -------------------------------------------------------------------------------- /Source/Profiling/Patches/Tick/H_JobDriver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dubwise56/Dubs-Performance-Analyzer/HEAD/Source/Profiling/Patches/Tick/H_JobDriver.cs -------------------------------------------------------------------------------- /Source/Profiling/Patches/Tick/H_JobGivers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dubwise56/Dubs-Performance-Analyzer/HEAD/Source/Profiling/Patches/Tick/H_JobGivers.cs -------------------------------------------------------------------------------- /Source/Profiling/Patches/Tick/H_MapComponentTick.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dubwise56/Dubs-Performance-Analyzer/HEAD/Source/Profiling/Patches/Tick/H_MapComponentTick.cs -------------------------------------------------------------------------------- /Source/Profiling/Patches/Tick/H_NeedsTrackerTick.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dubwise56/Dubs-Performance-Analyzer/HEAD/Source/Profiling/Patches/Tick/H_NeedsTrackerTick.cs -------------------------------------------------------------------------------- /Source/Profiling/Patches/Tick/H_PawnGeneration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dubwise56/Dubs-Performance-Analyzer/HEAD/Source/Profiling/Patches/Tick/H_PawnGeneration.cs -------------------------------------------------------------------------------- /Source/Profiling/Patches/Tick/H_PawnTickProfile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dubwise56/Dubs-Performance-Analyzer/HEAD/Source/Profiling/Patches/Tick/H_PawnTickProfile.cs -------------------------------------------------------------------------------- /Source/Profiling/Patches/Tick/H_Room.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dubwise56/Dubs-Performance-Analyzer/HEAD/Source/Profiling/Patches/Tick/H_Room.cs -------------------------------------------------------------------------------- /Source/Profiling/Patches/Tick/H_Storyteller.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dubwise56/Dubs-Performance-Analyzer/HEAD/Source/Profiling/Patches/Tick/H_Storyteller.cs -------------------------------------------------------------------------------- /Source/Profiling/Patches/Tick/H_ThingComps.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dubwise56/Dubs-Performance-Analyzer/HEAD/Source/Profiling/Patches/Tick/H_ThingComps.cs -------------------------------------------------------------------------------- /Source/Profiling/Patches/Tick/H_ThinkNodes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dubwise56/Dubs-Performance-Analyzer/HEAD/Source/Profiling/Patches/Tick/H_ThinkNodes.cs -------------------------------------------------------------------------------- /Source/Profiling/Patches/Tick/H_TickListTick.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dubwise56/Dubs-Performance-Analyzer/HEAD/Source/Profiling/Patches/Tick/H_TickListTick.cs -------------------------------------------------------------------------------- /Source/Profiling/Patches/Tick/H_WorkGivers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dubwise56/Dubs-Performance-Analyzer/HEAD/Source/Profiling/Patches/Tick/H_WorkGivers.cs -------------------------------------------------------------------------------- /Source/Profiling/Patches/Tick/H_WorldPawns.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dubwise56/Dubs-Performance-Analyzer/HEAD/Source/Profiling/Patches/Tick/H_WorldPawns.cs -------------------------------------------------------------------------------- /Source/Profiling/Patches/Update/H_DrawDynamicThings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dubwise56/Dubs-Performance-Analyzer/HEAD/Source/Profiling/Patches/Update/H_DrawDynamicThings.cs -------------------------------------------------------------------------------- /Source/Profiling/Patches/Update/H_DrawSection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dubwise56/Dubs-Performance-Analyzer/HEAD/Source/Profiling/Patches/Update/H_DrawSection.cs -------------------------------------------------------------------------------- /Source/Profiling/Patches/Update/H_GameComponentUpdate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dubwise56/Dubs-Performance-Analyzer/HEAD/Source/Profiling/Patches/Update/H_GameComponentUpdate.cs -------------------------------------------------------------------------------- /Source/Profiling/Patches/Update/H_HarmonyPatches.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dubwise56/Dubs-Performance-Analyzer/HEAD/Source/Profiling/Patches/Update/H_HarmonyPatches.cs -------------------------------------------------------------------------------- /Source/Profiling/Patches/Update/H_HarmonyTranspilers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dubwise56/Dubs-Performance-Analyzer/HEAD/Source/Profiling/Patches/Update/H_HarmonyTranspilers.cs -------------------------------------------------------------------------------- /Source/Profiling/Patches/Update/H_HarmonyTranspilersInternalMethods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dubwise56/Dubs-Performance-Analyzer/HEAD/Source/Profiling/Patches/Update/H_HarmonyTranspilersInternalMethods.cs -------------------------------------------------------------------------------- /Source/Profiling/Patches/Update/H_InfoCard.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dubwise56/Dubs-Performance-Analyzer/HEAD/Source/Profiling/Patches/Update/H_InfoCard.cs -------------------------------------------------------------------------------- /Source/Profiling/Patches/Update/H_MapComponentUpdate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dubwise56/Dubs-Performance-Analyzer/HEAD/Source/Profiling/Patches/Update/H_MapComponentUpdate.cs -------------------------------------------------------------------------------- /Source/Profiling/Patches/Update/H_RegenerateLayers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dubwise56/Dubs-Performance-Analyzer/HEAD/Source/Profiling/Patches/Update/H_RegenerateLayers.cs -------------------------------------------------------------------------------- /Source/Profiling/Patches/Update/H_RenderPawnAt.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dubwise56/Dubs-Performance-Analyzer/HEAD/Source/Profiling/Patches/Update/H_RenderPawnAt.cs -------------------------------------------------------------------------------- /Source/Profiling/Patches/Update/H_Root.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dubwise56/Dubs-Performance-Analyzer/HEAD/Source/Profiling/Patches/Update/H_Root.cs -------------------------------------------------------------------------------- /Source/Profiling/Patches/Update/H_SectionLayer_Things.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dubwise56/Dubs-Performance-Analyzer/HEAD/Source/Profiling/Patches/Update/H_SectionLayer_Things.cs -------------------------------------------------------------------------------- /Source/Profiling/Patches/Update/H_SectionLayer_ThingsDrawLayer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dubwise56/Dubs-Performance-Analyzer/HEAD/Source/Profiling/Patches/Update/H_SectionLayer_ThingsDrawLayer.cs -------------------------------------------------------------------------------- /Source/Profiling/Patches/Update/H_Shooting.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dubwise56/Dubs-Performance-Analyzer/HEAD/Source/Profiling/Patches/Update/H_Shooting.cs -------------------------------------------------------------------------------- /Source/Profiling/Patches/Update/H_ThoughtWorkers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dubwise56/Dubs-Performance-Analyzer/HEAD/Source/Profiling/Patches/Update/H_ThoughtWorkers.cs -------------------------------------------------------------------------------- /Source/Profiling/Patches/Update/H_UIRootUpdate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dubwise56/Dubs-Performance-Analyzer/HEAD/Source/Profiling/Patches/Update/H_UIRootUpdate.cs -------------------------------------------------------------------------------- /Source/Profiling/StackTrace.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dubwise56/Dubs-Performance-Analyzer/HEAD/Source/Profiling/StackTrace.cs -------------------------------------------------------------------------------- /Source/Profiling/Statistics/LogStats.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dubwise56/Dubs-Performance-Analyzer/HEAD/Source/Profiling/Statistics/LogStats.cs -------------------------------------------------------------------------------- /Source/Profiling/Statistics/ProfileController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dubwise56/Dubs-Performance-Analyzer/HEAD/Source/Profiling/Statistics/ProfileController.cs -------------------------------------------------------------------------------- /Source/Profiling/Statistics/ProfileLog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dubwise56/Dubs-Performance-Analyzer/HEAD/Source/Profiling/Statistics/ProfileLog.cs -------------------------------------------------------------------------------- /Source/Profiling/Statistics/Profiler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dubwise56/Dubs-Performance-Analyzer/HEAD/Source/Profiling/Statistics/Profiler.cs -------------------------------------------------------------------------------- /Source/Profiling/Utility/DubGUI.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dubwise56/Dubs-Performance-Analyzer/HEAD/Source/Profiling/Utility/DubGUI.cs -------------------------------------------------------------------------------- /Source/Profiling/Utility/DynamicTypeBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dubwise56/Dubs-Performance-Analyzer/HEAD/Source/Profiling/Utility/DynamicTypeBuilder.cs -------------------------------------------------------------------------------- /Source/Profiling/Utility/Extensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dubwise56/Dubs-Performance-Analyzer/HEAD/Source/Profiling/Utility/Extensions.cs -------------------------------------------------------------------------------- /Source/Profiling/Utility/FileUtility.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dubwise56/Dubs-Performance-Analyzer/HEAD/Source/Profiling/Utility/FileUtility.cs -------------------------------------------------------------------------------- /Source/Profiling/Utility/MethodInfoCache.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dubwise56/Dubs-Performance-Analyzer/HEAD/Source/Profiling/Utility/MethodInfoCache.cs -------------------------------------------------------------------------------- /Source/Profiling/Utility/Myers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dubwise56/Dubs-Performance-Analyzer/HEAD/Source/Profiling/Utility/Myers.cs -------------------------------------------------------------------------------- /Source/Profiling/Utility/ProfilingUtility/InternalMethodUtility.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dubwise56/Dubs-Performance-Analyzer/HEAD/Source/Profiling/Utility/ProfilingUtility/InternalMethodUtility.cs -------------------------------------------------------------------------------- /Source/Profiling/Utility/ProfilingUtility/MethodTransplanting.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dubwise56/Dubs-Performance-Analyzer/HEAD/Source/Profiling/Utility/ProfilingUtility/MethodTransplanting.cs -------------------------------------------------------------------------------- /Source/Profiling/Utility/ProfilingUtility/TranspilerMethodUtility.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dubwise56/Dubs-Performance-Analyzer/HEAD/Source/Profiling/Utility/ProfilingUtility/TranspilerMethodUtility.cs -------------------------------------------------------------------------------- /Source/Profiling/Utility/ProfilingUtility/Utility.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dubwise56/Dubs-Performance-Analyzer/HEAD/Source/Profiling/Utility/ProfilingUtility/Utility.cs -------------------------------------------------------------------------------- /Source/Profiling/Utility/ThreadSafeLogger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dubwise56/Dubs-Performance-Analyzer/HEAD/Source/Profiling/Utility/ThreadSafeLogger.cs -------------------------------------------------------------------------------- /Source/Profiling/Utility/Watch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dubwise56/Dubs-Performance-Analyzer/HEAD/Source/Profiling/Utility/Watch.cs -------------------------------------------------------------------------------- /Source/Profiling/Utility/XmlParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dubwise56/Dubs-Performance-Analyzer/HEAD/Source/Profiling/Utility/XmlParser.cs -------------------------------------------------------------------------------- /Source/Profiling/Utility/colourPicker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dubwise56/Dubs-Performance-Analyzer/HEAD/Source/Profiling/Utility/colourPicker.cs -------------------------------------------------------------------------------- /Source/ResourceCache.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dubwise56/Dubs-Performance-Analyzer/HEAD/Source/ResourceCache.cs -------------------------------------------------------------------------------- /Source/Settings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dubwise56/Dubs-Performance-Analyzer/HEAD/Source/Settings.cs -------------------------------------------------------------------------------- /Source/Window_Analyzer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dubwise56/Dubs-Performance-Analyzer/HEAD/Source/Window_Analyzer.cs -------------------------------------------------------------------------------- /Textures/DPA/UI/Clear.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dubwise56/Dubs-Performance-Analyzer/HEAD/Textures/DPA/UI/Clear.dds -------------------------------------------------------------------------------- /Textures/DPA/UI/Clear.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dubwise56/Dubs-Performance-Analyzer/HEAD/Textures/DPA/UI/Clear.png -------------------------------------------------------------------------------- /Textures/DPA/UI/MenuSett.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dubwise56/Dubs-Performance-Analyzer/HEAD/Textures/DPA/UI/MenuSett.dds -------------------------------------------------------------------------------- /Textures/DPA/UI/MenuSett.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dubwise56/Dubs-Performance-Analyzer/HEAD/Textures/DPA/UI/MenuSett.png -------------------------------------------------------------------------------- /Textures/DPA/UI/MintSearch.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dubwise56/Dubs-Performance-Analyzer/HEAD/Textures/DPA/UI/MintSearch.dds -------------------------------------------------------------------------------- /Textures/DPA/UI/MintSearch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dubwise56/Dubs-Performance-Analyzer/HEAD/Textures/DPA/UI/MintSearch.png -------------------------------------------------------------------------------- /Textures/DPA/UI/Pin.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dubwise56/Dubs-Performance-Analyzer/HEAD/Textures/DPA/UI/Pin.dds -------------------------------------------------------------------------------- /Textures/DPA/UI/Pin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dubwise56/Dubs-Performance-Analyzer/HEAD/Textures/DPA/UI/Pin.png -------------------------------------------------------------------------------- /Textures/DPA/UI/Record.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dubwise56/Dubs-Performance-Analyzer/HEAD/Textures/DPA/UI/Record.dds -------------------------------------------------------------------------------- /Textures/DPA/UI/Record.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dubwise56/Dubs-Performance-Analyzer/HEAD/Textures/DPA/UI/Record.png -------------------------------------------------------------------------------- /Textures/DPA/UI/Refresh.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dubwise56/Dubs-Performance-Analyzer/HEAD/Textures/DPA/UI/Refresh.dds -------------------------------------------------------------------------------- /Textures/DPA/UI/Refresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dubwise56/Dubs-Performance-Analyzer/HEAD/Textures/DPA/UI/Refresh.png -------------------------------------------------------------------------------- /Textures/DPA/UI/Save.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dubwise56/Dubs-Performance-Analyzer/HEAD/Textures/DPA/UI/Save.dds -------------------------------------------------------------------------------- /Textures/DPA/UI/Save.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dubwise56/Dubs-Performance-Analyzer/HEAD/Textures/DPA/UI/Save.png -------------------------------------------------------------------------------- /Textures/DPA/UI/Stop.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dubwise56/Dubs-Performance-Analyzer/HEAD/Textures/DPA/UI/Stop.dds -------------------------------------------------------------------------------- /Textures/DPA/UI/Stop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dubwise56/Dubs-Performance-Analyzer/HEAD/Textures/DPA/UI/Stop.png -------------------------------------------------------------------------------- /Textures/DPA/UI/Support.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dubwise56/Dubs-Performance-Analyzer/HEAD/Textures/DPA/UI/Support.dds -------------------------------------------------------------------------------- /Textures/DPA/UI/Support.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dubwise56/Dubs-Performance-Analyzer/HEAD/Textures/DPA/UI/Support.png -------------------------------------------------------------------------------- /Textures/DPA/UI/az.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dubwise56/Dubs-Performance-Analyzer/HEAD/Textures/DPA/UI/az.dds -------------------------------------------------------------------------------- /Textures/DPA/UI/az.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dubwise56/Dubs-Performance-Analyzer/HEAD/Textures/DPA/UI/az.png -------------------------------------------------------------------------------- /Textures/DPA/UI/billButt.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dubwise56/Dubs-Performance-Analyzer/HEAD/Textures/DPA/UI/billButt.dds -------------------------------------------------------------------------------- /Textures/DPA/UI/billButt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dubwise56/Dubs-Performance-Analyzer/HEAD/Textures/DPA/UI/billButt.png -------------------------------------------------------------------------------- /Textures/DPA/UI/discord.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dubwise56/Dubs-Performance-Analyzer/HEAD/Textures/DPA/UI/discord.dds -------------------------------------------------------------------------------- /Textures/DPA/UI/discord.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dubwise56/Dubs-Performance-Analyzer/HEAD/Textures/DPA/UI/discord.png -------------------------------------------------------------------------------- /Textures/DPA/UI/dropdown.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dubwise56/Dubs-Performance-Analyzer/HEAD/Textures/DPA/UI/dropdown.dds -------------------------------------------------------------------------------- /Textures/DPA/UI/dropdown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dubwise56/Dubs-Performance-Analyzer/HEAD/Textures/DPA/UI/dropdown.png -------------------------------------------------------------------------------- /Textures/DPA/UI/enter.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dubwise56/Dubs-Performance-Analyzer/HEAD/Textures/DPA/UI/enter.dds -------------------------------------------------------------------------------- /Textures/DPA/UI/enter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dubwise56/Dubs-Performance-Analyzer/HEAD/Textures/DPA/UI/enter.png -------------------------------------------------------------------------------- /Textures/DPA/UI/foldup.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dubwise56/Dubs-Performance-Analyzer/HEAD/Textures/DPA/UI/foldup.dds -------------------------------------------------------------------------------- /Textures/DPA/UI/foldup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dubwise56/Dubs-Performance-Analyzer/HEAD/Textures/DPA/UI/foldup.png -------------------------------------------------------------------------------- /Textures/DPA/UI/hsbMark.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dubwise56/Dubs-Performance-Analyzer/HEAD/Textures/DPA/UI/hsbMark.dds -------------------------------------------------------------------------------- /Textures/DPA/UI/hsbMark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dubwise56/Dubs-Performance-Analyzer/HEAD/Textures/DPA/UI/hsbMark.png -------------------------------------------------------------------------------- /Textures/DPA/UI/hueMark.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dubwise56/Dubs-Performance-Analyzer/HEAD/Textures/DPA/UI/hueMark.dds -------------------------------------------------------------------------------- /Textures/DPA/UI/hueMark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dubwise56/Dubs-Performance-Analyzer/HEAD/Textures/DPA/UI/hueMark.png -------------------------------------------------------------------------------- /Textures/DPA/UI/mem.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dubwise56/Dubs-Performance-Analyzer/HEAD/Textures/DPA/UI/mem.dds -------------------------------------------------------------------------------- /Textures/DPA/UI/mem.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dubwise56/Dubs-Performance-Analyzer/HEAD/Textures/DPA/UI/mem.png -------------------------------------------------------------------------------- /Textures/DPA/UI/sav.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dubwise56/Dubs-Performance-Analyzer/HEAD/Textures/DPA/UI/sav.dds -------------------------------------------------------------------------------- /Textures/DPA/UI/sav.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dubwise56/Dubs-Performance-Analyzer/HEAD/Textures/DPA/UI/sav.png --------------------------------------------------------------------------------