diff --git a/config.json b/config.json new file mode 100644 index 0000000..9e0a9d3 --- /dev/null +++ b/config.json @@ -0,0 +1,4 @@ +{ + "title" : "Test Go+BLT App", + "fpsLimit" : 60 +} \ No newline at end of file diff --git a/fonts/LiberationMono-Bold.ttf b/fonts/LiberationMono-Bold.ttf new file mode 100644 index 0000000..d21a817 Binary files /dev/null and b/fonts/LiberationMono-Bold.ttf differ diff --git a/fonts/LiberationMono-BoldItalic.ttf b/fonts/LiberationMono-BoldItalic.ttf new file mode 100644 index 0000000..cf08881 Binary files /dev/null and b/fonts/LiberationMono-BoldItalic.ttf differ diff --git a/fonts/LiberationMono-Italic.ttf b/fonts/LiberationMono-Italic.ttf new file mode 100644 index 0000000..c17a1a0 Binary files /dev/null and b/fonts/LiberationMono-Italic.ttf differ diff --git a/fonts/LiberationMono-Regular.ttf b/fonts/LiberationMono-Regular.ttf new file mode 100644 index 0000000..690e112 Binary files /dev/null and b/fonts/LiberationMono-Regular.ttf differ diff --git a/fonts/Monaco-Linux.ttf b/fonts/Monaco-Linux.ttf new file mode 100644 index 0000000..99a7f96 Binary files /dev/null and b/fonts/Monaco-Linux.ttf differ diff --git a/fonts/UbuntuMono-B.ttf b/fonts/UbuntuMono-B.ttf new file mode 100644 index 0000000..7bd6665 Binary files /dev/null and b/fonts/UbuntuMono-B.ttf differ diff --git a/fonts/UbuntuMono-BI.ttf b/fonts/UbuntuMono-BI.ttf new file mode 100644 index 0000000..6c5b8ba Binary files /dev/null and b/fonts/UbuntuMono-BI.ttf differ diff --git a/fonts/UbuntuMono-R.ttf b/fonts/UbuntuMono-R.ttf new file mode 100644 index 0000000..fdd309d Binary files /dev/null and b/fonts/UbuntuMono-R.ttf differ diff --git a/fonts/UbuntuMono-RI.ttf b/fonts/UbuntuMono-RI.ttf new file mode 100644 index 0000000..18f81a2 Binary files /dev/null and b/fonts/UbuntuMono-RI.ttf differ diff --git a/main.go b/main.go index c5e57e6..e34b034 100644 --- a/main.go +++ b/main.go @@ -5,28 +5,61 @@ import ( blt "bearlibterminal" "ui" "util" + "flag" + "io/ioutil" + "encoding/json" + "game" ) +var version = "0.0.0" + func main() { log.Println("Starting...") + + var configArg string = "./config.json" + flag.StringVar(&configArg, "cfg", configArg, "config file location") + flag.Parse() + + // get config + data, err := ioutil.ReadFile(configArg) + if err != nil { + log.Fatalf("quoteCompressor can't read config at %s", configArg) + } + config := new(util.Config) + err = json.Unmarshal(data, config) + if err != nil { + log.Fatalln(err) + } + + game.Init(config) + blt.Open() + //blt.Set("window: size=80x25, title="+config.Title+" v"+string(version)+"; font: ./fonts/Monaco-Linux.ttf, size=10") + blt.Set("window: size=100x47, title="+config.Title+" v"+string(version)+"; font: ./fonts/UbuntuMono-R.ttf, size=10;") defer blt.Close() - blt.Print(1, 1, "Hello, world!") + blt.Print(1, 1, "Hello, [font=italic]world[/font]!") + blt.PrintExt(1, 6, 5, 4, 1, "Lorem ipsum dolor sit amet") blt.Refresh() + + mainLoop() +} + +func mainLoop () { + var exit = false for !exit { var key, keycode = ui.ReadKey(); - if (key != "") { + if key != "" { blt.Print( 1, 3, "Key: ") } blt.Print( 1, 3, "Key: " + key ) exit, _ = util.InArray(keycode, []int{blt.TK_CLOSE, blt.TK_ESCAPE}) if (!exit) { - exit = (key == "Ctrl+q") + exit = key == "Ctrl+q" } blt.Refresh() } log.Println("Closing...") -} +} \ No newline at end of file diff --git a/src/game/level.go b/src/game/level.go new file mode 100644 index 0000000..75fca0c --- /dev/null +++ b/src/game/level.go @@ -0,0 +1,69 @@ +package game + +type char byte +type MapColor [3]int + +type Level struct { + Branch string + Exits []string + Rooms []string + Map LevelMap + Mobs []*Mob +} + + +func (level *Level) Remove (mob *Mob) bool { + return DeleteFromMobSlice(level.Mobs, mob) +} + +type LevelMap struct { + SizeX int + SizeY int + Geometry [][]Tile +} + +type Tile struct { + Glyph *TileGlyph + Explored bool + IsSafe bool + MustDraw bool +} + +// Graphical representation of tile's glyph +type TileGlyph struct { + Char char + FgColor MapColor + BgColor MapColor + DarkFgColor MapColor + DarkBgColor MapColor + ColorDance bool + BlocksPass bool + BlocksSight bool + WaterTight bool + GasTight bool +} + + +func DeleteFromMobSlice (slice []*Mob, item *Mob) bool { + for i := range slice { + if slice[i].name == item.name && slice[i].id == item.id { + copy(slice[i:], slice[i+1:]) + slice[len(slice)-1] = nil + slice = slice[:len(slice)-1] + return true + } + } + return false +} + +func DeleteFromItemSlice (slice []*Item, item *Item) bool { + for i := range slice { + if slice[i].name == item.name && slice[i].id == item.id { + copy(slice[i:], slice[i+1:]) + slice[len(slice)-1] = nil + slice = slice[:len(slice)-1] + return true + } + } + return false +} \ No newline at end of file diff --git a/src/game/mob.go b/src/game/mob.go new file mode 100644 index 0000000..8a65cb4 --- /dev/null +++ b/src/game/mob.go @@ -0,0 +1,57 @@ +package game + +type Identifiable struct { + id int + name string +} + +func (item *Identifiable) getId() int { + return item.id +} + +func (item *Identifiable) getName() string { + return item.name +} + +//Really this is MapObject, but htis name is ugly +type Mob struct { + Identifiable + Char char + X int + Y int + Name string + Color MapColor + BgColor MapColor + BlocksPass bool +} + +type Monster struct { + *Mob + Waypoints [][2]int + //*AiInstance + //*Fighter + BackPack MonsterInventory + Size int + Weight int +} + +type MonsterInventory struct { + MaxSize int + MaxWeight float32 + Content []*Item +} + +type Item struct { + *Mob + Weight float32 +} + +func (me Item) Pickup(carrier *Monster) bool { + carrier.BackPack.Content = append(carrier.BackPack.Content, &me) + return State.Level.Remove(me.Mob) +} + +func (me Item) Drop(carrier *Monster) bool { + State.Level.Mobs = append(State.Level.Mobs, me.Mob) + return DeleteFromItemSlice(carrier.BackPack.Content, &me) +} \ No newline at end of file diff --git a/src/game/state.go b/src/game/state.go new file mode 100644 index 0000000..227d72a --- /dev/null +++ b/src/game/state.go @@ -0,0 +1,32 @@ +package game + +import "util" + +type gameState struct { + fpsLimit int + fpsTicker int + turnCount int + isWizard bool + //player Player + debugMode bool + debugAi bool + Level Level +} + +var State gameState + +func Init(config *util.Config) *gameState { + State := gameState{ + fpsLimit: config.FpsLimit, + fpsTicker: 0, + turnCount: 0, + isWizard: false, + debugMode: true, + debugAi: true} + + return &State +} + +func GetState() *gameState { + return &State +} \ No newline at end of file diff --git a/src/util/util.go b/src/util/util.go index 4715af2..eb32eb9 100644 --- a/src/util/util.go +++ b/src/util/util.go @@ -4,6 +4,12 @@ import ( "reflect" ) +type Config struct { + Title string `json:"title"` + FpsLimit int `json:"fpsLimit, omitempty" validate:"required"` +} + + func InArray(val interface{}, array interface{}) (exists bool, index int) { exists = false index = -1