upd windows instructions
This commit is contained in:
parent
cb7718860a
commit
14c8cf80be
@ -9,6 +9,8 @@
|
|||||||
#
|
#
|
||||||
# create there a symlink to BearLibTerminal.dll
|
# create there a symlink to BearLibTerminal.dll
|
||||||
# $ cd /path/to/mingw32/dlls && sudo ln -s /path/to/BearLibTerminal.dll .
|
# $ cd /path/to/mingw32/dlls && sudo ln -s /path/to/BearLibTerminal.dll .
|
||||||
|
# Ususally you must place symlink to where mingw stores windows dlls, ie
|
||||||
|
# /usr/x86_64-w64-mingw32/lib
|
||||||
|
|
||||||
|
|
||||||
# the build command
|
# the build command
|
||||||
|
@ -10,11 +10,11 @@ import (
|
|||||||
)
|
)
|
||||||
|
|
||||||
type GameScreen struct {
|
type GameScreen struct {
|
||||||
mw *mainwindow.MainWindow
|
mw *mainwindow.MainWindow
|
||||||
state *gamestate.GameState
|
state *gamestate.GameState
|
||||||
vp *mainwindow.ViewPort
|
vp *mainwindow.ViewPort
|
||||||
controller *ecs.Controller
|
controller *ecs.Controller
|
||||||
scm *types.ScreenManager
|
scm *types.ScreenManager
|
||||||
}
|
}
|
||||||
|
|
||||||
func NewGameScreen(mw *mainwindow.MainWindow, state *gamestate.GameState, viewPort *mainwindow.ViewPort, controller *ecs.Controller, scm *types.ScreenManager) *GameScreen {
|
func NewGameScreen(mw *mainwindow.MainWindow, state *gamestate.GameState, viewPort *mainwindow.ViewPort, controller *ecs.Controller, scm *types.ScreenManager) *GameScreen {
|
||||||
@ -26,12 +26,12 @@ func NewGameScreen(mw *mainwindow.MainWindow, state *gamestate.GameState, viewPo
|
|||||||
|
|
||||||
func (ts *GameScreen) UseEcs() bool { return true }
|
func (ts *GameScreen) UseEcs() bool { return true }
|
||||||
func (ts *GameScreen) Enter() {
|
func (ts *GameScreen) Enter() {
|
||||||
ts.mw.GetLayer("overlay").ClearArea(0, ts.mw.H - 3, 30, 3)
|
ts.mw.GetLayer("overlay").ClearArea(0, ts.mw.H-3, 30, 3)
|
||||||
ts.mw.GetLayer("overlay").WithColor("#77777777").
|
ts.mw.GetLayer("overlay").WithColor("#77777777").
|
||||||
Print(1, ts.mw.H - 2, "Press [color=white]?[/color] for help")
|
Print(1, ts.mw.H-2, "Press [color=white]?[/color] for help")
|
||||||
}
|
}
|
||||||
func (ts *GameScreen) Exit() {
|
func (ts *GameScreen) Exit() {
|
||||||
ts.mw.GetLayer("base").ClearArea(1, ts.mw.H -2, 30, 1)
|
ts.mw.GetLayer("base").ClearArea(1, ts.mw.H-2, 30, 1)
|
||||||
//remove what we dont need
|
//remove what we dont need
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user