Skip to content

Commit

Permalink
Merge pull request #155 from battlecode/serena/add-intl-maps
Browse files Browse the repository at this point in the history
Add international maps
  • Loading branch information
acrantel authored Jan 29, 2023
2 parents bc24032 + a181b2b commit 609542d
Show file tree
Hide file tree
Showing 19 changed files with 21 additions and 5 deletions.
2 changes: 1 addition & 1 deletion client/visualizer/src/config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -154,7 +154,7 @@ export enum Mode {
export function defaults(supplied?: any): Config {
let year = "2023"
let conf: Config = {
gameVersion: "3.0.2", //TODO: Change this on each release!
gameVersion: "3.0.4", //TODO: Change this on each release!
year: year,
map_extension: 'map'+year.substring(2),
game_extension: 'bc'+year.substring(2),
Expand Down
17 changes: 15 additions & 2 deletions client/visualizer/src/constants.ts
Original file line number Diff line number Diff line change
Expand Up @@ -213,8 +213,21 @@ export const SERVER_MAPS: Map<string, MapType> = new Map<string, MapType>([
["SweetDreams", MapType.SPRINT_2],
["TicTacToe", MapType.SPRINT_2],
["USA", MapType.SPRINT_2],


["Barcode", MapType.INTL_QUALIFYING],
["Contraction", MapType.INTL_QUALIFYING],
["Flower", MapType.INTL_QUALIFYING],
["Grapes", MapType.INTL_QUALIFYING],
["IslandHopping", MapType.INTL_QUALIFYING],
["Marsh", MapType.INTL_QUALIFYING],
["RaceToTheTop", MapType.INTL_QUALIFYING],
["Repetition", MapType.INTL_QUALIFYING],
["River", MapType.INTL_QUALIFYING],
["RockWall", MapType.INTL_QUALIFYING],
["Sakura", MapType.INTL_QUALIFYING],
["SoundWave", MapType.INTL_QUALIFYING],
["ThirtyFive", MapType.INTL_QUALIFYING],
["TimesUp", MapType.INTL_QUALIFYING],
["TreasureMap", MapType.INTL_QUALIFYING],
])

export function bodyTypeToString(bodyType: schema.BodyType) {
Expand Down
2 changes: 1 addition & 1 deletion engine/src/main/battlecode/common/GameConstants.java
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ public class GameConstants {
/**
* The current spec version the server compiles with.
*/
public static final String SPEC_VERSION = "3.0.2";
public static final String SPEC_VERSION = "3.0.4";

// *********************************
// ****** MAP CONSTANTS ************
Expand Down
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
5 changes: 4 additions & 1 deletion specs/specs.md.html
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@

# Formal specification

*This is the formal specification of the Battlecode 2023 game.* Current version: *3.0.2*
*This is the formal specification of the Battlecode 2023 game.* Current version: *3.0.4*

**Welcome to Battlecode 2023: Tempest.**

Expand Down Expand Up @@ -291,6 +291,9 @@

# Appendix: Changelog

- Version 3.0.4 (January 28, 2023)
- International qualifiers map release

- Version 3.0.2 (January 26, 2023)
- Engine Fixes:
- Carriers should now be able to attack using a held anchor
Expand Down

0 comments on commit 609542d

Please sign in to comment.