started tile serializing

This commit is contained in:
thefish 2019-11-10 04:29:59 +03:00
parent f442dc6921
commit 3251d00dac
8 changed files with 155 additions and 51 deletions

44
TODO Normal file
View File

@ -0,0 +1,44 @@
Assets and i18n:
- move tile settings to json, generate from there (part of prefabs)
- prepare all interface entries for i18n
- all texts (terrain, mobs, quests) also in at least 2 languages
ECS & engine:
- implement time queue (how to deal with closures?)
- move all rendering to systems
- try to move input handling to systems
Dungeon and branches:
General:
- river! (dig_bezier)
- erosion (?)
- global map of valley
Prefabs:
- load prefabs
- compose from gens and prefabs
- editor for prefabs
Combat:
- generate skeleton / intesines / muscle / eyes&ears & fingers from templates
- serializable
- config in outer files
- mass
- damage from skill / mass / speed / material density
- no hitpoints! blood is the life source
Items:
- pickup
- drop
- use
Mobs:
basic:
- place mobs
- move mobs
advanced:
- ai
- dijkstra maps
Quest engine:
- look at parsers like URQL etc
- distorted Aschenputtel story / partisans / rapist prince / Grey Mountains

View File

@ -82,10 +82,12 @@ func main() {
controller := ecs.NewController() controller := ecs.NewController()
controller.MapComponentClass("coords", types.Coords{}) controller.MapComponentClass(ecs.CoordsComponent, types.Coords{})
controller.MapComponentClass("appearance", types.Appearance{}) controller.MapComponentClass(ecs.AppearanceComponent, types.Appearance{})
controller.MapComponentClass("mob", mob.Mob{}) controller.MapComponentClass(ecs.MobComponent, mob.Mob{})
controller.MapComponentClass("moveable", movement.Moveable{}) controller.MapComponentClass(ecs.MoveableComponent, movement.Moveable{})
controller.MapComponentClass(ecs.CarriedComponent, movement.Moveable{})
controller.MapComponentClass(ecs.UsableComponent, movement.Moveable{})
moveable := movement.Moveable{ moveable := movement.Moveable{
Controller: controller, Controller: controller,
@ -172,7 +174,7 @@ func main() {
controller.AddComponent(player, &types.Appearance{ controller.AddComponent(player, &types.Appearance{
Glyph: &types.PlainGlyphHolder{"@"}, Glyph: &types.PlainGlyphHolder{"@"},
ColorSet: &types.TileColorSet{ ColorSet: types.TileColorSet{
Fg: &types.PlainColorHolder{255, 255, 255, 255}, Fg: &types.PlainColorHolder{255, 255, 255, 255},
}, },
}) })

View File

@ -1,3 +0,0 @@
- load prefabs
- compose from gens and prefabs
- editor for prefabs

View File

@ -10,7 +10,6 @@ type Tile struct {
Description string `json:"desc"` Description string `json:"desc"`
BlocksPass bool `json:"blocksPass"` BlocksPass bool `json:"blocksPass"`
BlocksSight bool `json:"blocksSight"` BlocksSight bool `json:"blocksSight"`
Colordance bool `json:"colordance"`
Explored bool Explored bool
MustDraw bool MustDraw bool
Visible bool Visible bool
@ -46,7 +45,7 @@ func NewWall() *Tile {
MustDraw: false, MustDraw: false,
Appearance: &Appearance{ Appearance: &Appearance{
Glyph: &PlainGlyphHolder{"#"}, Glyph: &PlainGlyphHolder{"#"},
ColorSet: &TileColorSet{ ColorSet: TileColorSet{
Fg: &PlainColorHolder{255, 130, 110, 150}, Fg: &PlainColorHolder{255, 130, 110, 150},
Bg: &PlainColorHolder{255, 172, 170, 173}, Bg: &PlainColorHolder{255, 172, 170, 173},
DarkFg: &PlainColorHolder{255, 20, 20, 68}, DarkFg: &PlainColorHolder{255, 20, 20, 68},
@ -66,7 +65,7 @@ func NewFloor() *Tile {
MustDraw: false, MustDraw: false,
Appearance: &Appearance{ Appearance: &Appearance{
Glyph: &PlainGlyphHolder{"."}, Glyph: &PlainGlyphHolder{"."},
ColorSet: &TileColorSet{ ColorSet: TileColorSet{
Fg: &PlainColorHolder{255, 220, 220, 250}, Fg: &PlainColorHolder{255, 220, 220, 250},
Bg: &PlainColorHolder{255, 19, 19, 70}, Bg: &PlainColorHolder{255, 19, 19, 70},
DarkFg: &PlainColorHolder{255, 30, 20, 50}, DarkFg: &PlainColorHolder{255, 30, 20, 50},
@ -85,11 +84,10 @@ func NewWaterTile() *Tile {
BlocksSight: false, BlocksSight: false,
Explored: false, Explored: false,
MustDraw: true, //fixme debug MustDraw: true, //fixme debug
Colordance: true,
Appearance: &Appearance{ Appearance: &Appearance{
Glyph: &PlainGlyphHolder{" "}, Glyph: &PlainGlyphHolder{" "},
ColorSet: &TileColorSet{ ColorSet: TileColorSet{
Fg: &PlainColorHolder{255, 220, 220, 250}, Fg: &PlainColorHolder{255, 220, 220, 250},
Bg: &DanceColorHolder{ Bg: &DanceColorHolder{
255, 255,
@ -113,10 +111,9 @@ func NewDeepWaterTile() *Tile {
BlocksSight: false, BlocksSight: false,
Explored: false, Explored: false,
MustDraw: true, //fixme debug MustDraw: true, //fixme debug
Colordance: true,
Appearance: &Appearance{ Appearance: &Appearance{
Glyph: &PlainGlyphHolder{" "}, Glyph: &PlainGlyphHolder{" "},
ColorSet: &TileColorSet{ ColorSet: TileColorSet{
Fg: &PlainColorHolder{255, 220, 220, 250}, Fg: &PlainColorHolder{255, 220, 220, 250},
Bg: &DanceColorHolder{ Bg: &DanceColorHolder{
255, 255,

9
engine/items/carried.go Normal file
View File

@ -0,0 +1,9 @@
package items
import "lab.zaar.be/thefish/alchemyst-go/engine/ecs"
type Carried struct {}
func (c *Carried) Type() string {
return ecs.CarriedComponent
}

10
engine/items/useable.go Normal file
View File

@ -0,0 +1,10 @@
package items
import "lab.zaar.be/thefish/alchemyst-go/engine/ecs"
type Useable struct {}
func (u *Useable) Type() string {
return ecs.UsableComponent
}

View File

@ -1,6 +1,8 @@
package types package types
import ( import (
"bytes"
"fmt"
"github.com/gammazero/deque" "github.com/gammazero/deque"
"lab.zaar.be/thefish/alchemyst-go/engine/ecs" "lab.zaar.be/thefish/alchemyst-go/engine/ecs"
"lab.zaar.be/thefish/alchemyst-go/util" "lab.zaar.be/thefish/alchemyst-go/util"
@ -29,12 +31,12 @@ type DanceColorHolder struct {
B *cdeque B *cdeque
} }
func (chd *DanceColorHolder) GetColor() uint32 { func (dch DanceColorHolder) GetColor() uint32 {
return blt.ColorFromARGB( return blt.ColorFromARGB(
chd.A, dch.A,
chd.R.Next(), dch.R.Next(),
chd.G.Next(), dch.G.Next(),
chd.B.Next(), dch.B.Next(),
) )
} }
@ -45,7 +47,7 @@ type PlainColorHolder struct {
B uint8 B uint8
} }
func (chb *PlainColorHolder) GetColor() uint32 { func (chb PlainColorHolder) GetColor() uint32 {
return blt.ColorFromARGB( return blt.ColorFromARGB(
chb.A, chb.A,
chb.R, chb.R,
@ -55,10 +57,10 @@ func (chb *PlainColorHolder) GetColor() uint32 {
} }
type TileColorSet struct { type TileColorSet struct {
Fg ColorHolder Fg ColorHolder `json:"fg"`
Bg ColorHolder Bg ColorHolder `json:"bg"`
DarkFg ColorHolder DarkFg ColorHolder `json:"darkfg"`
DarkBg ColorHolder DarkBg ColorHolder `json:"darkbg"`
} }
@ -70,13 +72,13 @@ type PlainGlyphHolder struct {
Glyph string Glyph string
} }
func (pch *PlainGlyphHolder) GetGlyph() string { func (pgh PlainGlyphHolder) GetGlyph() string {
return pch.Glyph return pgh.Glyph
} }
type Appearance struct { type Appearance struct {
Glyph GlyphHolder `json:"char"` Glyph GlyphHolder `json:"glyph"`
ColorSet *TileColorSet `json:"colorSet"` ColorSet TileColorSet `json:"colorSet"`
} }
func SingleColorRing(colorValue uint8) *cdeque { func SingleColorRing(colorValue uint8) *cdeque {
@ -108,4 +110,51 @@ func FillColorRing(colorValue uint8, minGlow, maxGlow, step int) *cdeque {
func (app Appearance) Type() string { func (app Appearance) Type() string {
return ecs.AppearanceComponent return ecs.AppearanceComponent
}
func (app *Appearance) MarshalJSON() ([]byte, error) {
buffer := bytes.NewBufferString("{")
//glyph
buffer.WriteString(`"glyph":{`)
switch app.Glyph.(type) {
case PlainGlyphHolder:
buffer.WriteString(fmt.Sprintf(`"type":"plain", "chars":"%s"`, app.Glyph.GetGlyph()))
break
}
//note the comma
buffer.WriteString("},")
//color
buffer.WriteString(`"color":{`)
buffer.WriteString(getColorJson("fg", app.ColorSet.Fg) + ",")
buffer.WriteString(getColorJson("bg", app.ColorSet.Fg) + ",")
buffer.WriteString(getColorJson("darkfg", app.ColorSet.Fg) + ",")
buffer.WriteString(getColorJson("darkbg", app.ColorSet.Fg))
buffer.WriteString("}")
buffer.WriteString("}")
return buffer.Bytes(), nil
}
func (app *Appearance) UnmarshalJSON(buffer []byte) error {
return nil
}
func getColorJson(field string, holder ColorHolder) string {
result := ""
switch holder.(type) {
case PlainColorHolder:
result = fmt.Sprintf(`"plain":[%d,%d,%d,%d]`,
holder.(PlainColorHolder).A,
holder.(PlainColorHolder).R,
holder.(PlainColorHolder).G,
holder.(PlainColorHolder).B,
)
break
case DanceColorHolder:
return "" //fixme!!!
break
}
return fmt.Sprintf(`"%s":%s`, field, result)
} }

View File

@ -1,9 +1,5 @@
package util package util
import (
"reflect"
)
func IntInSlice(needle int, haystack[]int) (exists bool, index int) { func IntInSlice(needle int, haystack[]int) (exists bool, index int) {
exists = false exists = false
index = -1 index = -1
@ -16,21 +12,21 @@ func IntInSlice(needle int, haystack[]int) (exists bool, index int) {
} }
//left here for historical reasons //left here for historical reasons
func InArray(val interface{}, array interface{}) (exists bool, index int) { //func InArray(val interface{}, array interface{}) (exists bool, index int) {
exists = false // exists = false
index = -1 // index = -1
//
switch reflect.TypeOf(array).Kind() { // switch reflect.TypeOf(array).Kind() {
case reflect.Slice: // case reflect.Slice:
s := reflect.ValueOf(array) // s := reflect.ValueOf(array)
//
for i := 0; i < s.Len(); i++ { // for i := 0; i < s.Len(); i++ {
if reflect.DeepEqual(val, s.Index(i).Interface()) == true { // if reflect.DeepEqual(val, s.Index(i).Interface()) == true {
index = i // index = i
exists = true // exists = true
return // return
} // }
} // }
} // }
return // return
} //}