gigabox for perf testing purposes

This commit is contained in:
FloPinguin
2026-04-20 21:48:07 +02:00
parent 4e04bed44c
commit 00e85b0dc3
11 changed files with 84 additions and 1 deletions
@@ -0,0 +1,30 @@
{
"name": "GigaBox",
"nations": [
{
"name": "The Top Left",
"flag": "dm",
"coordinates": [40, 38]
},
{
"name": "The Bottom Left",
"flag": "dm",
"coordinates": [40, 2444]
},
{
"name": "The Top Right",
"flag": "dm",
"coordinates": [3148, 52]
},
{
"name": "The Bottom Right",
"flag": "dm",
"coordinates": [3104, 2416]
},
{
"name": "The Center of All",
"flag": "aq",
"coordinates": [1548, 1183]
}
]
}
+1
View File
@@ -92,6 +92,7 @@ var maps = []struct {
{Name: "conakry"},
{Name: "caucasus"},
{Name: "beringsea"},
{Name: "gigabox"},
{Name: "big_plains", IsTest: true},
{Name: "half_land_half_ocean", IsTest: true},
{Name: "ocean_and_land", IsTest: true},
+2 -1
View File
@@ -362,7 +362,8 @@
"luna": "Luna",
"conakry": "Conakry",
"caucasus": "Caucasus",
"beringsea": "Bering Sea"
"beringsea": "Bering Sea",
"gigabox": "GigaBox"
},
"map_categories": {
"featured": "Featured",
+45
View File
@@ -0,0 +1,45 @@
{
"name": "GigaBox",
"nations": [
{
"name": "The Top Left",
"flag": "dm",
"coordinates": [40, 38]
},
{
"name": "The Bottom Left",
"flag": "dm",
"coordinates": [40, 2444]
},
{
"name": "The Top Right",
"flag": "dm",
"coordinates": [3148, 52]
},
{
"name": "The Bottom Right",
"flag": "dm",
"coordinates": [3104, 2416]
},
{
"name": "The Center of All",
"flag": "aq",
"coordinates": [1548, 1183]
}
],
"map": {
"width": 3224,
"height": 2500,
"num_land_tiles": 8060000
},
"map4x": {
"width": 1612,
"height": 1250,
"num_land_tiles": 2015000
},
"map16x": {
"width": 806,
"height": 625,
"num_land_tiles": 503750
}
}
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
Binary file not shown.

After

Width:  |  Height:  |  Size: 1.5 KiB

+2
View File
@@ -152,6 +152,7 @@ export enum GameMapType {
Conakry = "Conakry",
Caucasus = "Caucasus",
BeringSea = "Bering Sea",
GigaBox = "GigaBox",
}
export type GameMapName = keyof typeof GameMapType;
@@ -231,6 +232,7 @@ export const mapCategories: Record<string, GameMapType[]> = {
GameMapType.Didier,
GameMapType.DidierFrance,
GameMapType.Sierpinski,
GameMapType.GigaBox,
],
tournament: [
GameMapType.Tourney1,
+1
View File
@@ -45,6 +45,7 @@ const frequency: Partial<Record<GameMapName, number>> = {
FaroeIslands: 4,
FourIslands: 4,
GatewayToTheAtlantic: 5,
GigaBox: 3,
GulfOfStLawrence: 4,
Halkidiki: 4,
Iceland: 4,