Skip to content

Commit 7efdb82

Browse files
authored
Must have been the wind port
finally
1 parent 133a693 commit 7efdb82

11 files changed

+200
-0
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,71 @@
1+
#!/bin/bash
2+
# PORTMASTER: must-have-been-the-wind.zip, Must have been the wind.sh
3+
4+
XDG_DATA_HOME=${XDG_DATA_HOME:-$HOME/.local/share}
5+
6+
if [ -d "/opt/system/Tools/PortMaster/" ]; then
7+
controlfolder="/opt/system/Tools/PortMaster"
8+
elif [ -d "/opt/tools/PortMaster/" ]; then
9+
controlfolder="/opt/tools/PortMaster"
10+
elif [ -d "$XDG_DATA_HOME/PortMaster/" ]; then
11+
controlfolder="$XDG_DATA_HOME/PortMaster"
12+
else
13+
controlfolder="/roms/ports/PortMaster"
14+
fi
15+
16+
source $controlfolder/control.txt
17+
18+
[ -f "${controlfolder}/mod_${CFW_NAME}.txt" ] && source "${controlfolder}/mod_${CFW_NAME}.txt"
19+
20+
get_controls
21+
22+
GAMEDIR=/$directory/ports/must-have-been-the-wind/
23+
CONFDIR="$GAMEDIR/conf/"
24+
25+
> "$GAMEDIR/log.txt" && exec > >(tee "$GAMEDIR/log.txt") 2>&1
26+
# Ensure the conf directory exists
27+
mkdir -p "$GAMEDIR/conf"
28+
29+
# Set the XDG environment variables for config & savefiles
30+
export XDG_DATA_HOME="$CONFDIR"
31+
export SDL_GAMECONTROLLERCONFIG="$sdl_controllerconfig"
32+
33+
cd $GAMEDIR
34+
35+
# patch if it hasn't been patched yet
36+
if [ -f "$GAMEDIR/gamedata/MHB_the_wind_linux.pck" ]; then
37+
$controlfolder/xdelta3 -d -s "$GAMEDIR/gamedata/MHB_the_wind_linux.pck" "patch.xdelta" "$GAMEDIR/gamedata/MHBTW_PM.pck"
38+
rm -f "$GAMEDIR/gamedata/MHB_the_wind_linux.pck"
39+
fi
40+
41+
runtime="frt_4.0.4"
42+
if [ ! -f "$controlfolder/libs/${runtime}.squashfs" ]; then
43+
# Check for runtime if not downloaded via PM
44+
if [ ! -f "$controlfolder/harbourmaster" ]; then
45+
echo "This port requires the latest PortMaster to run, please go to https://portmaster.games/ for more info." > /dev/tty0
46+
sleep 5
47+
exit 1
48+
fi
49+
50+
$ESUDO $controlfolder/harbourmaster --quiet --no-check runtime_check "${runtime}.squashfs"
51+
fi
52+
53+
# Setup Godot
54+
godot_dir="$HOME/godot"
55+
godot_file="$controlfolder/libs/${runtime}.squashfs"
56+
$ESUDO mkdir -p "$godot_dir"
57+
$ESUDO umount "$godot_file" || true
58+
$ESUDO mount "$godot_file" "$godot_dir"
59+
PATH="$godot_dir:$PATH"
60+
61+
export FRT_NO_EXIT_SHORTCUTS=FRT_NO_EXIT_SHORTCUTS
62+
63+
$GPTOKEYB "$runtime" -c "must-have-been-the-wind.gptk" &
64+
pm_platform_helper "$runtime"
65+
"$runtime" $GODOT_OPTS --main-pack "gamedata/MHBTW_PM.pck"
66+
67+
68+
if [[ "$PM_CAN_MOUNT" != "N" ]]; then
69+
$ESUDO umount "$godot_dir"
70+
fi
71+
pm_finish
+31
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
## Notes
2+
3+
**Thanks for Untamed Arcade for developing this lovely game!**
4+
5+
A survival game, but you're the environment
6+
7+
Does it feel like the world is against you? Not today!
8+
Today you're the world, and you're against an unsuspecting player.
9+
10+
Puzzle yourself through nature-filled islands to become the ultimate survival environment - as harsh as possible!
11+
12+
Made in 48 hours for the GMTK-Jam 2023
13+
14+
15+
**Mechanic explanation (if you're confused):**
16+
The sound from different events (trees falling, fire spreading) alerts the player to run away
17+
if it's on the same grid line horizontally or vertically, whether there's an obstacle in the way or not.
18+
Another way to imagine it is a + shape.
19+
20+
## Controls
21+
22+
| Button | Action |
23+
|--|--|
24+
|Left|Move left|
25+
|Right|Move right|
26+
|Up|Move up|
27+
|Down|Move Down|
28+
|A|Select|
29+
|B|Restart level|
30+
31+
110 KB
Loading
+26
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<gameList>
3+
<game>
4+
<path>./Must have been the wind.sh</path>
5+
<name>Must have been the wind</name>
6+
<desc>A survival game, but you're the environment
7+
8+
Does it feel like the world is against you? Not today!
9+
Today you're the world, and you're against an unsuspecting player.
10+
11+
Puzzle yourself through nature-filled islands to become the ultimate survival environment - as harsh as possible!
12+
13+
Made in 48 hours for the GMTK-Jam 2023
14+
15+
16+
Mechanic explanation (if you're confused):
17+
The sound from different events (trees falling, fire spreading) alerts the player to run away
18+
if it's on the same grid line horizontally or vertically, whether there's an obstacle in the way or not.
19+
Another way to imagine it is a + shape.</desc>
20+
<releasedate>20230716T000000</releasedate>
21+
<developer>Untamed Arcade</developer>
22+
<publisher>Untamed Arcade</publisher>
23+
<genre>Puzzle</genre>
24+
<image>./must-have-been-the-wind/cover.png</image>
25+
</game>
26+
</gameList>
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
The MIT License (MIT)
2+
3+
Copyright (c) 2017-2023 Emanuele Fornara
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy
6+
of this software and associated documentation files (the "Software"), to deal
7+
in the Software without restriction, including without limitation the rights
8+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
copies of the Software, and to permit persons to whom the Software is
10+
furnished to do so, subject to the following conditions:
11+
12+
The above copyright notice and this permission notice shall be included in all
13+
copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21+
SOFTWARE.
Loading
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
start = esc
2+
3+
a = space
4+
b = r
5+
6+
up = up
7+
down = down
8+
left = left
9+
right = right
10+
left_analog_up = up
11+
left_analog_down = down
12+
left_analog_left = left
13+
left_analog_right = right
Binary file not shown.
+38
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
{
2+
"version": 4,
3+
"name": "must-have-been-the-wind.zip",
4+
"items": [
5+
"Must have been the wind",
6+
"must-have-been-the-wind"
7+
],
8+
"items_opt": [],
9+
"attr": {
10+
"title": "Must have been the wind",
11+
"porter": [
12+
"Doronimmo"
13+
],
14+
"desc": "A survival game, but you're the environment\n\nDoes it feel like the world is against you? Not today!\nToday you're the world, and you're against an unsuspecting player.\n\nPuzzle yourself through nature-filled islands to become the ultimate survival environment - as harsh as possible!\n\nMade in 48 hours for the GMTK-Jam 2023\n\n\nMechanic explanation (if you're confused):\nThe sound from different events (trees falling, fire spreading) alerts the player to run away\nif it's on the same grid line horizontally or vertically, whether there's an obstacle in the way or not.\nAnother way to imagine it is a + shape.",
15+
"desc_md": null,
16+
"inst": "Ready to run! \n",
17+
"inst_md": null,
18+
"genres": [
19+
"puzzle"
20+
],
21+
"image": null,
22+
"rtr": true,
23+
"exp": false,
24+
"runtime": [
25+
"frt_4.0.4.squashfs"
26+
],
27+
"store": [
28+
{
29+
"name": "itch io",
30+
"url": "https://untamed-arcade.itch.io/must-have-been-the-wind"
31+
}
32+
],
33+
"availability": "full",
34+
"reqs": [],
35+
"arch": [],
36+
"min_glibc": ""
37+
}
38+
}
65 KB
Loading

0 commit comments

Comments
 (0)