Upload from upload_mods.ps1

This commit is contained in:
Nathaniel Cosford
2025-06-04 16:44:53 +09:30
commit f1fbbe67bb
1722 changed files with 165268 additions and 0 deletions

View File

@@ -0,0 +1,113 @@
using System.Collections.Generic;
using UnityEngine.Scripting;
[Preserve]
public class ObjectiveClosestPOIGotoRebirth : ObjectiveGoto
{
public override void SetupObjective()
{
this.keyword = Localization.Get("ObjectiveRallyPointHeadTo");
}
public override void SetupDisplay()
{
base.Description = this.keyword;
}
public override void SetupIcon()
{
this.icon = "ui_game_symbol_quest";
}
public override bool SetupPosition(EntityNPC ownerNPC = null, EntityPlayer player = null, List<Vector2> usedPOILocations = null, int entityIDforQuests = 1)
{
return this.GetPosition(ownerNPC, player, usedPOILocations, -1) != Vector3.zero;
}
public override void SetPosition(Vector3 position, Vector3 size)
{
base.FinalizePoint(position, size);
}
public override Vector3 GetPosition(EntityNPC ownerNPC = null, EntityPlayer entityPlayer = null, List<Vector2> usedPOILocations = null, int entityIDforQuests = -1)
{
//Log.Out("ObjectiveClosestPOIGotoRebirth-GetPosition START");
int traderId = (ownerNPC == null) ? (-1) : ownerNPC.entityId;
int playerId = (entityPlayer == null) ? (-1) : entityPlayer.entityId;
if (base.OwnerQuest.GetPositionData(out this.position, Quest.PositionDataTypes.POIPosition))
{
//Log.Out("ObjectiveClosestPOIGotoRebirth-GetPosition 1");
base.OwnerQuest.Position = this.position;
this.positionSet = true;
base.OwnerQuest.HandleMapObject(Quest.PositionDataTypes.POIPosition, this.NavObjectName, -1);
base.CurrentValue = 2;
return this.position;
}
EntityAlive entityAlive;
if (ownerNPC == null)
{
//Log.Out("ObjectiveClosestPOIGotoRebirth-GetPosition 2");
entityAlive = OwnerQuest.OwnerJournal.OwnerPlayer;
}
else
{
//Log.Out("ObjectiveClosestPOIGotoRebirth-GetPosition 3");
entityAlive = ownerNPC;
}
if (SingletonMonoBehaviour<ConnectionManager>.Instance.IsServer)
{
//Log.Out("ObjectiveClosestPOIGotoRebirth-GetPosition 4");
PrefabInstance closestPOIToWorldPos = GameManager.Instance.World.ChunkClusters[0].ChunkProvider.GetDynamicPrefabDecorator().GetClosestPOIToWorldPos(base.OwnerQuest.QuestTags, new Vector2(entityAlive.position.x, entityAlive.position.z), null, -1, false, BiomeFilterTypes.AnyBiome, "");
if (closestPOIToWorldPos == null)
{
//Log.Out("ObjectiveClosestPOIGotoRebirth-GetPosition 5");
return Vector3.zero;
}
Vector2 vector = new Vector2((float)closestPOIToWorldPos.boundingBoxPosition.x + (float)closestPOIToWorldPos.boundingBoxSize.x / 2f, (float)closestPOIToWorldPos.boundingBoxPosition.z + (float)closestPOIToWorldPos.boundingBoxSize.z / 2f);
if (vector.x == -0.1f && vector.y == -0.1f)
{
//Log.Error("ObjectiveClosestPOIGotoRebirth: No POI found.");
return Vector3.zero;
}
int num = (int)vector.x;
int num2 = (int)entityAlive.position.y;
int num3 = (int)vector.y;
if (GameManager.Instance.World.IsPositionInBounds(this.position))
{
//Log.Out("ObjectiveClosestPOIGotoRebirth-GetPosition 6");
FinalizePoint(new Vector3((float)closestPOIToWorldPos.boundingBoxPosition.x, (float)closestPOIToWorldPos.boundingBoxPosition.y, (float)closestPOIToWorldPos.boundingBoxPosition.z), new Vector3((float)closestPOIToWorldPos.boundingBoxSize.x, (float)closestPOIToWorldPos.boundingBoxSize.y, (float)closestPOIToWorldPos.boundingBoxSize.z));
position = new Vector3((float)num, (float)num2, (float)num3);
OwnerQuest.Position = this.position;
return this.position;
}
}
else
{
//Log.Out("ObjectiveClosestPOIGotoRebirth-GetPosition 7");
SingletonMonoBehaviour<ConnectionManager>.Instance.SendToServer(NetPackageManager.GetPackage<NetPackageQuestGotoPoint>().Setup(traderId, playerId, OwnerQuest.QuestTags, OwnerQuest.QuestCode, NetPackageQuestGotoPoint.QuestGotoTypes.Closest, OwnerQuest.QuestClass.DifficultyTier, 0, -1, 0f, 0f, 0f, -1f, BiomeFilterTypes.AnyBiome, ""), false);
base.CurrentValue = 1;
}
//Log.Out("ObjectiveClosestPOIGotoRebirth-GetPosition 8");
return Vector3.zero;
}
public override void UpdateState_WaitingForServer()
{
if (this.positionSet)
{
base.CurrentValue = 2;
}
}
public override BaseObjective Clone()
{
ObjectiveClosestPOIGotoRebirth ObjectiveClosestPOIGotoRebirth = new ObjectiveClosestPOIGotoRebirth();
this.CopyValues(ObjectiveClosestPOIGotoRebirth);
return ObjectiveClosestPOIGotoRebirth;
}
}