Slash-The-Hordes/assets/Scripts/Game/Game.ts

177 lines
7.5 KiB
TypeScript
Raw Normal View History

2022-11-30 08:37:09 +00:00
import { Camera, Component, JsonAsset, KeyCode, Vec2, _decorator } from "cc";
2022-12-19 11:00:55 +00:00
import { runInThisContext } from "vm";
2022-11-17 17:28:39 +00:00
import { ModalWindowManager } from "../Services/ModalWindowSystem/ModalWindowManager";
2022-12-07 09:47:46 +00:00
import { delay } from "../Services/Utils/AsyncUtils";
2022-12-13 09:21:44 +00:00
import { Background } from "./Background/Background";
2022-11-08 18:45:57 +00:00
import { PlayerCollisionSystem } from "./Collision/PlayerCollisionSystem";
2022-11-30 07:21:22 +00:00
import { PlayerProjectileCollisionSystem } from "./Collision/PlayerProjectileCollisionSystem";
2022-11-08 18:45:57 +00:00
import { WeaponCollisionSystem } from "./Collision/WeaponCollisionSystem";
2022-12-13 14:56:13 +00:00
import { GameSettings, PlayerSettings } from "./Data/GameSettings";
2022-12-13 15:58:55 +00:00
import { TranslationData } from "./Data/TranslationData";
2022-12-13 10:58:40 +00:00
import { UserData } from "./Data/UserData";
2022-11-16 11:26:20 +00:00
import { KeyboardInput } from "./Input/KeyboardInput";
2022-11-14 15:35:47 +00:00
import { MultiInput } from "./Input/MultiInput";
2022-11-08 18:45:57 +00:00
import { VirtualJoystic } from "./Input/VirtualJoystic";
2022-11-25 11:00:09 +00:00
import { GameModalLauncher } from "./ModalWIndows/GameModalLauncher";
import { Pauser } from "./Pauser";
2022-12-19 11:00:55 +00:00
import { TestValues } from "./TestGameRunner";
2022-11-16 13:04:23 +00:00
import { GameUI } from "./UI/GameUI";
2022-11-28 11:19:04 +00:00
import { EnemyManager } from "./Unit/Enemy/EnemyManager";
2022-12-13 10:58:40 +00:00
import { MetaUpgrades } from "./Unit/MetaUpgrades/MetaUpgrades";
import { Player, PlayerData } from "./Unit/Player/Player";
2022-11-30 10:44:20 +00:00
import { HaloProjectileLauncher } from "./Unit/Player/ProjectileLauncher/HaloProjectileLauncher";
2022-12-13 10:58:40 +00:00
import { ProjectileData, ProjectileLauncher } from "./Unit/Player/ProjectileLauncher/ProjectileLauncher";
2022-12-01 11:16:52 +00:00
import { WaveProjectileLauncher } from "./Unit/Player/ProjectileLauncher/WaveProjectileLauncher";
2022-11-24 12:17:05 +00:00
import { Upgrader } from "./Upgrades/Upgrader";
2022-12-13 10:58:40 +00:00
import { MetaUpgradeType } from "./Upgrades/UpgradeType";
2022-11-28 10:49:16 +00:00
2022-11-08 18:45:57 +00:00
const { ccclass, property } = _decorator;
2022-12-07 09:47:46 +00:00
@ccclass("Game")
export class Game extends Component {
2022-11-08 18:45:57 +00:00
@property(VirtualJoystic) private virtualJoystic: VirtualJoystic;
@property(Player) private player: Player;
2022-11-30 10:44:20 +00:00
@property(ProjectileLauncher) private haloProjectileLauncherComponent: ProjectileLauncher;
2022-12-01 11:16:52 +00:00
@property(ProjectileLauncher) private horizontalProjectileLauncherComponent: ProjectileLauncher;
@property(ProjectileLauncher) private diagonalProjectileLauncherComponent: ProjectileLauncher;
2022-11-16 11:26:20 +00:00
@property(EnemyManager) private enemyManager: EnemyManager;
@property(Camera) private camera: Camera;
2022-11-16 13:04:23 +00:00
@property(GameUI) private gameUI: GameUI;
2022-12-13 09:21:44 +00:00
@property(Background) private background: Background;
2022-11-17 17:28:39 +00:00
@property(ModalWindowManager) private modalWindowManager: ModalWindowManager;
2022-11-08 18:45:57 +00:00
private playerCollisionSystem: PlayerCollisionSystem;
2022-11-30 10:44:20 +00:00
private haloProjectileLauncher: HaloProjectileLauncher;
2022-12-01 11:16:52 +00:00
private horizontalProjectileLauncher: WaveProjectileLauncher;
private diagonalProjectileLauncher: WaveProjectileLauncher;
2022-11-08 18:45:57 +00:00
2022-11-25 11:00:09 +00:00
private gamePauser: Pauser = new Pauser();
2022-11-23 08:01:01 +00:00
2022-12-07 09:47:46 +00:00
private static instance: Game;
2022-12-13 17:21:04 +00:00
private timeAlive = 0;
2022-12-07 09:47:46 +00:00
public static get Instance(): Game {
return this.instance;
}
2022-11-08 18:45:57 +00:00
public start(): void {
2022-12-07 09:47:46 +00:00
Game.instance = this;
this.gamePauser.pause();
}
2022-12-19 11:00:55 +00:00
public async playGame(
userData: UserData,
settings: GameSettings,
translationData: TranslationData,
testValues?: TestValues
): Promise<GameResult> {
2022-12-19 14:50:24 +00:00
const gameResult = new GameResult();
2022-12-13 10:58:40 +00:00
const metaUpgrades = new MetaUpgrades(userData.game.metaUpgrades, settings.metaUpgrades);
2022-11-24 12:17:05 +00:00
2022-11-08 18:45:57 +00:00
this.virtualJoystic.init();
2022-11-29 14:55:47 +00:00
2022-11-14 15:35:47 +00:00
const wasd = new KeyboardInput(KeyCode.KEY_W, KeyCode.KEY_S, KeyCode.KEY_A, KeyCode.KEY_D);
const arrowKeys = new KeyboardInput(KeyCode.ARROW_UP, KeyCode.ARROW_DOWN, KeyCode.ARROW_LEFT, KeyCode.ARROW_RIGHT);
2022-12-07 09:47:46 +00:00
const multiInput: MultiInput = new MultiInput([this.virtualJoystic, wasd, arrowKeys]);
2022-12-13 10:58:40 +00:00
2022-12-13 14:56:13 +00:00
this.player.init(multiInput, this.createPlayerData(settings.player, metaUpgrades));
2022-11-14 15:35:47 +00:00
2022-12-19 14:50:24 +00:00
this.playerCollisionSystem = new PlayerCollisionSystem(this.player, settings.player.collisionDelay, gameResult);
2022-11-29 14:55:47 +00:00
new WeaponCollisionSystem(this.player.Weapon);
2022-11-16 11:26:20 +00:00
2022-12-06 09:00:18 +00:00
this.enemyManager.init(this.player.node, settings.enemyManager);
2022-11-16 13:04:23 +00:00
2022-12-13 10:58:40 +00:00
const projectileData = new ProjectileData();
projectileData.damage = 1 + metaUpgrades.getUpgradeValue(MetaUpgradeType.OverallDamage);
projectileData.pierces = 1 + metaUpgrades.getUpgradeValue(MetaUpgradeType.ProjectilePiercing);
2022-11-30 10:44:20 +00:00
this.haloProjectileLauncher = new HaloProjectileLauncher(
this.haloProjectileLauncherComponent,
this.player.node,
2022-12-13 10:58:40 +00:00
settings.player.haloLauncher,
projectileData
2022-11-30 10:44:20 +00:00
);
2022-12-01 11:16:52 +00:00
this.horizontalProjectileLauncher = new WaveProjectileLauncher(
this.horizontalProjectileLauncherComponent,
2022-11-30 10:44:20 +00:00
this.player.node,
2022-12-01 11:16:52 +00:00
[new Vec2(-1, 0), new Vec2(1, 0)],
2022-12-13 10:58:40 +00:00
settings.player.horizontalLauncher,
projectileData
2022-11-30 10:44:20 +00:00
);
2022-11-30 08:37:09 +00:00
2022-12-01 11:16:52 +00:00
this.diagonalProjectileLauncher = new WaveProjectileLauncher(
this.diagonalProjectileLauncherComponent,
this.player.node,
[new Vec2(-0.5, -0.5), new Vec2(0.5, -0.5)],
2022-12-13 10:58:40 +00:00
settings.player.diagonalLauncher,
projectileData
2022-12-01 11:16:52 +00:00
);
new PlayerProjectileCollisionSystem([this.haloProjectileLauncher, this.horizontalProjectileLauncher, this.diagonalProjectileLauncher]);
2022-11-30 15:04:48 +00:00
2022-12-12 13:41:08 +00:00
const upgrader = new Upgrader(
this.player,
this.horizontalProjectileLauncher,
this.haloProjectileLauncher,
this.diagonalProjectileLauncher,
settings.upgrades
);
2022-12-13 15:58:55 +00:00
new GameModalLauncher(this.modalWindowManager, this.player, this.gamePauser, upgrader, translationData);
2022-11-30 07:21:22 +00:00
2022-11-16 13:04:23 +00:00
this.gameUI.init(this.player);
2022-12-13 09:21:44 +00:00
this.background.init(this.player.node);
2022-12-19 11:00:55 +00:00
if (testValues) {
this.timeAlive += testValues.startTime;
this.player.Level.addXp(testValues.startXP);
}
2022-12-07 09:47:46 +00:00
this.gamePauser.resume();
2022-12-19 14:50:24 +00:00
while (this.player.Health.IsAlive) await delay(100);
2022-12-07 09:47:46 +00:00
this.gamePauser.pause();
Game.instance = null;
2022-12-19 14:50:24 +00:00
gameResult.score = this.timeAlive;
return gameResult;
2022-11-08 18:45:57 +00:00
}
public update(deltaTime: number): void {
2022-11-25 11:00:09 +00:00
if (this.gamePauser.IsPaused) return;
2022-11-23 08:01:01 +00:00
2022-11-08 18:45:57 +00:00
this.player.gameTick(deltaTime);
this.playerCollisionSystem.gameTick(deltaTime);
2022-11-16 11:26:20 +00:00
this.enemyManager.gameTick(deltaTime);
2022-11-30 10:44:20 +00:00
this.haloProjectileLauncher.gameTick(deltaTime);
2022-11-30 15:04:48 +00:00
this.horizontalProjectileLauncher.gameTick(deltaTime);
2022-12-01 11:16:52 +00:00
this.diagonalProjectileLauncher.gameTick(deltaTime);
2022-12-13 09:21:44 +00:00
this.background.gameTick();
2022-11-16 11:26:20 +00:00
2022-12-13 17:21:04 +00:00
this.timeAlive += deltaTime;
this.gameUI.updateTimeAlive(this.timeAlive);
2022-11-16 11:26:20 +00:00
this.camera.node.worldPosition = this.player.node.worldPosition;
2022-11-08 18:45:57 +00:00
}
2022-12-13 14:56:13 +00:00
private createPlayerData(settings: PlayerSettings, metaUpgrades: MetaUpgrades): PlayerData {
const playerData: PlayerData = Object.assign(new PlayerData(), settings);
2022-12-16 12:52:54 +00:00
playerData.maxHp = metaUpgrades.getUpgradeValue(MetaUpgradeType.Health) + settings.defaultHP;
2022-12-13 14:56:13 +00:00
playerData.requiredXP = settings.requiredXP;
playerData.speed = metaUpgrades.getUpgradeValue(MetaUpgradeType.MovementSpeed) + settings.speed;
playerData.regenerationDelay = settings.regenerationDelay;
playerData.xpMultiplier = metaUpgrades.getUpgradeValue(MetaUpgradeType.XPGatherer) + 1;
playerData.goldMultiplier = metaUpgrades.getUpgradeValue(MetaUpgradeType.GoldGatherer) + 1;
playerData.damage = metaUpgrades.getUpgradeValue(MetaUpgradeType.OverallDamage) + settings.weapon.damage;
playerData.strikeDelay = settings.weapon.strikeDelay;
return playerData;
}
2022-11-08 18:45:57 +00:00
}
2022-12-13 17:25:19 +00:00
export class GameResult {
public goldCoins = 0;
public score = 0;
}