2024-03-08 05:11:52 +00:00
|
|
|
using System;
|
|
|
|
using System.Linq;
|
|
|
|
using System.Collections;
|
|
|
|
using System.Collections.Generic;
|
|
|
|
using UnityEngine;
|
|
|
|
|
|
|
|
using HeavenStudio.Util;
|
|
|
|
using HeavenStudio.InputSystem;
|
|
|
|
|
|
|
|
using Jukebox;
|
|
|
|
|
|
|
|
namespace HeavenStudio.Games.Loaders
|
|
|
|
{
|
|
|
|
using static Minigames;
|
|
|
|
public static class AgbPowerCalligraphy
|
|
|
|
{
|
|
|
|
public static Minigame AddGame(EventCaller eventCaller)
|
|
|
|
{
|
|
|
|
return new Minigame("powerCalligraphy", "Power Calligraphy", "ffffff", false, false, new List<GameAction>()
|
|
|
|
{
|
|
|
|
new GameAction("re", "Re (レ)")
|
|
|
|
{
|
2024-03-11 12:22:30 +00:00
|
|
|
preFunction = delegate {var e = eventCaller.currentEntity; PowerCalligraphy.instance.QueuePaper(e.beat, (int)PowerCalligraphy.CharacterType.re); },
|
2024-03-08 05:11:52 +00:00
|
|
|
function = delegate {var e = eventCaller.currentEntity; PowerCalligraphy.instance.Write(e.beat, (int)PowerCalligraphy.CharacterType.re); },
|
|
|
|
defaultLength = 8f,
|
|
|
|
},
|
|
|
|
new GameAction("comma", "Comma (、)")
|
|
|
|
{
|
2024-03-11 12:22:30 +00:00
|
|
|
preFunction = delegate {var e = eventCaller.currentEntity; PowerCalligraphy.instance.QueuePaper(e.beat, (int)PowerCalligraphy.CharacterType.comma); },
|
2024-03-08 05:11:52 +00:00
|
|
|
function = delegate {var e = eventCaller.currentEntity; PowerCalligraphy.instance.Write(e.beat, (int)PowerCalligraphy.CharacterType.comma); },
|
|
|
|
defaultLength = 8f,
|
|
|
|
},
|
|
|
|
new GameAction("chikara", "Chikara (力)")
|
|
|
|
{
|
2024-03-11 12:22:30 +00:00
|
|
|
preFunction = delegate {var e = eventCaller.currentEntity; PowerCalligraphy.instance.QueuePaper(e.beat, (int)PowerCalligraphy.CharacterType.chikara); },
|
2024-03-08 05:11:52 +00:00
|
|
|
function = delegate {var e = eventCaller.currentEntity; PowerCalligraphy.instance.Write(e.beat, (int)PowerCalligraphy.CharacterType.chikara); },
|
|
|
|
defaultLength = 8f,
|
|
|
|
},
|
|
|
|
new GameAction("onore", "Onore (己)")
|
|
|
|
{
|
2024-03-11 12:22:30 +00:00
|
|
|
preFunction = delegate {var e = eventCaller.currentEntity; PowerCalligraphy.instance.QueuePaper(e.beat, (int)PowerCalligraphy.CharacterType.onore); },
|
2024-03-08 05:11:52 +00:00
|
|
|
function = delegate {var e = eventCaller.currentEntity; PowerCalligraphy.instance.Write(e.beat, (int)PowerCalligraphy.CharacterType.onore); },
|
|
|
|
defaultLength = 8f,
|
|
|
|
},
|
|
|
|
new GameAction("sun", "Sun (寸)")
|
|
|
|
{
|
2024-03-11 12:22:30 +00:00
|
|
|
preFunction = delegate {var e = eventCaller.currentEntity; PowerCalligraphy.instance.QueuePaper(e.beat, (int)PowerCalligraphy.CharacterType.sun); },
|
2024-03-08 05:11:52 +00:00
|
|
|
function = delegate {var e = eventCaller.currentEntity; PowerCalligraphy.instance.Write(e.beat, (int)PowerCalligraphy.CharacterType.sun); },
|
|
|
|
defaultLength = 8f,
|
|
|
|
},
|
|
|
|
new GameAction("kokoro", "Kokoro (心)")
|
|
|
|
{
|
2024-03-11 12:22:30 +00:00
|
|
|
preFunction = delegate {var e = eventCaller.currentEntity; PowerCalligraphy.instance.QueuePaper(e.beat, (int)PowerCalligraphy.CharacterType.kokoro); },
|
2024-03-08 05:11:52 +00:00
|
|
|
function = delegate {var e = eventCaller.currentEntity; PowerCalligraphy.instance.Write(e.beat, (int)PowerCalligraphy.CharacterType.kokoro); },
|
|
|
|
defaultLength = 8f,
|
|
|
|
},
|
|
|
|
new GameAction("face", "Face (つるニハ○○ムし)")
|
|
|
|
{
|
|
|
|
preFunction = delegate {var e = eventCaller.currentEntity; PowerCalligraphy.instance.QueuePaper(e.beat,
|
2024-03-11 12:22:30 +00:00
|
|
|
e["korean"] ? (int)PowerCalligraphy.CharacterType.face_kr : (int)PowerCalligraphy.CharacterType.face); },
|
2024-03-08 05:11:52 +00:00
|
|
|
function = delegate {var e = eventCaller.currentEntity; PowerCalligraphy.instance.Write(e.beat,
|
|
|
|
e["korean"] ? (int)PowerCalligraphy.CharacterType.face_kr : (int)PowerCalligraphy.CharacterType.face); },
|
|
|
|
parameters = new List<Param>()
|
|
|
|
{
|
|
|
|
new Param("korean", false, "Korean Version", "Change the character to Korean version. (つ3ニハ○○ムし)"),
|
|
|
|
},
|
|
|
|
defaultLength = 12f,
|
|
|
|
},
|
|
|
|
new GameAction("changeScrollSpeed", "Change Scroll Speed")
|
|
|
|
{
|
|
|
|
function = delegate {var e = eventCaller.currentEntity;
|
|
|
|
PowerCalligraphy.instance.ChangeScrollSpeed(e["x"], e["y"]);},
|
|
|
|
parameters = new List<Param>()
|
|
|
|
{
|
|
|
|
new Param("x", new EntityTypes.Float(-20, 20, 0), "X"),
|
|
|
|
new Param("y", new EntityTypes.Float(-20, 20, 0), "Y"),
|
|
|
|
},
|
|
|
|
defaultLength = 0.5f,
|
|
|
|
},
|
|
|
|
new GameAction("end", "The End")
|
|
|
|
{
|
|
|
|
function = delegate {PowerCalligraphy.instance.TheEnd();},
|
|
|
|
defaultLength = 0.5f,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
new List<string>() { "agb", "normal" }, "agbCalligraphy", "en", new List<string>() { }
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
namespace HeavenStudio.Games
|
|
|
|
{
|
|
|
|
using Scripts_PowerCalligraphy;
|
|
|
|
public class PowerCalligraphy : Minigame
|
|
|
|
{
|
2024-03-11 12:22:30 +00:00
|
|
|
[Header("References")]
|
2024-03-08 05:11:52 +00:00
|
|
|
[SerializeField] List<GameObject> basePapers = new List<GameObject>();
|
2024-03-11 12:22:30 +00:00
|
|
|
[SerializeField] List<RuntimeAnimatorController> fudePosCntls = new List<RuntimeAnimatorController>();
|
2024-03-08 05:11:52 +00:00
|
|
|
public Transform paperHolder;
|
2024-03-11 12:22:30 +00:00
|
|
|
public Animator endPaper;
|
|
|
|
|
|
|
|
public Animator fudePosAnim;
|
|
|
|
public Animator fudeAnim;
|
2024-03-08 05:11:52 +00:00
|
|
|
|
2024-03-11 12:22:30 +00:00
|
|
|
public static int queuedType;
|
2024-03-08 05:11:52 +00:00
|
|
|
|
2024-03-11 12:22:30 +00:00
|
|
|
[Header("Variables")]
|
|
|
|
public Vector3 scrollSpeed = new Vector3();
|
2024-03-08 05:11:52 +00:00
|
|
|
|
|
|
|
public enum CharacterType
|
|
|
|
{
|
|
|
|
re,
|
|
|
|
comma,
|
|
|
|
chikara,
|
|
|
|
onore,
|
|
|
|
sun,
|
|
|
|
kokoro,
|
|
|
|
face,
|
|
|
|
face_kr,
|
|
|
|
NONE,
|
|
|
|
}
|
|
|
|
|
2024-03-11 12:22:30 +00:00
|
|
|
double gameStartBeat;
|
2024-03-08 05:11:52 +00:00
|
|
|
public static PowerCalligraphy instance = null;
|
|
|
|
|
|
|
|
// Start is called before the first frame update
|
|
|
|
void Awake()
|
|
|
|
{
|
|
|
|
instance = this;
|
|
|
|
}
|
2024-03-11 12:22:30 +00:00
|
|
|
public override void OnGameSwitch(double beat)
|
|
|
|
{
|
|
|
|
gameStartBeat = beat;
|
|
|
|
NextPrepare(beat);
|
|
|
|
}
|
|
|
|
public override void OnPlay(double beat)
|
|
|
|
{
|
|
|
|
OnGameSwitch(beat);
|
|
|
|
}
|
2024-03-08 05:11:52 +00:00
|
|
|
|
|
|
|
Writing nowPaper;
|
|
|
|
bool isPrepare = false;
|
|
|
|
void Update()
|
|
|
|
{
|
|
|
|
var cond = Conductor.instance;
|
2024-03-11 12:22:30 +00:00
|
|
|
if (!cond.isPlaying || cond.isPaused)
|
|
|
|
{
|
|
|
|
if (!cond.isPaused) queuedType = (int)CharacterType.NONE;
|
|
|
|
return;
|
|
|
|
}
|
2024-03-08 05:11:52 +00:00
|
|
|
|
2024-03-11 12:22:30 +00:00
|
|
|
if (queuedType != (int)CharacterType.NONE)
|
2024-03-08 05:11:52 +00:00
|
|
|
{
|
2024-03-11 12:22:30 +00:00
|
|
|
Prepare(queuedType);
|
|
|
|
queuedType = (int)CharacterType.NONE;
|
2024-03-08 05:11:52 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if (PlayerInput.GetIsAction(InputAction_BasicPress) && !IsExpectingInputNow(InputAction_BasicPress))
|
|
|
|
{
|
2024-03-11 12:22:30 +00:00
|
|
|
if (nowPaper.onGoing && nowPaper.Stroke == 1)
|
2024-03-08 05:11:52 +00:00
|
|
|
{
|
|
|
|
nowPaper.ProcessInput("fast");
|
|
|
|
ScoreMiss();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (PlayerInput.GetIsAction(InputAction_FlickPress) && !IsExpectingInputNow(InputAction_FlickPress))
|
|
|
|
{
|
2024-03-11 12:22:30 +00:00
|
|
|
if (nowPaper.onGoing && nowPaper.Stroke != 1)
|
2024-03-08 05:11:52 +00:00
|
|
|
{
|
|
|
|
nowPaper.ProcessInput("fast");
|
|
|
|
ScoreMiss();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2024-03-11 12:22:30 +00:00
|
|
|
private void SpawnPaper(int type)
|
2024-03-08 05:11:52 +00:00
|
|
|
{
|
|
|
|
nowPaper = Instantiate(basePapers[type], paperHolder).GetComponent<Writing>();
|
|
|
|
nowPaper.scrollSpeed = scrollSpeed;
|
|
|
|
nowPaper.gameObject.SetActive(true);
|
|
|
|
nowPaper.Init();
|
2024-03-11 12:22:30 +00:00
|
|
|
fudePosAnim.runtimeAnimatorController = fudePosCntls[type];
|
2024-03-08 05:11:52 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
public void Write(double beat, int type)
|
|
|
|
{
|
2024-03-11 12:22:30 +00:00
|
|
|
Prepare(type);
|
|
|
|
nowPaper.startBeat = beat;
|
2024-03-08 05:11:52 +00:00
|
|
|
nowPaper.Play();
|
|
|
|
isPrepare=false;
|
2024-03-11 12:22:30 +00:00
|
|
|
double nextBeat = beat + nowPaper.nextBeat;
|
|
|
|
BeatAction.New(instance, new List<BeatAction.Action>(){
|
|
|
|
new BeatAction.Action(nextBeat, delegate{ NextPrepare(nextBeat);})
|
|
|
|
});
|
2024-03-08 05:11:52 +00:00
|
|
|
}
|
|
|
|
|
2024-03-11 12:22:30 +00:00
|
|
|
public void QueuePaper(double beat, int type)
|
2024-03-08 05:11:52 +00:00
|
|
|
{
|
2024-03-11 12:22:30 +00:00
|
|
|
if (GameManager.instance.currentGame != "powerCalligraphy")
|
2024-03-08 05:11:52 +00:00
|
|
|
{
|
2024-03-11 12:22:30 +00:00
|
|
|
queuedType = type;
|
2024-03-08 05:11:52 +00:00
|
|
|
}
|
|
|
|
else if(Conductor.instance.songPositionInBeats < beat)
|
|
|
|
{
|
|
|
|
BeatAction.New(instance, new List<BeatAction.Action>(){
|
2024-03-11 12:22:30 +00:00
|
|
|
new BeatAction.Action(beat-1, delegate{ Prepare(type);})
|
2024-03-08 05:11:52 +00:00
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|
2024-03-11 12:22:30 +00:00
|
|
|
public void Prepare(int type)
|
2024-03-08 05:11:52 +00:00
|
|
|
{
|
2024-03-11 12:22:30 +00:00
|
|
|
if (!isPrepare)
|
|
|
|
{
|
|
|
|
SpawnPaper(type);
|
|
|
|
isPrepare = true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
public void NextPrepare(double beat) // Prepare next paper
|
|
|
|
{
|
|
|
|
double endBeat = double.MaxValue;
|
|
|
|
var entities = gameManager.Beatmap.Entities;
|
|
|
|
|
|
|
|
RiqEntity firstEnd = entities.Find(c => (c.datamodel.StartsWith("gameManager/switchGame") || c.datamodel.Equals("gameManager/end")) && c.beat > gameStartBeat);
|
|
|
|
endBeat = firstEnd?.beat ?? endBeat;
|
|
|
|
|
|
|
|
RiqEntity nextPaper = entities.Find(v =>
|
|
|
|
(v.datamodel is "powerCalligraphy/re" or "powerCalligraphy/comma" or "powerCalligraphy/chikara" or "powerCalligraphy/onore" or "powerCalligraphy/sun" or "powerCalligraphy/kokoro" or "powerCalligraphy/face")
|
|
|
|
&& v.beat >= beat && v.beat < endBeat);
|
|
|
|
|
|
|
|
if (nextPaper is not null)
|
|
|
|
{
|
|
|
|
int type = nextPaper.datamodel switch
|
|
|
|
{
|
|
|
|
"powerCalligraphy/re" => (int)CharacterType.re,
|
|
|
|
"powerCalligraphy/comma" => (int)CharacterType.comma,
|
|
|
|
"powerCalligraphy/chikara" => (int)CharacterType.chikara,
|
|
|
|
"powerCalligraphy/onore" => (int)CharacterType.onore,
|
|
|
|
"powerCalligraphy/sun" => (int)CharacterType.sun,
|
|
|
|
"powerCalligraphy/kokoro" => (int)CharacterType.kokoro,
|
|
|
|
"powerCalligraphy/face" => nextPaper["korean"] ? (int)PowerCalligraphy.CharacterType.face_kr : (int)PowerCalligraphy.CharacterType.face,
|
|
|
|
_ => throw new NotImplementedException()
|
|
|
|
};
|
|
|
|
|
|
|
|
Prepare(type);
|
|
|
|
}
|
2024-03-08 05:11:52 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
public void ChangeScrollSpeed(float x, float y)
|
|
|
|
{
|
|
|
|
scrollSpeed = new Vector3(x, y, 0);
|
|
|
|
nowPaper.scrollSpeed = scrollSpeed;
|
|
|
|
}
|
|
|
|
|
|
|
|
public void TheEnd()
|
|
|
|
{
|
2024-03-11 12:22:30 +00:00
|
|
|
fudePosAnim.runtimeAnimatorController = fudePosCntls[(int)CharacterType.NONE];
|
|
|
|
fudePosAnim.Play("fudePos-end");
|
|
|
|
endPaper.Play("paper-end");
|
2024-03-08 05:11:52 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|