2018-03-04 23:53:55 +08:00
using CustomNPCFramework.Framework.Enums ;
using CustomNPCFramework.Framework.Graphics ;
2018-02-24 17:36:41 +08:00
using CustomNPCFramework.Framework.ModularNPCS ;
using CustomNPCFramework.Framework.ModularNPCS.CharacterAnimationBases ;
2018-03-18 18:20:06 +08:00
using CustomNPCFramework.Framework.ModularNPCS.ColorCollections ;
2018-02-24 11:10:56 +08:00
using CustomNPCFramework.Framework.NPCS ;
2018-03-04 19:36:19 +08:00
using CustomNPCFramework.Framework.Utilities ;
2018-02-24 11:10:56 +08:00
using Microsoft.Xna.Framework ;
using Microsoft.Xna.Framework.Graphics ;
using StardewModdingAPI ;
using StardewValley ;
using System ;
using System.Collections.Generic ;
using System.IO ;
using System.Linq ;
using System.Text ;
using System.Threading.Tasks ;
namespace CustomNPCFramework
{
2018-03-04 20:36:46 +08:00
/// <summary>
2018-03-20 18:10:02 +08:00
/// BETA VERSION 0.1.0: Lots of ways this can be improved upon.
2018-03-04 20:36:46 +08:00
/// TODO:
2018-03-20 18:10:02 +08:00
///
///
2018-03-04 20:36:46 +08:00
/// List all asset managers in use.
/// Have all asset managers list what assets they are using.
2018-03-05 05:23:40 +08:00
///
2018-03-05 07:21:39 +08:00
/// Have asset info have a var called age.
/// ...where
/// 0=adult
/// 1=child
///
/// /// Have asset info have a var called bodyType.
/// ...where
/// 0=thin
/// 1=normal
/// 2=muscular
/// 3=big
///
2018-03-05 05:23:40 +08:00
/// Load in the assets and go go go.
2018-03-05 06:44:52 +08:00
/// -Collect a bunch of assets together to test this thing.
2018-03-18 16:48:01 +08:00
///
/// Find way to make sideways shirts render correctly.
2018-03-20 18:10:02 +08:00
///
///Get suggestions from modding community on requests and ways to improve the mod.
2018-03-18 18:20:06 +08:00
2018-03-04 20:36:46 +08:00
/// </summary>
2018-02-24 11:10:56 +08:00
public class Class1 : Mod
{
2018-03-20 14:01:43 +08:00
/// <summary>
/// The mod helper for the mod.
/// </summary>
2018-02-24 11:10:56 +08:00
public static IModHelper ModHelper ;
2018-03-20 14:01:43 +08:00
/// <summary>
/// The mod monitor for the mod.
/// </summary>
2018-02-24 11:10:56 +08:00
public static IMonitor ModMonitor ;
2018-03-04 20:36:46 +08:00
2018-03-20 14:01:43 +08:00
/// <summary>
/// The npc tracker for the mod. Keeps track of all npcs added by the custom framework and cleans them up during saving.
/// </summary>
2018-03-04 19:36:19 +08:00
public static NPCTracker npcTracker ;
2018-03-20 14:01:43 +08:00
/// <summary>
/// Keeps track of all of the asets/textures added in by the framework. Also manages all of the asset managers that are the ones actually managing the textures.
/// </summary>
2018-03-04 20:36:46 +08:00
public static AssetPool assetPool ;
2018-03-20 14:01:43 +08:00
/// <summary>
/// Ran when loading the SMAPI. Used to initialize data.
/// </summary>
/// <param name="helper"></param>
2018-02-24 11:10:56 +08:00
public override void Entry ( IModHelper helper )
{
ModHelper = this . Helper ;
ModMonitor = this . Monitor ;
2018-03-04 20:36:46 +08:00
2018-02-24 11:10:56 +08:00
StardewModdingAPI . Events . SaveEvents . AfterLoad + = SaveEvents_LoadChar ;
2018-03-04 19:36:19 +08:00
StardewModdingAPI . Events . SaveEvents . BeforeSave + = SaveEvents_BeforeSave ;
StardewModdingAPI . Events . SaveEvents . AfterSave + = SaveEvents_AfterSave ;
2018-06-02 06:18:49 +08:00
StardewModdingAPI . Events . PlayerEvents . Warped + = LocationEvents_CurrentLocationChanged ;
2018-02-24 11:10:56 +08:00
StardewModdingAPI . Events . GameEvents . UpdateTick + = GameEvents_UpdateTick ;
2018-03-04 19:36:19 +08:00
npcTracker = new NPCTracker ( ) ;
2018-03-04 20:36:46 +08:00
assetPool = new AssetPool ( ) ;
var assetManager = new AssetManager ( ) ;
assetPool . addAssetManager ( new KeyValuePair < string , AssetManager > ( "testNPC" , assetManager ) ) ;
initializeExamples ( ) ;
initializeAssetPool ( ) ;
assetPool . loadAllAssets ( ) ;
}
2018-03-20 14:01:43 +08:00
/// <summary>
/// Initialize the asset pool with some test variables.
/// </summary>
2018-03-04 20:36:46 +08:00
public void initializeAssetPool ( )
{
2018-03-18 16:48:01 +08:00
string path = Path . Combine ( ModHelper . DirectoryPath , "Content" , "Graphics" , "NPCS" ) ;
2018-03-04 20:36:46 +08:00
assetPool . getAssetManager ( "testNPC" ) . addPathCreateDirectory ( new KeyValuePair < string , string > ( "characters" , path ) ) ;
2018-03-04 19:36:19 +08:00
}
2018-03-20 14:01:43 +08:00
/// <summary>
/// A function that is called when the game finishes saving.
/// </summary>
/// <param name="sender"></param>
/// <param name="e"></param>
2018-03-04 19:36:19 +08:00
private void SaveEvents_AfterSave ( object sender , EventArgs e )
{
npcTracker . afterSave ( ) ;
}
2018-03-20 14:01:43 +08:00
/// <summary>
/// A function that is called when the game is about to load. Used to clean up all the npcs from the game world to prevent it from crashing.
/// </summary>
/// <param name="sender"></param>
/// <param name="e"></param>
2018-03-04 19:36:19 +08:00
private void SaveEvents_BeforeSave ( object sender , EventArgs e )
{
npcTracker . cleanUpBeforeSave ( ) ;
2018-02-24 11:10:56 +08:00
}
2018-03-20 14:01:43 +08:00
/// <summary>
/// Called upon 60 times a second. For testing purposes only. Will remove in future release.
/// </summary>
/// <param name="sender"></param>
/// <param name="e"></param>
2018-02-24 11:10:56 +08:00
private void GameEvents_UpdateTick ( object sender , EventArgs e )
{
2018-03-20 14:01:43 +08:00
/ *
2018-02-24 11:10:56 +08:00
if ( Game1 . player . currentLocation = = null ) return ;
2018-03-19 10:06:08 +08:00
if ( Game1 . activeClickableMenu ! = null ) return ;
2018-02-24 11:10:56 +08:00
foreach ( var v in Game1 . player . currentLocation . characters )
{
2018-03-19 07:06:49 +08:00
v . speed = 1 ;
if ( v is ExtendedNPC )
{
( v as ExtendedNPC ) . SetMovingAndMove ( Game1 . currentGameTime , Game1 . viewport , Game1 . player . currentLocation , Direction . right , true ) ;
}
2018-02-24 17:36:41 +08:00
//v.MovePosition(Game1.currentGameTime, Game1.viewport, Game1.player.currentLocation);
2018-03-04 20:36:46 +08:00
//ModMonitor.Log(v.sprite.spriteHeight.ToString());
2018-02-24 11:10:56 +08:00
}
2018-03-20 14:01:43 +08:00
* /
2018-02-24 11:10:56 +08:00
}
2018-03-20 14:01:43 +08:00
/// <summary>
/// Called when the player's location changes.
/// </summary>
/// <param name="sender"></param>
/// <param name="e"></param>
2018-06-02 06:18:49 +08:00
private void LocationEvents_CurrentLocationChanged ( object sender , StardewModdingAPI . Events . EventArgsPlayerWarped e )
2018-02-24 11:10:56 +08:00
{
}
2018-03-04 19:36:19 +08:00
/// <summary>
/// Used to spawn a custom npc just as an example. Don't keep this code.
2018-03-17 19:04:04 +08:00
/// GENERATE NPC AND CALL THE CODE
2018-03-04 19:36:19 +08:00
/// </summary>
/// <param name="sender"></param>
/// <param name="e"></param>
2018-02-24 11:10:56 +08:00
private void SaveEvents_LoadChar ( object sender , EventArgs e )
{
2018-03-18 18:20:06 +08:00
ExtendedNPC myNpc3 = assetPool . generateNPC ( Genders . female , 0 , 1 , new StandardColorCollection ( null , null , Color . Blue , null , Color . Yellow , null ) ) ;
2018-03-17 19:39:46 +08:00
MerchantNPC merch = new MerchantNPC ( new List < Item > ( )
{
new StardewValley . Object ( 475 , 999 )
} , myNpc3 ) ;
2018-03-19 07:06:49 +08:00
npcTracker . addNewNPCToLocation ( Game1 . getLocationFromName ( "BusStop" , false ) , merch , new Vector2 ( 2 , 23 ) ) ;
2018-02-24 11:10:56 +08:00
}
2018-03-20 14:01:43 +08:00
/// <summary>
/// Used to initialize examples for other modders to look at as reference.
/// </summary>
2018-02-24 11:10:56 +08:00
public void initializeExamples ( )
{
2018-03-18 16:48:01 +08:00
return ;
2018-02-24 11:10:56 +08:00
string dirPath = Path . Combine ( ModHelper . DirectoryPath , "Content" , "Templates" ) ;
2018-03-04 20:36:46 +08:00
var aManager = assetPool . getAssetManager ( "testNPC" ) ;
aManager . addPathCreateDirectory ( new KeyValuePair < string , string > ( "templates" , dirPath ) ) ;
2018-02-24 11:10:56 +08:00
string filePath = Path . Combine ( dirPath , "Example.json" ) ;
2018-03-04 23:53:55 +08:00
if ( ! File . Exists ( filePath ) )
{
string getRelativePath = getShortenedDirectory ( filePath ) ;
ModMonitor . Log ( "THIS IS THE PATH::: " + getRelativePath ) ;
2018-03-05 05:23:40 +08:00
AssetInfo info = new AssetInfo ( "MyExample" , new NamePairings ( "StandingExampleL" , "StandingExampleR" , "StandingExampleU" , "StandingExampleD" ) , new NamePairings ( "MovingExampleL" , "MovingExampleR" , "MovingExampleU" , "MovingExampleD" ) , new NamePairings ( "SwimmingExampleL" , "SwimmingExampleR" , "SwimmingExampleU" , "SwimmingExampleD" ) , new NamePairings ( "SittingExampleL" , "SittingExampleR" , "SittingExampleU" , "SittingExampleD" ) , new Vector2 ( 16 , 16 ) , false ) ;
2018-03-04 23:53:55 +08:00
info . writeToJson ( filePath ) ;
}
string filePath2 = Path . Combine ( dirPath , "AdvancedExample.json" ) ;
if ( ! File . Exists ( filePath2 ) )
{
2018-03-05 06:32:59 +08:00
ExtendedAssetInfo info2 = new ExtendedAssetInfo ( "AdvancedExample" , new NamePairings ( "AdvancedStandingExampleL" , "AdvancedStandingExampleR" , "AdvancedStandingExampleU" , "AdvancedStandingExampleD" ) , new NamePairings ( "AdvancedMovingExampleL" , "AdvancedMovingExampleR" , "AdvancedMovingExampleU" , "AdvancedMovingExampleD" ) , new NamePairings ( "AdvancedSwimmingExampleL" , "AdvancedSwimmingExampleR" , "AdvancedSwimmingExampleU" , "AdvancedSwimmingExampleD" ) , new NamePairings ( "AdvancedSittingExampleL" , "AdvancedSittingExampleR" , "AdvancedSittingExampleU" , "AdvancedSittingExampleD" ) , new Vector2 ( 16 , 16 ) , false , Genders . female , new List < Seasons > ( )
2018-03-04 23:53:55 +08:00
{
Seasons . spring ,
Seasons . summer
} , PartType . hair
) ;
info2 . writeToJson ( filePath2 ) ;
}
2018-02-24 11:10:56 +08:00
}
2018-03-20 14:01:43 +08:00
/// <summary>
/// Used to splice the mod directory to get relative paths.
/// </summary>
/// <param name="path"></param>
/// <returns></returns>
2018-02-24 11:10:56 +08:00
public static string getShortenedDirectory ( string path )
{
2018-02-24 17:36:41 +08:00
string lol = ( string ) path . Clone ( ) ;
string [ ] spliter = lol . Split ( new string [ ] { ModHelper . DirectoryPath } , StringSplitOptions . None ) ;
2018-03-17 19:04:04 +08:00
try
{
return spliter [ 1 ] ;
}
catch ( Exception err )
{
2018-05-01 09:21:31 +08:00
err . ToString ( ) ;
2018-03-17 19:04:04 +08:00
return spliter [ 0 ] ;
}
2018-02-24 11:10:56 +08:00
}
2018-03-20 14:01:43 +08:00
/// <summary>
/// Used to finish cleaning up absolute asset paths into a shortened relative path.
/// </summary>
/// <param name="path"></param>
/// <returns></returns>
2018-02-24 11:10:56 +08:00
public static string getRelativeDirectory ( string path )
{
string s = getShortenedDirectory ( path ) ;
return s . Remove ( 0 , 1 ) ;
}
}
}