Upload data/ folder

This commit is contained in:
linyiLYi 2023-04-15 23:09:56 +08:00
parent ea8517f0ad
commit 776b8a3022
5 changed files with 82 additions and 1 deletions

2
.gitignore vendored
View File

@ -21,7 +21,7 @@ images/
!/main/street_fighter_custom_wrapper.py
# Game Data
/data/
/data/*
!/data/Champion.Level12.RyuVsBison.state
!/data/data.json
!/data/metadata.json

Binary file not shown.

60
data/data.json Normal file
View File

@ -0,0 +1,60 @@
{
"info": {
"enemy_character": {
"address": 16745563,
"type": "|u1"
},
"agent_hp": {
"address": 16744514,
"type": ">i2"
},
"agent_x": {
"address": 16744454,
"type": ">u2"
},
"agent_y": {
"address": 16744458,
"type": ">u2"
},
"enemy_hp": {
"address": 16745154,
"type": ">i2"
},
"enemy_x": {
"address": 16745094,
"type": ">u2"
},
"enemy_y": {
"address": 16745098,
"type": ">u2"
},
"score": {
"address": 16744936,
"type": ">d4"
},
"agent_victories": {
"address": 16744922,
"type": "|u1"
},
"enemy_victories": {
"address": 16745559,
"type": ">u4"
},
"round_countdown": {
"address": 16750378,
"type": ">u2"
},
"reset_countdown": {
"address": 16744917,
"type": "|u1"
},
"agent_status": {
"address": 16744450,
"type": ">u2"
},
"enemy_status": {
"address": 16745090,
"type": ">u2"
}
}
}

3
data/metadata.json Normal file
View File

@ -0,0 +1,3 @@
{
"default_state": "Champion.Level1.RyuVsGuile"
}

18
data/scenario.json Normal file
View File

@ -0,0 +1,18 @@
{
"done": {
"variables": {
"reset_countdown": {
"op": "equal",
"reference": 10
}
}
},
"reward": {
"variables": {
"score": {
"reward": 1.0
}
}
},
"crop": [0, 16, 256, 200]
}