Merge branch 'master' of https://github.com/kellypeng44/ShatteredSword
This commit is contained in:
commit
0cd7cbab83
|
@ -176,6 +176,19 @@ export default class RandomMapGenerator {
|
||||||
return Facing.DOWN;
|
return Facing.DOWN;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
private getOppositeFacing(facing: Facing): Facing {
|
||||||
|
switch (facing) {
|
||||||
|
case Facing.LEFT:
|
||||||
|
return Facing.RIGHT;
|
||||||
|
case Facing.RIGHT:
|
||||||
|
return Facing.LEFT;
|
||||||
|
case Facing.UP:
|
||||||
|
return Facing.DOWN;
|
||||||
|
case Facing.DOWN:
|
||||||
|
return Facing.UP;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
private getRandomRoom(value: number, facing: Facing): RoomTemplate {
|
private getRandomRoom(value: number, facing: Facing): RoomTemplate {
|
||||||
let array = this.getRoomArray(facing), weight = this.getRoomWeight(facing);
|
let array = this.getRoomArray(facing), weight = this.getRoomWeight(facing);
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue
Block a user