Compare commits

..

No commits in common. "0e7aaea7dac8fa84757c49e574ffd5c9c9d9f5cd" and "2f0fb2bca844350edbae3b0477935aee3d47198d" have entirely different histories.

4 changed files with 12 additions and 22 deletions

View File

@ -1 +0,0 @@
!node_modules

View File

@ -9,34 +9,35 @@ A Phaser 3 framework for building web board games, built on top of `boardgame-co
## boardgame-core Usage
For detailed boardgame-core API documentation and examples, see `packages/framework/node_modules/boardgame-core/`
For detailed boardgame-core API documentation and examples, see **[boardgame-core Guide](docs/boardgame-core-guide.md)**.
Key concepts:
- **MutableSignal** — Reactive state container with `.value` and `.produce()`
- **Command System** — CLI-style parsing with schema validation and prompt support
- **Region System** — Spatial management with `createRegion()`, `applyAlign()`, `shuffle()`, `moveToRegion()`
- **Part System** — Game pieces with `createPartsFromTable()`, `flip()`, `roll()`
- **Part System** — Game pieces with `createPart()`, `createPartPool()`, `flip()`, `roll()`
- **RNG** — Deterministic PRNG via `createRNG(seed)` for reproducible game states
### Quick Example
```ts
import { createGameCommandRegistry, createRegion, IGameContext } from 'boardgame-core';
import { createGameCommandRegistry, createRegion, MutableSignal } from 'boardgame-core';
type GameState = {
board: Region;
parts: Part<{ player: 'X' | 'O' }>[];
currentPlayer: 'X' | 'O';
};
type Game = IGameContext<GameState>;
const registry = createGameCommandRegistry<GameState>();
const registration = createGameCommandRegistry<GameState>();
export const registry = registration.registry;
registry.register('place <row:number> <col:number>', async function(game: Game, row: number, col: number) {
await game.produceAsync(state => {
registration.add('place <row:number> <col:number>', async function(cmd) {
const [row, col] = cmd.params as [number, number];
this.context.produce(state => {
state.parts.push({ id: `p-${row}-${col}`, regionId: 'board', position: [row, col], player: state.currentPlayer });
});
return true;
return { success: true };
});
```
@ -70,7 +71,7 @@ pnpm --filter sample-game typecheck # tsc --noEmit (add to scripts first)
```bash
# boardgame-core is a local dependency via symlink (link:../../../boardgame-core)
# After changes to boardgame-core, simply rebuild it:
cd ../boardgame-core && npm build
cd ../boardgame-core && pnpm build
# The symlink automatically resolves to the updated dist/
```

View File

@ -51,7 +51,6 @@ const placeCommand = registry.register( 'place <row:number> <col:number> <player
async function boop(game: BoopGame, row: number, col: number, type: PieceType) {
const booped: string[] = [];
const toRemove = new Set<string>();
await game.produceAsync((state: BoopState) => {
// 按照远离放置位置的方向推动
for (const [dr, dc] of getNeighborPositions()) {
@ -74,9 +73,8 @@ async function boop(game: BoopGame, row: number, col: number, type: PieceType) {
// 检查新位置是否为空或在棋盘外
if (!isInBounds(newRow, newCol)) {
// 棋子被推出棋盘,返回玩家supply
toRemove.add(part.id);
booped.push(part.id);
moveToRegion(part, state.regions.board, state.regions.board, [newRow, newCol]);
moveToRegion(part, state.regions.board, state.regions[part.player]);
} else if (!isCellOccupied(state, newRow, newCol)) {
// 新位置为空,移动过去
booped.push(part.id);
@ -85,13 +83,6 @@ async function boop(game: BoopGame, row: number, col: number, type: PieceType) {
// 如果新位置被占用,则不移动(两个棋子都保持原位)
}
});
await game.produceAsync((state: BoopState) => {
// 移除被吃掉的棋子
for (const partId of toRemove) {
const part = state.pieces[partId];
moveToRegion(part, state.regions.board, state.regions[part.player]);
}
});
return { booped };
}

View File

@ -22,14 +22,13 @@ class BoopPartSpawner implements Spawner<BoopPart, Phaser.GameObjects.Container>
const x = BOARD_OFFSET.x + col * CELL_SIZE + CELL_SIZE / 2;
const y = BOARD_OFFSET.y + row * CELL_SIZE + CELL_SIZE / 2;
const tween = this.scene.tweens.add({
this.scene.tweens.add({
targets: obj,
x: x,
y: y,
duration: 200,
ease: 'Power2',
});
this.scene.addTweenInterruption(tween);
}
onSpawn(part: BoopPart) {