2022-11-30 08:37:09 +00:00
|
|
|
import { Camera, Component, JsonAsset, KeyCode, Vec2, _decorator } from "cc";
|
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-11-24 12:17:05 +00:00
|
|
|
import { GameSettings } from "./Data/GameSettings";
|
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-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-24 12:17:05 +00:00
|
|
|
@property(JsonAsset) private settingsAsset: JsonAsset;
|
2022-11-17 17:28:39 +00:00
|
|
|
|
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;
|
|
|
|
|
|
|
|
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-13 10:58:40 +00:00
|
|
|
public async playGame(userData: UserData): Promise<number> {
|
2022-11-28 10:49:16 +00:00
|
|
|
const settings: GameSettings = <GameSettings>this.settingsAsset.json;
|
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
|
|
|
|
|
|
|
const playerData: PlayerData = Object.assign(new PlayerData(), settings.player);
|
|
|
|
playerData.bonusHp = metaUpgrades.getUpgradeValue(MetaUpgradeType.MaxHp);
|
|
|
|
playerData.bonusDamage = metaUpgrades.getUpgradeValue(MetaUpgradeType.OverallDamage);
|
|
|
|
playerData.bonusSpeed = metaUpgrades.getUpgradeValue(MetaUpgradeType.MovementSpeed);
|
|
|
|
playerData.bonusXP = metaUpgrades.getUpgradeValue(MetaUpgradeType.XPGatherer);
|
|
|
|
playerData.bonusGold = metaUpgrades.getUpgradeValue(MetaUpgradeType.GoldGatherer);
|
|
|
|
this.player.init(multiInput, playerData);
|
2022-11-14 15:35:47 +00:00
|
|
|
|
2022-11-28 10:49:16 +00:00
|
|
|
this.playerCollisionSystem = new PlayerCollisionSystem(this.player, settings.player.collisionDelay);
|
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-11-30 15:04:48 +00:00
|
|
|
new GameModalLauncher(this.modalWindowManager, this.player, this.gamePauser, upgrader);
|
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-07 09:47:46 +00:00
|
|
|
this.gamePauser.resume();
|
|
|
|
|
2022-12-12 11:04:31 +00:00
|
|
|
// while not dead
|
2022-12-12 13:04:37 +00:00
|
|
|
await delay(1000000);
|
2022-12-07 09:47:46 +00:00
|
|
|
this.gamePauser.pause();
|
|
|
|
Game.instance = null;
|
|
|
|
return 1;
|
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
|
|
|
|
|
|
|
this.camera.node.worldPosition = this.player.node.worldPosition;
|
2022-11-08 18:45:57 +00:00
|
|
|
}
|
|
|
|
}
|