Skip to content

Commit 0e7c336

Browse files
committed
add missing gamemap entries for BM
1 parent 21a93db commit 0e7c336

File tree

7 files changed

+17
-3
lines changed

7 files changed

+17
-3
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,9 @@ Tools provided:
1515
* `trumsg` for most msg files
1616
* `trumsg --mission` for `mission.msg`
1717

18-
Supports **all danmaku titles TH06–TH185.** That is:
18+
Supports **all danmaku titles TH06–TH185.** <!-- NEWHU: 185 --> That is:
1919

20-
> TH06 (EoSD), TH07 (PCB), TH08 (IN), TH09 (PoFV), TH09.5 (StB), TH10 (MoF), TH11 (SA), TH12 (UFO), TH12.3 (GFW), TH12.5 (DS), TH13 (TD), TH14 (DDC), TH14.3 (ISC), TH15 (LoLK), TH16 (HSiFS), TH16.5 (VD), TH17 (WBaWC), TH18 (UM), TH18.5 (BM)
20+
> TH06 (EoSD), TH07 (PCB), TH08 (IN), TH09 (PoFV), TH09.5 (StB), TH10 (MoF), TH11 (SA), TH12 (UFO), TH12.3 (GFW), TH12.5 (DS), TH13 (TD), TH14 (DDC), TH14.3 (ISC), TH15 (LoLK), TH16 (HSiFS), TH16.5 (VD), TH17 (WBaWC), TH18 (UM), TH18.5 (BM) <!-- NEWHU: 185 -->
2121
>
2222
> Uwabami Breakers is also supported (use `-g alcostg` or `-g 103`)
2323

map/any.anmm

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,3 +19,5 @@
1919
165 v8.anmm
2020
17 v8.anmm
2121
18 v8.anmm
22+
185 v8.anmm
23+
# NEWHU: 185

map/any.eclm

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,3 +18,6 @@
1818
16 debug.eclm
1919
165 debug.eclm
2020
17 debug.eclm
21+
18 debug.eclm
22+
185 debug.eclm
23+
# NEWHU: 185

map/any.msgm

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,3 +19,5 @@
1919
165 th11-scene.msgm
2020
17 th11.msgm
2121
18 th11.msgm
22+
185 th11.msgm
23+
# NEWHU: 185

map/any.stdm

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,3 +19,5 @@
1919
165 th14.stdm
2020
17 th14.stdm
2121
18 th14.stdm
22+
185 th14.stdm
23+
# NEWHU: 185

src/game.rs

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,11 @@ use crate::diagnostic::Diagnostic;
66
pub enum Game {
77
Th06, Th07, Th08, Th09, Th095, Th10, Alcostg, Th11, Th12,
88
Th125, Th128, Th13, Th14, Th143, Th15, Th16, Th165, Th17, Th18, Th185,
9+
// NEWHU: 185
910
}
10-
macro_rules! max_game_str { () => { "th185" }; }
11+
macro_rules! max_game_str { () => {
12+
"th185" // NEWHU: 185
13+
}; }
1114

1215
impl std::str::FromStr for Game {
1316
type Err = Diagnostic;
@@ -47,6 +50,7 @@ impl std::str::FromStr for Game {
4750
17 => Ok(Game::Th17),
4851
18 => Ok(Game::Th18),
4952
185 => Ok(Game::Th185),
53+
// NEWHU: 185
5054
_ => Err(unknown_game()),
5155
}
5256
}

update-dumps.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -196,6 +196,7 @@ def report(
196196
'17': 'st0*.msg',
197197
'18': 'st0*.msg',
198198
'185': '*.msg',
199+
# NEWHU: 185
199200
}
200201

201202
def get_format(game, path):

0 commit comments

Comments
 (0)