forked from AbleOS/ableos
sdoom cleanup work
This commit is contained in:
parent
cb68df6a7f
commit
91df131850
sysdata
|
@ -5,14 +5,8 @@ stn := @use("stn");
|
||||||
.{log} := stn;
|
.{log} := stn;
|
||||||
.{Vec2} := stn.math
|
.{Vec2} := stn.math
|
||||||
|
|
||||||
Player := struct {
|
player := @use("player.hb");
|
||||||
x: i8,
|
.{Player} := player;
|
||||||
y: i8,
|
|
||||||
|
|
||||||
$new := fn(x: i8, y: i8): Self {
|
|
||||||
return Self.(x, y)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
GameState := struct {
|
GameState := struct {
|
||||||
player: Player,
|
player: Player,
|
||||||
|
|
|
@ -0,0 +1,9 @@
|
||||||
|
|
||||||
|
Player := struct {
|
||||||
|
x: i8,
|
||||||
|
y: i8,
|
||||||
|
|
||||||
|
$new := fn(x: i8, y: i8): Self {
|
||||||
|
return Self.(x, y)
|
||||||
|
}
|
||||||
|
}
|
|
@ -23,14 +23,14 @@ resolution = "1024x768x24"
|
||||||
|
|
||||||
[boot.limine.ableos.modules]
|
[boot.limine.ableos.modules]
|
||||||
|
|
||||||
[boot.limine.ableos.modules.render_example]
|
# [boot.limine.ableos.modules.render_example]
|
||||||
path = "boot:///render_example.hbf"
|
# path = "boot:///render_example.hbf"
|
||||||
|
|
||||||
# [boot.limine.ableos.modules.sunset_server]
|
[boot.limine.ableos.modules.sunset_server]
|
||||||
# path = "boot:///sunset_server.hbf"
|
path = "boot:///sunset_server.hbf"
|
||||||
|
|
||||||
[boot.limine.ableos.modules.ps2_mouse_driver]
|
# [boot.limine.ableos.modules.ps2_mouse_driver]
|
||||||
path = "boot:///ps2_mouse_driver.hbf"
|
# path = "boot:///ps2_mouse_driver.hbf"
|
||||||
|
|
||||||
# [boot.limine.ableos.modules.ps2_keyboard_driver]
|
# [boot.limine.ableos.modules.ps2_keyboard_driver]
|
||||||
# path = "boot:///ps2_keyboard_driver.hbf"
|
# path = "boot:///ps2_keyboard_driver.hbf"
|
||||||
|
@ -38,11 +38,11 @@ path = "boot:///ps2_mouse_driver.hbf"
|
||||||
# [boot.limine.ableos.modules.ps2_driver]
|
# [boot.limine.ableos.modules.ps2_driver]
|
||||||
# path = "boot:///ps2_driver.hbf"
|
# path = "boot:///ps2_driver.hbf"
|
||||||
|
|
||||||
# [boot.limine.ableos.modules.sunset_client]
|
[boot.limine.ableos.modules.sunset_client]
|
||||||
# path = "boot:///sunset_client.hbf"
|
path = "boot:///sunset_client.hbf"
|
||||||
|
|
||||||
# [boot.limine.ableos.modules.ablefetch]
|
[boot.limine.ableos.modules.sdoom]
|
||||||
# path = "boot:///ablefetch.hbf"
|
path = "boot:///sdoom.hbf"
|
||||||
|
|
||||||
# [boot.limine.ableos.modules.diskio_driver]
|
# [boot.limine.ableos.modules.diskio_driver]
|
||||||
# path = "boot:///diskio_driver.hbf"
|
# path = "boot:///diskio_driver.hbf"
|
||||||
|
|
Loading…
Reference in a new issue