extra character puchi unlockable
This commit is contained in:
parent
16b2865422
commit
2926404c0f
Binary file not shown.
@ -17,6 +17,7 @@ namespace TJAPlayer3
|
|||||||
rarity = ra;
|
rarity = ra;
|
||||||
reference = re;
|
reference = re;
|
||||||
_isSet = false;
|
_isSet = false;
|
||||||
|
// TODO: Add an int (?) or string to find the Puchichara/Character/Song asset to display it
|
||||||
}
|
}
|
||||||
|
|
||||||
public void tSetupModal()
|
public void tSetupModal()
|
||||||
@ -180,6 +181,8 @@ namespace TJAPlayer3
|
|||||||
Title = 3,
|
Title = 3,
|
||||||
Text = 4,
|
Text = 4,
|
||||||
Confirm = 5,
|
Confirm = 5,
|
||||||
|
Song = 6,
|
||||||
|
Total = 7,
|
||||||
}
|
}
|
||||||
|
|
||||||
// Full : 1P standard modal, Half : Splitted screen modal
|
// Full : 1P standard modal, Half : Splitted screen modal
|
||||||
@ -244,6 +247,18 @@ namespace TJAPlayer3
|
|||||||
{
|
{
|
||||||
content = (string)reference;
|
content = (string)reference;
|
||||||
}
|
}
|
||||||
|
else if (modalType == EModalType.Character)
|
||||||
|
{
|
||||||
|
content = (string)reference;
|
||||||
|
}
|
||||||
|
else if (modalType == EModalType.Puchichara)
|
||||||
|
{
|
||||||
|
content = (string)reference;
|
||||||
|
}
|
||||||
|
else if (modalType == EModalType.Song)
|
||||||
|
{
|
||||||
|
content = (string)reference;
|
||||||
|
}
|
||||||
|
|
||||||
TitleTextureKey _content = new TitleTextureKey(
|
TitleTextureKey _content = new TitleTextureKey(
|
||||||
content,
|
content,
|
||||||
|
@ -72,6 +72,8 @@ namespace TJAPlayer3
|
|||||||
|
|
||||||
public void tRegisterAIBattleModePlay(bool IsWon)
|
public void tRegisterAIBattleModePlay(bool IsWon)
|
||||||
{
|
{
|
||||||
|
data.AIBattleModePlaycount++;
|
||||||
|
if (IsWon) data.AIBattleModeWins++;
|
||||||
DBSaves.RegisterAIBattleModePlay(data.SaveId, IsWon);
|
DBSaves.RegisterAIBattleModePlay(data.SaveId, IsWon);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -5,6 +5,7 @@ using System.Text;
|
|||||||
using System.Threading.Tasks;
|
using System.Threading.Tasks;
|
||||||
using FDK;
|
using FDK;
|
||||||
using System.IO;
|
using System.IO;
|
||||||
|
using static TJAPlayer3.DBNameplateUnlockables;
|
||||||
|
|
||||||
namespace TJAPlayer3
|
namespace TJAPlayer3
|
||||||
{
|
{
|
||||||
@ -25,6 +26,38 @@ namespace TJAPlayer3
|
|||||||
return mult;
|
return mult;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public void tGetUnlockedItems(int _player, ModalQueue mq)
|
||||||
|
{
|
||||||
|
int player = TJAPlayer3.GetActualPlayer(_player);
|
||||||
|
var _sf = TJAPlayer3.SaveFileInstances[player].data.UnlockedCharacters;
|
||||||
|
bool _edited = false;
|
||||||
|
|
||||||
|
var _npvKey = Path.GetFileName(_path);
|
||||||
|
|
||||||
|
if (!_sf.Contains(_npvKey))
|
||||||
|
{
|
||||||
|
var _fulfilled = unlock?.tConditionMetWrapper(player, DBUnlockables.CUnlockConditions.EScreen.Internal).Item1 ?? false;
|
||||||
|
|
||||||
|
if (_fulfilled)
|
||||||
|
{
|
||||||
|
_sf.Add(_npvKey);
|
||||||
|
_edited = true;
|
||||||
|
mq.tAddModal(
|
||||||
|
new Modal(
|
||||||
|
Modal.EModalType.Character,
|
||||||
|
HRarity.tRarityToModalInt(metadata.Rarity),
|
||||||
|
_npvKey
|
||||||
|
),
|
||||||
|
_player);
|
||||||
|
|
||||||
|
DBSaves.RegisterStringUnlockedAsset(TJAPlayer3.SaveFileInstances[player].data.SaveId, "unlocked_characters", _npvKey);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if (_edited)
|
||||||
|
TJAPlayer3.SaveFileInstances[player].tApplyHeyaChanges();
|
||||||
|
}
|
||||||
|
|
||||||
public CCharacter(string path)
|
public CCharacter(string path)
|
||||||
{
|
{
|
||||||
_path = path;
|
_path = path;
|
||||||
|
@ -30,6 +30,38 @@ namespace TJAPlayer3
|
|||||||
return mult;
|
return mult;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public void tGetUnlockedItems(int _player, ModalQueue mq)
|
||||||
|
{
|
||||||
|
int player = TJAPlayer3.GetActualPlayer(_player);
|
||||||
|
var _sf = TJAPlayer3.SaveFileInstances[player].data.UnlockedPuchicharas;
|
||||||
|
bool _edited = false;
|
||||||
|
|
||||||
|
var _npvKey = Path.GetFileName(_path);
|
||||||
|
|
||||||
|
if (!_sf.Contains(_npvKey))
|
||||||
|
{
|
||||||
|
var _fulfilled = unlock?.tConditionMetWrapper(player, DBUnlockables.CUnlockConditions.EScreen.Internal).Item1 ?? false;
|
||||||
|
|
||||||
|
if (_fulfilled)
|
||||||
|
{
|
||||||
|
_sf.Add(_npvKey);
|
||||||
|
_edited = true;
|
||||||
|
mq.tAddModal(
|
||||||
|
new Modal(
|
||||||
|
Modal.EModalType.Puchichara,
|
||||||
|
HRarity.tRarityToModalInt(metadata.Rarity),
|
||||||
|
_npvKey
|
||||||
|
),
|
||||||
|
_player);
|
||||||
|
|
||||||
|
DBSaves.RegisterStringUnlockedAsset(TJAPlayer3.SaveFileInstances[player].data.SaveId, "unlocked_puchicharas", _npvKey);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if (_edited)
|
||||||
|
TJAPlayer3.SaveFileInstances[player].tApplyHeyaChanges();
|
||||||
|
}
|
||||||
|
|
||||||
public CPuchichara(string path)
|
public CPuchichara(string path)
|
||||||
{
|
{
|
||||||
_path = path;
|
_path = path;
|
||||||
|
@ -8,6 +8,7 @@ using System.Collections.Generic;
|
|||||||
using DiscordRPC;
|
using DiscordRPC;
|
||||||
using static TJAPlayer3.CActSelect曲リスト;
|
using static TJAPlayer3.CActSelect曲リスト;
|
||||||
using System.Text;
|
using System.Text;
|
||||||
|
using System.ArrayExtensions;
|
||||||
|
|
||||||
namespace TJAPlayer3
|
namespace TJAPlayer3
|
||||||
{
|
{
|
||||||
@ -665,7 +666,21 @@ namespace TJAPlayer3
|
|||||||
this.nEarnedMedalsCount[i]),
|
this.nEarnedMedalsCount[i]),
|
||||||
i);
|
i);
|
||||||
|
|
||||||
|
// Check unlockables
|
||||||
|
{
|
||||||
TJAPlayer3.Databases.DBNameplateUnlockables.tGetUnlockedItems(i, mqModals);
|
TJAPlayer3.Databases.DBNameplateUnlockables.tGetUnlockedItems(i, mqModals);
|
||||||
|
|
||||||
|
foreach (var puchi in TJAPlayer3.Tx.Puchichara)
|
||||||
|
{
|
||||||
|
puchi.tGetUnlockedItems(i, mqModals);
|
||||||
|
}
|
||||||
|
|
||||||
|
foreach (var chara in TJAPlayer3.Tx.Characters)
|
||||||
|
{
|
||||||
|
chara.tGetUnlockedItems(i, mqModals);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
displayedModals = new Modal[] { null, null, null, null, null };
|
displayedModals = new Modal[] { null, null, null, null, null };
|
||||||
|
Loading…
Reference in New Issue
Block a user