mirror of
https://github.com/Ellpeck/TinyLifeExampleMod.git
synced 2024-10-31 19:40:49 +01:00
147 lines
8.8 KiB
C#
147 lines
8.8 KiB
C#
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using ExtremelySimpleLogger;
|
|
using MLEM.Data;
|
|
using MLEM.Data.Content;
|
|
using MLEM.Textures;
|
|
using MLEM.Ui;
|
|
using MLEM.Ui.Elements;
|
|
using TinyLife;
|
|
using TinyLife.Actions;
|
|
using TinyLife.Emotions;
|
|
using TinyLife.Mods;
|
|
using TinyLife.Objects;
|
|
using TinyLife.Utilities;
|
|
using TinyLife.World;
|
|
|
|
namespace ExampleMod;
|
|
|
|
public class ExampleMod : Mod {
|
|
|
|
// the logger that we can use to log info about this mod
|
|
public static Logger Logger { get; private set; }
|
|
public static ExampleModOptions Options { get; private set; }
|
|
|
|
public static EmotionModifier GrassSittingModifier { get; private set; }
|
|
|
|
// visual data about this mod
|
|
public override string Name => "Example Mod";
|
|
public override string Description => "This is the example mod for Tiny Life!";
|
|
public override TextureRegion Icon => this.uiTextures[new Point(0, 0)];
|
|
|
|
private Dictionary<Point, TextureRegion> customTops;
|
|
private Dictionary<Point, TextureRegion> customHairs;
|
|
private Dictionary<Point, TextureRegion> customBottoms;
|
|
private Dictionary<Point, TextureRegion> uiTextures;
|
|
private Dictionary<Point, TextureRegion> wallpaperTextures;
|
|
|
|
public override void AddGameContent(GameImpl game, ModInfo info) {
|
|
// adding a custom furniture item
|
|
FurnitureType.Register(new FurnitureType.TypeSettings("ExampleMod.CustomTable", new Point(1, 1), ObjectCategory.Table, 150, ColorScheme.SimpleWood) {
|
|
// specify the type that should be constructed when this furniture type is placed
|
|
// if this is not specified, the Furniture class is used, which is used for furniture without special animations or data
|
|
ConstructedType = typeof(ExampleModTable),
|
|
// specifying icons for custom clothes and furniture is optional, but using the mod's icon helps users recognize a mod's features
|
|
Icon = this.Icon,
|
|
// allow chairs and plates to be slotted into and onto the table
|
|
ObjectSpots = ObjectSpot.TableSpots(new Point(1, 1)).ToArray()
|
|
});
|
|
|
|
// adding custom clothing
|
|
var darkShirt = new Clothes("ExampleMod.DarkShirt", ClothesLayer.Shirt,
|
|
// the top left in-world region
|
|
// additional regions will be auto-gathered from the atlas according to the rules described in https://docs.tinylifegame.com/articles/creating_textures.html
|
|
this.customTops, new Point(0, 0),
|
|
// the price
|
|
100,
|
|
// the clothes item's use cases
|
|
ClothesIntention.Everyday | ClothesIntention.Workout,
|
|
// the clothes item's color scheme
|
|
// if the item should have multiple layers, multiple color schemes can be supplied here (see docs above)
|
|
ColorScheme.WarmDark
|
|
) {Icon = this.Icon};
|
|
Clothes.Register(darkShirt);
|
|
// adding some more custom clothing
|
|
Clothes.Register(new Clothes("ExampleMod.PastelPants", ClothesLayer.Pants, this.customBottoms, new Point(4, 0), 100, ClothesIntention.Everyday, ColorScheme.Pastel) {Icon = this.Icon});
|
|
Clothes.Register(new Clothes("ExampleMod.PastelShoes", ClothesLayer.Shoes, this.customBottoms, new Point(0, 0), 100, ClothesIntention.Everyday, ColorScheme.Pastel) {Icon = this.Icon});
|
|
Clothes.Register(new Clothes("ExampleMod.WeirdHair", ClothesLayer.Hair, this.customHairs, new Point(0, 0), 0, ClothesIntention.None, ColorScheme.Modern) {Icon = this.Icon});
|
|
|
|
// adding an event subscription to people
|
|
MapObject.OnEventsAttachable += o => {
|
|
if (o is Person person) {
|
|
// changing the walk speed to be doubled if a person is wearing our dark shirt
|
|
person.OnGetWalkSpeed += (ref float s) => {
|
|
if (person.CurrentOutfit.Clothes.TryGetValue(ClothesLayer.Shirt, out var shirt) && shirt.Type == darkShirt)
|
|
s *= ExampleMod.Options.DarkShirtSpeedIncrease;
|
|
};
|
|
}
|
|
};
|
|
|
|
// adding a simple action: sitting down in the grass, which also gives us a nice emotion modifier
|
|
ActionType.Register(new ActionType.TypeSettings("ExampleMod.SitOnGrass", ObjectCategory.Ground, typeof(ExampleModGrassSitAction)) {
|
|
// we set this action to be executable only on grass tiles, not on other ground
|
|
CanExecute = (actionInfo, _) => {
|
|
if (!actionInfo.Map.IsInBounds(actionInfo.ActionLocation.ToPoint()))
|
|
return CanExecuteResult.Hidden;
|
|
var tile = actionInfo.Map.GetTile(actionInfo.ActionLocation.ToPoint());
|
|
// hidden means the action won't be displayed in the ring menu, Valid means the player (or AI) is able to enqueue and execute it
|
|
return tile.Name.StartsWith("Grass") ? CanExecuteResult.Valid : CanExecuteResult.Hidden;
|
|
},
|
|
Ai = {
|
|
// we allow the action to be done even if the solved needs aren't low enough on a person
|
|
CanDoRandomly = true,
|
|
// the solved needs indicate when the AI should mark this action as important, they don't actually have to match the action's behavior
|
|
SolvedNeeds = new[] {NeedType.Energy},
|
|
// make people more likely to sit down in the grass if they're uncomfortable
|
|
PassivePriority = p => p.Emotion == EmotionType.Uncomfortable ? 150 : 25
|
|
},
|
|
// since this action doesn't use objects (like chairs etc.), we set a texture to display instead
|
|
Texture = this.uiTextures[new Point(1, 0)]
|
|
});
|
|
|
|
// we use this emotion modifier in SitDownOnGrassAction
|
|
ExampleMod.GrassSittingModifier = EmotionModifier.Register(
|
|
new EmotionModifier("ExampleMod.GrassSitting", this.uiTextures[new Point(1, 0)], EmotionType.Happy));
|
|
|
|
// adding a custom wallpaper (we're using the top left texture region, which is why we pass 0, 0 as the texture coordinate)
|
|
Wallpaper.Register("ExampleMod.CrossedWallpaper", 15, this.wallpaperTextures, new Point(0, 0), ColorScheme.Modern, this.Icon);
|
|
}
|
|
|
|
public override void Initialize(Logger logger, RawContentManager content, RuntimeTexturePacker texturePacker, ModInfo info) {
|
|
ExampleMod.Logger = logger;
|
|
ExampleMod.Options = info.LoadOptions(() => new ExampleModOptions());
|
|
|
|
// loads a texture atlas with the given amount of separate texture regions in the x and y axes
|
|
// we submit it to the texture packer to increase rendering performance. The callback is invoked once packing is completed
|
|
// additionally, we pad all texture regions by 1 pixel, so that rounding errors during rendering don't cause visual artifacts
|
|
texturePacker.Add(new UniformTextureAtlas(content.Load<Texture2D>("CustomTops"), 4, 11), r => this.customTops = r, 1, true);
|
|
texturePacker.Add(new UniformTextureAtlas(content.Load<Texture2D>("CustomHairs"), 4, 5), r => this.customHairs = r, 1, true);
|
|
texturePacker.Add(new UniformTextureAtlas(content.Load<Texture2D>("CustomBottomsShoes"), 8, 6), r => this.customBottoms = r, 1, true);
|
|
texturePacker.Add(new UniformTextureAtlas(content.Load<Texture2D>("UiTextures"), 8, 8), r => this.uiTextures = r, 1, true);
|
|
// wallpaper textures require special treatment to work with openings, the x and y values are passed to the UniformTextureAtlas constructor
|
|
WallMode.ApplyMasks(content.Load<Texture2D>("Wallpapers"), 4, 5, texturePacker, r => this.wallpaperTextures = r);
|
|
}
|
|
|
|
public override IEnumerable<string> GetCustomFurnitureTextures(ModInfo info) {
|
|
// tell the game about our custom furniture texture
|
|
// this needs to be a path to a data texture atlas, relative to our "Content" directory
|
|
// the texture atlas combines the png texture and the .atlas information
|
|
// see https://mlem.ellpeck.de/api/MLEM.Data.DataTextureAtlas.html for more info
|
|
yield return "CustomFurniture";
|
|
}
|
|
|
|
// this method can be overridden to populate the section in the mod tab of the game's options menu where this mod's options should be displayed
|
|
// this mod uses the ModOptions class to manage its options, though that is optional
|
|
// in general, options should be stored in the ModInfo.OptionsFile file that is given to the mod by the game
|
|
public override void PopulateOptions(Group group, ModInfo info) {
|
|
group.AddChild(new Paragraph(Anchor.AutoLeft, 1, _ => $"{Localization.Get(LnCategory.Ui, "ExampleMod.DarkShirtSpeedOption")}: {ExampleMod.Options.DarkShirtSpeedIncrease}"));
|
|
group.AddChild(new Slider(Anchor.AutoLeft, new Vector2(1, 10), 5, 5) {
|
|
CurrentValue = ExampleMod.Options.DarkShirtSpeedIncrease,
|
|
OnValueChanged = (_, v) => {
|
|
ExampleMod.Options.DarkShirtSpeedIncrease = v;
|
|
info.SaveOptions(ExampleMod.Options);
|
|
}
|
|
});
|
|
}
|
|
|
|
}
|