This commit is contained in:
2024-06-12 21:03:42 +02:00
parent 4685d9942b
commit aef3b3ab97
1548 changed files with 5615 additions and 72 deletions

View File

@@ -0,0 +1,11 @@
using System;
using System.Collections.Generic;
public struct GameState
{
public List<int> AlivePlayers { get; set; }
public float CurrentDifficultyMultiplier { get; set; }
}

View File

@@ -0,0 +1,10 @@
using System;
using System.Collections.Generic;
public class GenericVector<TX, TY>
{
public TX X { get; set; }
public TY Y { get; set; }
}

View File

@@ -0,0 +1,92 @@
using System;
using System.Collections.Generic;
public class SessionData
{
public DateTime Date { get; set; } //
public int SessionNumber { get; set; }
public double SessionTime { get; set; } //
public Players Players { get; set; } = new(); //
public Rules Rules { get; set; } = new(); //
public List<Attempt> Attempts { get;
set; }
= new();
public List<RegisteredPlayer> RegisteredPlayers { get; set; } = new(); //
}
public class Players
{
public bool OmnicientBot { get; set; }
public bool ObserverBot { get; set; }
public bool IteratorBot { get; set; }
public bool Human { get; set; }
} //
public class RegisteredPlayer
{
public string Name { get; set; }
public int Id { get; set; }
public bool Human { get; set; }
} //
public class Rules
{
public bool Lasers { get; set; }
public bool Missiles { get; set; }
public bool BonusCoins { get; set; }
public bool MalusCoins { get; set; }
public bool ScoreOnDistance { get; set; }
public bool ChangeSeedEachTry { get; set; }
public bool UsesDefaultSeed { get; set; }
public int MaxAttempts { get; set; }
public int MaxSessionTime { get; set; }
public float MaxDistance { get; set; }
public float MaxSpeed { get; set; }
public float StartSpeed { get; set; }
public float DifficultyMultiplier { get; set; }
public bool RushMode { get; set; }
} //
public class Attempt
{
public int AttemptNumber { get; set; } //
public int Seed { get; set; } //
public Dictionary<string, PlayerAttempt> PlayersAttempts { get; set; } = new();
public List<LevelPrefab> Level { get; set; } = new(); //
}
public class PlayerAttempt
{
public string PlayerName { get; set; } //
public int FinalScore { get; set; } //
public int Distance { get; set; } //
public int AttemptDurationTicks { get; set; } //
public double AttemptDurationSeconds { get; set; } //
public int TimeTouchingBorder { get; set; }
public List<GenericVector<int, int>> PlayerScoresOverTicksTime { get; set; } = new(); //
public List<TouchedGameObject> BonusTouched { get; set; } = new(); //
public List<TouchedGameObject> ObstaclesTouched { get; set; } = new(); //
}
public class TouchedGameObject //
{
public string ObjectTypeName { get; set; }
public string PrefabName { get; set; }
public string FullObjectName { get; set; }
public float GameSpeed { get; set; }
public int TickTimeWhenTouched { get; set; }
}
public class LevelPrefab
{
public string PrefabName { get; set; }
public int PrefabNumber { get; set; }
public int TickTimeWhenTouched { get; set; }
} //

View File

@@ -0,0 +1,33 @@
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public static class Settings
{
public const string MaxSpeedSettingValue = "MaxSpeedSettingValue";
public const string StartSpeedSettingValue = "StartSpeedSettingValue";
public const string DifficultyMultiplierSettingValue = "DifficultyMultiplyerSettingValue";
public const string RushModeSettingToggle = "RushModeSettingToggle";
public const string MaxTrySettingValue = "MaxTrySettingValue";
public const string MaxTimeSettingValue = "MaxTimeSettingValue";
public const string MaxDistanceSettingValue = "MaxDistanceSettingValue";
public const string LaserSettingToggle = "LaserSettingToggle";
public const string MissileSettingToggle = "MissileSettingToggle";
public const string CoinSettingToggle = "CoinSettingToggle";
public const string BadCoinSettingToggle = "BadCoinSettingToggle";
public const string SurviveScoreSettingToggle = "SurviveScoreSettingToggle";
public const string ChangeSeedSetting = "ChangeSeedSetting";
public const string UseDefaultSeedSetting = "UseDefaultSeedSetting";
public const string DefaultSeedSettingValue = "DefaultSeedSettingValue";
public const string CustomSeedSettingValue = "CustomSeedSettingValue";
public const string OmnicientBotSelected = "OmnicientBotSelected";
public const string ObserverBotSelected = "ObserverBotSelected";
public const string IteratorBotSelected = "IteratorBotSelected";
public const string HumanPlayerSelected = "HumanPlayerSelected";
}