-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDonerMod.cs
108 lines (87 loc) · 3.63 KB
/
DonerMod.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
using KitchenLib;
using KitchenLib.Event;
using KitchenMods;
using System.Linq;
using System.Reflection;
using UnityEngine;
using KitchenLib.Customs;
using KitchenLib.References;
using KitchenLib.Utils;
using ApplianceLib.Api.References;
using KitchenData;
using DonerMod.Appliances;
using DonerMod.Items;
using DonerMod.Dishes;
using DonerMod.Utils;
namespace DonerMod;
public class Mod : BaseMod, IModSystem
{
// GUID must be unique and is recommended to be in reverse domain name notation
// Mod Name is displayed to the player and listed in the mods menu
// Mod Version must follow semver notation e.g. "1.2.3"
public const string MOD_GUID = "com.keyslam.doner";
public const string MOD_NAME = "Doner";
public const string MOD_VERSION = "0.1.0";
public const string MOD_AUTHOR = "Keyslam-Group";
public const string MOD_GAMEVERSION = ">=1.1.4";
// Game version this mod is designed for in semver
// e.g. ">=1.1.3" current and all future
// e.g. ">=1.1.3 <=1.2.3" for all from/until
// Boolean constant whose value depends on whether you built with DEBUG or RELEASE mode, useful for testing
#if DEBUG
public const bool DEBUG_MODE = true;
#else
public const bool DEBUG_MODE = false;
#endif
public static AssetBundle Bundle;
public Mod() : base(MOD_GUID, MOD_NAME, MOD_AUTHOR, MOD_VERSION, MOD_GAMEVERSION, Assembly.GetExecutingAssembly()) { }
protected override void OnInitialise()
{
LogWarning($"{MOD_GUID} v{MOD_VERSION} in use!");
}
private void AddGameData()
{
LogInfo("Attempting to register game data...");
AddGameDataObject<DisposableTray>();
AddGameDataObject<DirtyDisposableTray>();
AddGameDataObject<CookedDoner>();
AddGameDataObject<UncookedDoner>();
AddGameDataObject<DonerProvider>();
AddGameDataObject<DisposableTrayProvider>();
AddGameDataObject<UncookedDonerKebab>();
AddGameDataObject<CookedDonerKebab>();
AddGameDataObject<CookedDonerKebabDish>();
// AddGameDataObject<LettuceDonerKebab>();
LogInfo("Done loading game data.");
}
protected override void OnUpdate()
{
}
protected override void OnPostActivate(KitchenMods.Mod mod)
{
// TODO: Uncomment the following if you have an asset bundle.
// TODO: Also, make sure to set EnableAssetBundleDeploy to 'true' in your ModName.csproj
LogInfo("Attempting to load asset bundle...");
Bundle = mod.GetPacks<AssetBundleModPack>().SelectMany(e => e.AssetBundles).First();
LogInfo("Done loading asset bundle.");
// Register custom GDOs
AddGameData();
// Perform actions when game data is built
Events.BuildGameDataEvent += delegate (object s, BuildGameDataEventArgs args)
{
// Utils.Find<Item>(ItemReferences.Cheese).DerivedProcesses.Add(new Item.ItemProcess() {
// Process = Utils.Find<Process>(ProcessReferences.Cook),
// Result = Utils.Find<Item>("Doner", "UncookedDoner"),
// Duration = 1f,
// });
};
}
#region Logging
public static void LogInfo(string _log) { Debug.Log($"[{MOD_NAME}] " + _log); }
public static void LogWarning(string _log) { Debug.LogWarning($"[{MOD_NAME}] " + _log); }
public static void LogError(string _log) { Debug.LogError($"[{MOD_NAME}] " + _log); }
public static void LogInfo(object _log) { LogInfo(_log.ToString()); }
public static void LogWarning(object _log) { LogWarning(_log.ToString()); }
public static void LogError(object _log) { LogError(_log.ToString()); }
#endregion
}