From 62f45b920f515d0c5ac4bb66bfefbd4dfd501aa6 Mon Sep 17 00:00:00 2001 From: thefish Date: Fri, 15 Nov 2019 21:24:42 +0300 Subject: [PATCH] items --- TODO | 22 +++++++----- engine/ecs/component.go | 1 + engine/ecs/util.go | 15 +++++++++ engine/items/ammo.go | 2 +- engine/items/armor.go | 2 +- engine/items/backpack.go | 33 ++++++++++++++++++ engine/items/carried.go | 73 ++++++++++++++++++++++++++++++++++++---- engine/items/common.go | 9 +++++ engine/items/ranged.go | 2 +- engine/items/useable.go | 2 +- engine/items/wearable.go | 2 +- engine/types/coords.go | 2 +- 12 files changed, 144 insertions(+), 21 deletions(-) create mode 100644 engine/items/backpack.go create mode 100644 engine/items/common.go diff --git a/TODO b/TODO index 8e5a22e..e686d3c 100644 --- a/TODO +++ b/TODO @@ -16,16 +16,22 @@ Basics: - ai - dijkstra maps Tech: - - fix connector position - 1 tile inside - + + fix connector position + - xecutors fov algo + - M.Kitsch fov algo + - milazzo fov algo + - naive bresenham algo Assets and i18n: - - move tile settings to json, generate from there (part of prefabs) + move tile settings to json: + + tile export + - tile import - 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?) (?) github.com/thefish/scheduleq - get rid od time.Now inside + - systems message queue + - implement timeQueue (how to deal with closures?) (?) github.com/thefish/scheduleq - get rid od time.Now inside - move all rendering to systems - try to move input handling to systems @@ -47,14 +53,12 @@ Dungeon and branches: Combat: - generate skeleton / intesines / muscle / eyes&ears & fingers from templates - serializable - - config in outer files + - config in json files - mass - damage from skill / mass / speed / material density - no hitpoints! blood is the life source - - + - pain is measure of nervous system load, lose conscience if its aboe threshold Quest engine: - look at parsers like URQL etc - - distorted Aschenputtel story / partisans / rapist prince / Grey Mountains - + - distorted Aschenputtel story / partisans / rapist prince / Grey Mountains \ No newline at end of file diff --git a/engine/ecs/component.go b/engine/ecs/component.go index 77c5ab3..f8c6119 100644 --- a/engine/ecs/component.go +++ b/engine/ecs/component.go @@ -13,6 +13,7 @@ const ArmsComponent = "arms" const RangedComponent = "ranged" const AmmoComponent = "ammo" const ArmorComponent = "armor" +const BackpackComponent = "backpack" type Component interface { Type() string diff --git a/engine/ecs/util.go b/engine/ecs/util.go index ca22b66..bd481b0 100644 --- a/engine/ecs/util.go +++ b/engine/ecs/util.go @@ -21,3 +21,18 @@ func TypeInSlice(a string, list []string) bool { } return false } + +func DeleteFromEntitySlice(haystack []Entity, needle Entity) ([]Entity, Entity) { + var excluded Entity + for i, _ := range haystack { + if haystack[i] == needle { + excluded = haystack[i] + if len(haystack) - 1 > i { + haystack = append(haystack[:i], haystack[i+1:] ...) + } else { + haystack = haystack[:i] + } + } + } + return haystack, excluded +} \ No newline at end of file diff --git a/engine/items/ammo.go b/engine/items/ammo.go index d534853..524d56c 100644 --- a/engine/items/ammo.go +++ b/engine/items/ammo.go @@ -9,6 +9,6 @@ type Ammo struct { itemprops.DamageProfile } -func (a *Ammo) Type() string { +func (a Ammo) Type() string { return ecs.AmmoComponent } \ No newline at end of file diff --git a/engine/items/armor.go b/engine/items/armor.go index 9864d8e..8984659 100644 --- a/engine/items/armor.go +++ b/engine/items/armor.go @@ -6,6 +6,6 @@ type Armor struct { DefenceProfile struct{} } -func (a *Armor) Type() string { +func (a Armor) Type() string { return ecs.ArmorComponent } diff --git a/engine/items/backpack.go b/engine/items/backpack.go new file mode 100644 index 0000000..d611980 --- /dev/null +++ b/engine/items/backpack.go @@ -0,0 +1,33 @@ +package items + +import "lab.zaar.be/thefish/alchemyst-go/engine/ecs" + +type Backpack struct { + MaxNumber int + MaxBulk int + MaxMass int + items []ecs.Entity +} + +func (b Backpack) Type() string { + return ecs.BackpackComponent +} + +func (b *Backpack) HasFreeSpace(Bulk, Mass int) bool { + totalBulk, totalMass := 0, 0 + for i, _ := range b.items { + tmp := Controller.GetComponent(b.items[i], Carried{}.Type()).(Carried) + carried := tmp + totalBulk += carried.Bulk + totalMass += carried.Mass + } + if totalMass >= b.MaxMass { + //fixme return message along - 'too heavy' + return false + } + if totalBulk >= b.MaxMass { + //fixme return message along - 'doesnt fit to your backpack' + return false + } + return true +} \ No newline at end of file diff --git a/engine/items/carried.go b/engine/items/carried.go index 95b21e1..cf00f35 100644 --- a/engine/items/carried.go +++ b/engine/items/carried.go @@ -1,6 +1,9 @@ package items -import "lab.zaar.be/thefish/alchemyst-go/engine/ecs" +import ( + "lab.zaar.be/thefish/alchemyst-go/engine/ecs" + "lab.zaar.be/thefish/alchemyst-go/engine/types" +) type CarriedFace interface { Drop() @@ -12,16 +15,74 @@ type Carried struct { Bulk int //внешний размер, см3 } -func (c *Carried) Type() string { +func (c Carried) Type() string { return ecs.CarriedComponent } -func (c *Carried) Pickup() {} -func (c *Carried) Drop() {} +func (c Carried) Pickup(who, what ecs.Entity) { + // check if im lying on ground + if !Controller.HasComponent(what, ecs.CoordsComponent) { + return + } + // something inexistent on map trying to pickup an item?! + if !Controller.HasComponent(who, ecs.CoordsComponent) { + //todo log error - investigate this situation + return + } + //check if who and what are on the same tile + whoCoords := Controller.GetComponent(who, ecs.CoordsComponent).(types.Coords) + whatCoords := Controller.GetComponent(what, ecs.CoordsComponent).(types.Coords) + if whoCoords != whatCoords { + //todo log error - something strange happened + return + } + //does not have inventory? + if !Controller.HasComponent(who, ecs.BackpackComponent) { + //todo send message - you cant carry items + return + } + bp := Controller.GetComponent(who, Backpack{}.Type()).(Backpack) + if !bp.HasFreeSpace(c.Bulk, c.Mass) { + //todo send message - does not fit to your inventory + return + } + //do not remove appearance + //remove coords instead (does not exist on map anymore) + Controller.RemoveComponent(what, ecs.CoordsComponent) + bp.items = append(bp.items, what) +} -func (c *Carried) GetMass() int { +func (c Carried) Drop(who, what ecs.Entity) { + var coords types.Coords + // something inexistent on map trying to drop an item?! + if !Controller.HasComponent(who, ecs.CoordsComponent) { + //todo log error - investigate this situation + return + } else { + coords = Controller.GetComponent(who, types.Coords{}.Type()).(types.Coords) + } + //does not have inventory? + if !Controller.HasComponent(who, ecs.BackpackComponent) { + //todo send message - you cant carry items + return + } + + bp := Controller.GetComponent(who, Backpack{}.Type()).(Backpack) + var dropped ecs.Entity + bp.items, dropped = ecs.DeleteFromEntitySlice(bp.items, what) + if dropped != what { + //todo log error - something strange happened + return + } + //Give dropped back coordinated + Controller.AddComponent(dropped, coords) + //Controller.UpdateComponent(what, coords.Type(), coords) //even we need that? + Controller.UpdateComponent(who, bp.Type(), bp) +} + +func (c Carried) GetMass(what ecs.Entity) int { return c.Mass } -func (c *Carried) GetBulk() int { +func (c *Carried) GetBulk(what ecs.Entity) int { return c.Bulk } \ No newline at end of file diff --git a/engine/items/common.go b/engine/items/common.go new file mode 100644 index 0000000..d774f2c --- /dev/null +++ b/engine/items/common.go @@ -0,0 +1,9 @@ +package items + +import "lab.zaar.be/thefish/alchemyst-go/engine/ecs" + +var Controller ecs.Controller + +func Init(ctrl ecs.Controller) { + Controller = ctrl +} \ No newline at end of file diff --git a/engine/items/ranged.go b/engine/items/ranged.go index a462430..f211ce0 100644 --- a/engine/items/ranged.go +++ b/engine/items/ranged.go @@ -6,6 +6,6 @@ type Ranged struct { RangeProfile struct{} //это зависимость дальности-скорости от характеристик и атрибутов } -func (r *Ranged) Type() string { +func (r Ranged) Type() string { return ecs.RangedComponent } diff --git a/engine/items/useable.go b/engine/items/useable.go index 922d354..6e1c0d3 100644 --- a/engine/items/useable.go +++ b/engine/items/useable.go @@ -9,7 +9,7 @@ type UsableFace interface { type Usable struct {} -func (u *Usable) Type() string { +func (u Usable) Type() string { return ecs.UsableComponent } diff --git a/engine/items/wearable.go b/engine/items/wearable.go index 0dd00f7..04ae663 100644 --- a/engine/items/wearable.go +++ b/engine/items/wearable.go @@ -11,6 +11,6 @@ type Wearable struct { Bodypart int //куда собстно одевать } -func (w *Wearable) Type() string { +func (w Wearable) Type() string { return ecs.WearableComponent } diff --git a/engine/types/coords.go b/engine/types/coords.go index 9fb5137..3de07e3 100644 --- a/engine/types/coords.go +++ b/engine/types/coords.go @@ -9,7 +9,7 @@ type Coords struct { X, Y int } -func (сс Coords) Type() string { +func (cc Coords) Type() string { return ecs.CoordsComponent }