Initial commit

This commit is contained in:
Anry Das
2025-10-26 17:46:25 +02:00
commit 742357af7b
10 changed files with 1289 additions and 0 deletions

75
configs/blocks_000.json Normal file
View File

@@ -0,0 +1,75 @@
{
"ALL_BLOCKS": {
"__type__": "EnumClass",
"name": "BlockType",
"members": {
"O": {
"name": "Square",
"color": [255, 255, 0],
"min_score": 0,
"shapes": [
[[1,1],[1,1]]
]
},
"I": {
"name": "Line",
"color": [0, 255, 255],
"min_score": 0,
"shapes": [
[[1,1,1,1]],[[1],[1],[1],[1]]
]
},
"L": {
"name": "L-Shape",
"color": [255, 0, 255],
"min_score": 0,
"shapes": [
[[1, 0], [1, 0], [1, 1]],
[[1, 1, 1], [1, 0, 0]],
[[1, 1], [0, 1], [0, 1]],
[[0, 0, 1], [1, 1, 1]]
]
},
"J": {
"name": "J-Shape",
"color": [0, 0, 255],
"min_score": 900,
"shapes": [
[[0, 1], [0, 1], [1, 1]],
[[1, 0, 0], [1, 1, 1]],
[[1, 1], [1, 0], [1, 0]],
[[1, 1, 1], [0, 0, 1]]
]
},
"S": {
"name": "S-Shape",
"color": [0, 255, 0],
"min_score": 1000,
"shapes": [
[[0, 1, 1], [1, 1, 0]],
[[1, 0], [1, 1], [0, 1]]
]
},
"Z": {
"name": "Z-Shape",
"color": [255, 0, 0],
"min_score": 2500,
"shapes": [
[[1, 1, 0], [0, 1, 1]],
[[0, 1], [1, 1], [1, 0]]
]
},
"T": {
"name": "T-Shape",
"color": [255, 255, 255],
"min_score": 2500,
"shapes": [
[[1, 1, 1], [0, 1, 0]],
[[1, 0], [1, 1], [1, 0]],
[[0, 1, 0], [1, 1, 1]],
[[0, 1], [1, 1], [0, 1]]
]
}
}
}
}

View File

@@ -0,0 +1,49 @@
{
"ADDITIONAL_BLOCKS": {
"__type__": "EnumClass",
"name": "BlockType",
"members": {
"U": {
"name": "U-Shape",
"color": [135, 135, 135],
"min_score": 4500,
"shapes": [
[[1, 0, 1], [1, 1, 1]],
[[1, 1], [1, 0], [1, 1]],
[[1, 1, 1], [1, 0, 1]],
[[1, 1], [0, 1], [1, 1]]
]
},
"T1": {
"name": "T-Shape+",
"color": [0, 200, 255],
"min_score": 10000,
"shapes": [
[[1, 1, 1], [0, 1, 0], [0, 1, 0]],
[[0, 0, 1], [1, 1, 1], [0, 0, 1]],
[[0, 1, 0], [0, 1, 0], [1, 1, 1]],
[[1, 0, 0], [1, 1, 1], [1, 0, 0]]
]
},
"U1": {
"name": "U-Shape+",
"color": [255, 150, 0],
"min_score": 10000,
"shapes": [
[[1, 1, 1], [1, 0, 1], [1, 0, 1]],
[[1, 1, 1], [1, 0, 0], [1, 1, 1]],
[[1, 0, 1], [1, 0, 1], [1, 1, 1]],
[[1, 1, 1], [0, 0, 1], [1, 1, 1]]
]
},
"X": {
"name": "X-Shape",
"color": [50, 150, 100],
"min_score": 15000,
"shapes": [
[[0, 1, 0], [1, 1, 1], [0, 1, 0]]
]
}
}
}
}

70
configs/config_000.json Normal file
View File

@@ -0,0 +1,70 @@
{
"CONFIG": {
"keys": {
"left": {
"__type__": "PygameKey",
"name": "K_LEFT"
},
"right": {
"__type__": "PygameKey",
"name": "K_RIGHT"
},
"rotate": {
"__type__": "PygameKey",
"name": "K_UP"
},
"drop": {
"__type__": "PygameKey",
"name": "K_DOWN"
},
"pause": {
"__type__": "PygameKey",
"name": "K_p"
},
"restart": {
"__type__": "PygameKey",
"name": "K_r"
},
"exit": {
"__type__": "PygameKey",
"name": "K_ESCAPE"
}
},
"controls_text": {
"__type__": "list",
"items": [
"Controls:",
"Left/Right Move",
"Up - Rotate",
"Dn - Drop",
"P - Pause",
"R - Restart",
"ESC - Exit"
]
},
"colors": {
"background": {
"__type__": "tuple",
"items": [20, 20, 40]
},
"field": {
"__type__": "tuple",
"items": [30, 30, 60]
},
"border": {
"__type__": "tuple",
"items": [100, 100, 150]
},
"text": {
"__type__": "tuple",
"items": [255, 255, 255]
},
"game_over": {
"__type__": "tuple",
"items": [255, 0, 0]
}
},
"store_width": 10,
"block_size": 30
}
}