This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using HarmonyLib; | |
using RimWorld; | |
using System; | |
using System.Collections.Generic; | |
using System.Linq; | |
using Verse; | |
namespace Brrainz | |
{ | |
[StaticConstructorOnStartup] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
REM ################ Mod build and install script (c) Andreas Pardeike 2020 ################ | |
REM | |
REM Call this script from Visual Studio's Build Events post-build event command line box: | |
REM "$(ProjectDir)Install.bat" $(ConfigurationName) "$(ProjectDir)" "$(ProjectName)" "About Assemblies Languages Textures v1.1" "LoadFolders.xml" | |
REM | |
REM The project structure should look like this: | |
REM | |
REM Modname | |
REM +- .git | |
REM +- .vs |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System; | |
using System.Collections.Generic; | |
using HarmonyLib; | |
using Verse; | |
public class Debouncer | |
{ | |
private Debouncer() { } | |
private readonly int tickThrottle; | |
private readonly bool onlyWhenRunning; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using HarmonyLib; | |
using System.Runtime.CompilerServices; | |
namespace HarmonyTestbed; | |
public struct Class6Struct | |
{ | |
public double d1; | |
public double d2; | |
public double d3; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<Personality> | |
<azureVoice>en-US-AnaNeural</azureVoice> | |
<azureVoiceStyle>default</azureVoiceStyle> | |
<azureVoiceStyleDegree>0</azureVoiceStyleDegree> | |
<speechRate>0</speechRate> | |
<speechPitch>0</speechPitch> | |
<phrasesLimit>40</phrasesLimit> | |
<phraseBatchSize>20</phraseBatchSize> | |
<phraseDelayMin>1</phraseDelayMin> | |
<phraseDelayMax>1</phraseDelayMax> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<Personality> | |
<azureVoiceLanguage>English</azureVoiceLanguage> | |
<azureVoice>en-US-JasonNeural</azureVoice> | |
<azureVoiceStyle>default</azureVoiceStyle> | |
<azureVoiceStyleDegree>2</azureVoiceStyleDegree> | |
<speechLanguage></speechLanguage> | |
<speechRate>-0.12</speechRate> | |
<speechPitch>-0.269999981</speechPitch> | |
<phrasesLimit>40</phrasesLimit> | |
<phraseBatchSize>20</phraseBatchSize> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<Personality> | |
<azureVoice>en-US-DavisNeural</azureVoice> | |
<azureVoiceStyle>unfriendly</azureVoiceStyle> | |
<azureVoiceStyleDegree>1.19999993</azureVoiceStyleDegree> | |
<speechRate>-0.049999997</speechRate> | |
<speechPitch>-0.149999991</speechPitch> | |
<phrasesLimit>40</phrasesLimit> | |
<phraseBatchSize>20</phraseBatchSize> | |
<phraseDelayMin>1</phraseDelayMin> | |
<phraseDelayMax>1</phraseDelayMax> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<Personality> | |
<azureVoice>en-US-AriaNeural</azureVoice> | |
<azureVoiceStyle>whispering</azureVoiceStyle> | |
<azureVoiceStyleDegree>1.13</azureVoiceStyleDegree> | |
<speechRate>0</speechRate> | |
<speechPitch>0</speechPitch> | |
<phrasesLimit>40</phrasesLimit> | |
<phraseBatchSize>20</phraseBatchSize> | |
<phraseDelayMin>1.75427425</phraseDelayMin> | |
<phraseDelayMax>1</phraseDelayMax> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var allMax = Mathf.Max(0.04f, suicideBomberChance, toxicSplasherChance, tankyOperatorChance, minerChance, electrifierChance, albinoChance, darkSlimerChance, healerChance); | |
var max = Mathf.Min(1f, 2f * allMax); | |
list.Dialog_FloatSlider("SuicideBomberChance", _ => "{0:0.00%}", false, ref suicideBomberChance, 0f, Mathf.Min(max, 1f - toxicSplasherChance - tankyOperatorChance - minerChance - electrifierChance - albinoChance - darkSlimerChance - healerChance)); | |
list.Dialog_FloatSlider("ToxicSplasherChance", _ => "{0:0.00%}", false, ref toxicSplasherChance, 0f, Mathf.Min(max, 1f - suicideBomberChance - tankyOperatorChance - minerChance - electrifierChance - albinoChance - darkSlimerChance - healerChance)); | |
list.Dialog_FloatSlider("TankyOperatorChance", _ => "{0:0.00%}", false, ref tankyOperatorChance, 0f, Mathf.Min(max, 1f - suicideBomberChance - toxicSplasherChance - minerChance - electrifierChance - albinoChance - darkSlimerChance - healerChance)); | |
list.Dialog_FloatSlider("MinerChance", _ => "{0:0.00%}", false, ref |