mirror of
https://github.com/RHeavenStudio/HeavenStudio.git
synced 2025-06-13 00:37:37 +02:00
Game Overlays (#280)
* add accuracy display * temp BG for show * separate overlays prefab make proper shader for star effects * aim shakiness display * implement testing skill star * fully functional skill star * separate section display from editor * fully separate chart section display from timeline * add section to overlays * fix nullreference issues * start game layout settings * add game settings script * fix nonfunctioning scoring * invert y position logic on timing bar * add perfect challenge functionality * fix section not showing up in editor add perfect challenge option * add timing display minimal mode * Update PerfectAndPractice.png * show gismo for minigame bounds in editor * add ability to disable overlays in editor * prepare medals add new timing display graphic * hide screen preview * per-axis camera control added per request * section medals basic functionality * add medal get animations * fix bug with perfect icons * visual enhancements * adjust look of timing display minmode address audio ducking issues(?) * prepare overlay lyt editor add viewport pan, rotate, scale adjust audio setting * add layout editor UI elements * dynamic overlay creation * fix default single timing disp * set up overlay settings controls * start UI events * runtime uuid for component reference * layout editor affects overlay elements * show overlay element previews while editing * advanced audio settings * fix bug in drop-down creation * fallback defaults for the new stuff * fix textbox & overlay visibility bugs
This commit is contained in:
@ -10,28 +10,52 @@ namespace HeavenStudio.Common
|
||||
{
|
||||
public static class PersistentDataManager
|
||||
{
|
||||
public enum PerfectChallengeType
|
||||
{
|
||||
Off, // no perfect challenge
|
||||
Arcade, // "arcade rule"
|
||||
Legacy, // "legacy rule"
|
||||
On // "megamix rule"
|
||||
}
|
||||
|
||||
[NonSerialized] public static GameSettings gameSettings;
|
||||
|
||||
public static void CreateDefaultSettings()
|
||||
{
|
||||
gameSettings = new GameSettings();
|
||||
|
||||
gameSettings.isFullscreen = false;
|
||||
|
||||
gameSettings.resolutionIndex = 0;
|
||||
gameSettings.resolutionWidth = GlobalGameManager.DEFAULT_SCREEN_SIZES[gameSettings.resolutionIndex].width;
|
||||
gameSettings.resolutionHeight = GlobalGameManager.DEFAULT_SCREEN_SIZES[gameSettings.resolutionIndex].height;
|
||||
|
||||
gameSettings.masterVolume = 0.8f;
|
||||
|
||||
gameSettings.editorCursorEnable = true;
|
||||
gameSettings = new GameSettings(
|
||||
false,
|
||||
1,
|
||||
GlobalGameManager.DEFAULT_SCREEN_SIZES[1].width,
|
||||
GlobalGameManager.DEFAULT_SCREEN_SIZES[1].height,
|
||||
0.8f,
|
||||
256,
|
||||
44100,
|
||||
true,
|
||||
true,
|
||||
PerfectChallengeType.On,
|
||||
true,
|
||||
false
|
||||
);
|
||||
|
||||
// disable if platform is mac
|
||||
if (Application.platform == RuntimePlatform.OSXPlayer || Application.platform == RuntimePlatform.OSXEditor)
|
||||
gameSettings.discordRPCEnable = false;
|
||||
else
|
||||
gameSettings.discordRPCEnable = true;
|
||||
|
||||
|
||||
gameSettings.timingDisplayComponents = new List<OverlaysManager.TimingDisplayComponent>()
|
||||
{
|
||||
OverlaysManager.TimingDisplayComponent.CreateDefaultDual()
|
||||
};
|
||||
gameSettings.skillStarComponents = new List<OverlaysManager.SkillStarComponent>()
|
||||
{
|
||||
OverlaysManager.SkillStarComponent.CreateDefault()
|
||||
};
|
||||
gameSettings.sectionComponents = new List<OverlaysManager.SectionComponent>()
|
||||
{
|
||||
OverlaysManager.SectionComponent.CreateDefault()
|
||||
};
|
||||
|
||||
SaveSettings();
|
||||
}
|
||||
|
||||
@ -68,6 +92,58 @@ namespace HeavenStudio.Common
|
||||
[Serializable]
|
||||
public struct GameSettings
|
||||
{
|
||||
// default settings constructor
|
||||
public GameSettings(
|
||||
bool isFullscreen = false,
|
||||
int resolutionIndex = 0,
|
||||
int resolutionWidth = 1280,
|
||||
int resolutionHeight = 720,
|
||||
float masterVolume = 0.8f,
|
||||
int dspSize = 256,
|
||||
int sampleRate = 44100,
|
||||
bool editorCursorEnable = true,
|
||||
bool discordRPCEnable = true,
|
||||
PerfectChallengeType perfectChallengeType = PerfectChallengeType.On,
|
||||
bool isMedalOn = true,
|
||||
bool timingDisplayMinMode = false,
|
||||
bool overlaysInEditor = true
|
||||
)
|
||||
{
|
||||
this.isFullscreen = isFullscreen;
|
||||
|
||||
this.resolutionIndex = resolutionIndex;
|
||||
this.resolutionWidth = resolutionWidth;
|
||||
this.resolutionHeight = resolutionHeight;
|
||||
|
||||
this.masterVolume = masterVolume;
|
||||
this.dspSize = dspSize;
|
||||
this.sampleRate = sampleRate;
|
||||
|
||||
this.editorCursorEnable = editorCursorEnable;
|
||||
if (Application.platform == RuntimePlatform.OSXPlayer || Application.platform == RuntimePlatform.OSXEditor)
|
||||
this.discordRPCEnable = false;
|
||||
else
|
||||
this.discordRPCEnable = true;
|
||||
|
||||
this.perfectChallengeType = perfectChallengeType;
|
||||
this.isMedalOn = isMedalOn;
|
||||
this.timingDisplayMinMode = timingDisplayMinMode;
|
||||
this.overlaysInEditor = overlaysInEditor;
|
||||
|
||||
this.timingDisplayComponents = new List<OverlaysManager.TimingDisplayComponent>()
|
||||
{
|
||||
OverlaysManager.TimingDisplayComponent.CreateDefaultDual()
|
||||
};
|
||||
this.skillStarComponents = new List<OverlaysManager.SkillStarComponent>()
|
||||
{
|
||||
OverlaysManager.SkillStarComponent.CreateDefault()
|
||||
};
|
||||
this.sectionComponents = new List<OverlaysManager.SectionComponent>()
|
||||
{
|
||||
OverlaysManager.SectionComponent.CreateDefault()
|
||||
};
|
||||
}
|
||||
|
||||
// Display / Audio Settings
|
||||
public bool isFullscreen;
|
||||
|
||||
@ -76,11 +152,21 @@ namespace HeavenStudio.Common
|
||||
public int resolutionHeight;
|
||||
|
||||
public float masterVolume;
|
||||
public int dspSize;
|
||||
public int sampleRate;
|
||||
|
||||
// Editor Settings
|
||||
public bool editorCursorEnable;
|
||||
public bool discordRPCEnable;
|
||||
|
||||
// Gameplay Settings
|
||||
public PerfectChallengeType perfectChallengeType;
|
||||
public bool isMedalOn;
|
||||
public bool timingDisplayMinMode;
|
||||
public bool overlaysInEditor;
|
||||
public List<OverlaysManager.TimingDisplayComponent> timingDisplayComponents;
|
||||
public List<OverlaysManager.SkillStarComponent> skillStarComponents;
|
||||
public List<OverlaysManager.SectionComponent> sectionComponents;
|
||||
}
|
||||
}
|
||||
|
||||
}
|
Reference in New Issue
Block a user