WIP sessions
continuous-integration/drone/pr Build is passing Details
continuous-integration/drone/push Build is passing Details

This commit is contained in:
Hamcha 2019-09-13 17:56:05 +02:00
parent 5daa94b9ad
commit d37c6a5cc5
Signed by: hamcha
GPG Key ID: 44AD3571EB09A39E
1 changed files with 90 additions and 1 deletions

View File

@ -1,16 +1,87 @@
import { PackBuilder, Cube, DraftOptions } from ".";
import EventEmitter from "eventemitter3";
import { Card } from "@/mlpccg";
export class Session {
private options: DraftOptions;
private factory: PackBuilder;
private pod: SessionPlayer[];
private players: string[];
private pending: number[];
constructor(options: DraftOptions, factory: PackBuilder) {
this.options = options;
this.factory = factory;
this.players = [];
this.pending = [];
this.pod = new Array(options.players).fill(0).map((x, i) => {
const player = new SessionPlayer();
player.on("pick", this.picked.bind(this, i));
return player;
});
}
public start() {
// Figure out how many players there are vs spots to be filled
const spots = this.options.players;
const players = this.players.length;
if (players > spots) {
throw new Error("too many players in the pod");
}
if (players < 1) {
throw new Error("not enough players");
}
// Place players in the pod
switch (this.options.spacing) {
case "evenly":
const playerRatio = spots / players;
let i = 0;
for (const player of this.players) {
const pos = Math.floor(playerRatio * i);
this.pod[pos].name = name;
i += 1;
}
break;
case "randomly":
for (const player of this.players) {
while (true) {
const idx = Math.floor(Math.random() * spots);
if (!this.pod[idx].name) {
this.pod[idx].name = player;
break;
}
}
}
break;
}
//TODO
}
public get order(): string[] {
return this.pod.map(p => p.name || "bot");
}
private picked(playerIndex: number, card: string) {
if (!this.pending.includes(playerIndex)) {
// Uh oh.
throw new Error(
`unexpected pick: player #${playerIndex} already picked their card`
);
}
const idx = this.pending.indexOf(playerIndex);
this.pending.splice(idx, 1);
// Check if everyone picked their card
if (this.pending.length < 1) {
//TODO
//NEXT PACK
}
}
static async create(options: DraftOptions): Promise<Session> {
switch (options.type) {
switch (options.source) {
case "set": {
const factory = await PackBuilder.fromSet(options.set);
return new Session(options, factory);
@ -24,6 +95,24 @@ export class Session {
}
case "i8pcube":
throw new Error("not implemented");
default:
throw new Error("Unknown draft source");
}
}
}
export class SessionPlayer extends EventEmitter {
public name?: string;
public currentPack?: Card[];
public next?: SessionPlayer;
public pick(card: string) {
if (!this.currentPack) {
throw new Error("no pack to pick from");
}
if (!this.currentPack.find(c => c.ID == card)) {
throw new Error("card not in available picks");
}
this.emit("pick", card);
}
}