From 999f48afe9b2d15f17ee29470680a5fb68a7158b Mon Sep 17 00:00:00 2001 From: "anton.gurov" Date: Wed, 13 Nov 2019 18:55:11 +0300 Subject: [PATCH] phase shifts, itemize --- assets/logo2.txt | 17 +++++++ cmd/game/main.go | 16 +++---- engine/ecs/component.go | 5 ++ engine/gamemap/prefab.go | 2 +- engine/items/ammo.go | 14 ++++++ engine/items/armor.go | 11 +++++ engine/items/arms.go | 14 ++++++ engine/items/carried.go | 20 +++++++- engine/items/itemprops/damage.go | 7 +++ engine/items/ranged.go | 11 +++++ engine/items/useable.go | 11 ++++- engine/items/wearable.go | 16 +++++++ engine/matertals/properties.go | 82 ++++++++++++++++++++++++++++++++ util/kruskals/algorithm.go | 2 +- 14 files changed, 213 insertions(+), 15 deletions(-) create mode 100644 assets/logo2.txt create mode 100644 engine/items/ammo.go create mode 100644 engine/items/armor.go create mode 100644 engine/items/arms.go create mode 100644 engine/items/itemprops/damage.go create mode 100644 engine/items/ranged.go create mode 100644 engine/items/wearable.go create mode 100644 engine/matertals/properties.go diff --git a/assets/logo2.txt b/assets/logo2.txt new file mode 100644 index 0000000..bc10a2c --- /dev/null +++ b/assets/logo2.txt @@ -0,0 +1,17 @@ + + ^^:^|+ ! ,` ':: + 'Uz 3F` |/ `cz\RR + U| ye` /l zy- + gc ff ^v ik` : + l| :F c -!!: + + + .- ,` `, '' : '' -. `' `` `-'!! + '.f^ sw! !u|,,\%N; ipf tdD -|l!":aXr ',|| lf u%' tOc ru;.,C0q ,r` iXD! !t + `uqE' !w: -!w ul ,Uw !e# rye- ?ez ';3= !B? /d> :az !v0| ,a 'kw + `vv=ee i%! !w' ,o9i?zFsfU# !39z|?|// ^OWws` taq? -dgc `/f `t#%+ 'oe + `r3 ueo s%! 'qQ` ,pe >kW lgw |OXX|-ue/9> zgO! =e' ^DQw. 'Fe + :Cr!::|Ec cq! UQs 'Da >%W !QB` vR- cC' ^e> 3EW! -eQ%: 'qU + :a` `ON; /q| `#@e .yd ,ge |BQ sBp, ,y |D +k| :kd EB= !q: 'pq + ^w" ,qd :dE+!!!!!sw eQqs|zU/ #Q^ ,Q@z ,qU/::i| Fg zN/ !Qg E#pz>zw' R@C + `''''''` ` , , diff --git a/cmd/game/main.go b/cmd/game/main.go index 83bfd43..65c4e8f 100644 --- a/cmd/game/main.go +++ b/cmd/game/main.go @@ -136,16 +136,12 @@ func main() { SetBgColor("#ef305c70"). SetFgColor("white"). SetItems([]interface{}{ - "hjklyubn, NumPad 12346789, arrow keys - move", - "s or . - pass turn", - "g or , - pick up item", - "i - inventory", - "? - this screen", - "Ctrl+q - exit", - "f or F - fire or throw weapon", - "z or Z - cast a spell", - "p - pray", - "Ctrl+p - message log", + `"Fisheye" crafty shaded glasses`, + "Xecutor's glowing visor", + "Kitschy goggles of many pathways", + "Ring of inexistence", + "Orb of omniscience", + "Wand of amnesia", }).MakeList(), ) diff --git a/engine/ecs/component.go b/engine/ecs/component.go index ca6f6bb..77c5ab3 100644 --- a/engine/ecs/component.go +++ b/engine/ecs/component.go @@ -8,6 +8,11 @@ const MobComponent = "mob" const MoveableComponent = "movable" const CarriedComponent = "carried" const UsableComponent = "usable" +const WearableComponent = "usable" +const ArmsComponent = "arms" +const RangedComponent = "ranged" +const AmmoComponent = "ammo" +const ArmorComponent = "armor" type Component interface { Type() string diff --git a/engine/gamemap/prefab.go b/engine/gamemap/prefab.go index 063581d..e70462b 100644 --- a/engine/gamemap/prefab.go +++ b/engine/gamemap/prefab.go @@ -21,7 +21,7 @@ type PrefabRecord struct { Size struct { X int `json:"x"` Y int `json:"y"` - } `json:"Size"` + } `json:"Bulk"` TileLegend map[string]string `json:"tile_legend"` MobsLegend map[string]string `json:"mobs_legend"` ItemLegend map[string]string `json:"item_legend"` diff --git a/engine/items/ammo.go b/engine/items/ammo.go new file mode 100644 index 0000000..d534853 --- /dev/null +++ b/engine/items/ammo.go @@ -0,0 +1,14 @@ +package items + +import ( + "lab.zaar.be/thefish/alchemyst-go/engine/ecs" + "lab.zaar.be/thefish/alchemyst-go/engine/items/itemprops" +) + +type Ammo struct { + itemprops.DamageProfile +} + +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 new file mode 100644 index 0000000..9864d8e --- /dev/null +++ b/engine/items/armor.go @@ -0,0 +1,11 @@ +package items + +import "lab.zaar.be/thefish/alchemyst-go/engine/ecs" + +type Armor struct { + DefenceProfile struct{} +} + +func (a *Armor) Type() string { + return ecs.ArmorComponent +} diff --git a/engine/items/arms.go b/engine/items/arms.go new file mode 100644 index 0000000..6ec8e4a --- /dev/null +++ b/engine/items/arms.go @@ -0,0 +1,14 @@ +package items + +import ( + "lab.zaar.be/thefish/alchemyst-go/engine/ecs" + "lab.zaar.be/thefish/alchemyst-go/engine/items/itemprops" +) + +type Arms struct { + itemprops.DamageProfile +} + +func (a Arms) Type() string { + return ecs.ArmsComponent +} diff --git a/engine/items/carried.go b/engine/items/carried.go index ef4ecad..95b21e1 100644 --- a/engine/items/carried.go +++ b/engine/items/carried.go @@ -2,8 +2,26 @@ package items import "lab.zaar.be/thefish/alchemyst-go/engine/ecs" -type Carried struct {} +type CarriedFace interface { + Drop() + Pickup() +} + +type Carried struct { + Mass int //масса в граммах + Bulk int //внешний размер, см3 +} func (c *Carried) Type() string { return ecs.CarriedComponent } + +func (c *Carried) Pickup() {} +func (c *Carried) Drop() {} + +func (c *Carried) GetMass() int { + return c.Mass +} +func (c *Carried) GetBulk() int { + return c.Bulk +} \ No newline at end of file diff --git a/engine/items/itemprops/damage.go b/engine/items/itemprops/damage.go new file mode 100644 index 0000000..82d8cc1 --- /dev/null +++ b/engine/items/itemprops/damage.go @@ -0,0 +1,7 @@ +package itemprops + +type DamageProfile struct { + Pierce int + Bash int + Cleave int +} diff --git a/engine/items/ranged.go b/engine/items/ranged.go new file mode 100644 index 0000000..a462430 --- /dev/null +++ b/engine/items/ranged.go @@ -0,0 +1,11 @@ +package items + +import "lab.zaar.be/thefish/alchemyst-go/engine/ecs" + +type Ranged struct { + RangeProfile struct{} //это зависимость дальности-скорости от характеристик и атрибутов +} + +func (r *Ranged) Type() string { + return ecs.RangedComponent +} diff --git a/engine/items/useable.go b/engine/items/useable.go index dd8efaf..922d354 100644 --- a/engine/items/useable.go +++ b/engine/items/useable.go @@ -2,9 +2,16 @@ package items import "lab.zaar.be/thefish/alchemyst-go/engine/ecs" -type Useable struct {} +type UsableFace interface { + Use() +} + +type Usable struct {} -func (u *Useable) Type() string { +func (u *Usable) Type() string { return ecs.UsableComponent +} + +func (u *Usable) Use() { } \ No newline at end of file diff --git a/engine/items/wearable.go b/engine/items/wearable.go new file mode 100644 index 0000000..0dd00f7 --- /dev/null +++ b/engine/items/wearable.go @@ -0,0 +1,16 @@ +package items + +import "lab.zaar.be/thefish/alchemyst-go/engine/ecs" + +type WearableFace interface { + Wear() + Takeoff() +} + +type Wearable struct { + Bodypart int //куда собстно одевать +} + +func (w *Wearable) Type() string { + return ecs.WearableComponent +} diff --git a/engine/matertals/properties.go b/engine/matertals/properties.go new file mode 100644 index 0000000..e8604bc --- /dev/null +++ b/engine/matertals/properties.go @@ -0,0 +1,82 @@ +package matertals + +import "github.com/rs/zerolog/log" + +type MaterialProperties struct { + Density float64 //Плотность (кг / м3) + Tougnness float64 //Ударная вязкость, мера скорости поглощения энергии без деформаций, джоули на квадратный метр в секунду + Brittleness float64 //Хрупкость - обратная пластичности (в основном за счет внешних эффектов), джоули на квадртаный метр, после которых раскол + MeltingPoint float64 //точка перехода из твердого в жидкое, градусы Цельсия при нормальном давлении + BoilingPoint float64 //точка кипения - из жидкого в газ, градусы Цельсия при нормальном давлении + Conductivity bool //проводимость эл. тока +} + +//агрегатное состояние +type MatterState int + +const ( + Solid MatterState = iota //кристаллическая решетка + Liquid + Gas + Plasma + + Glass //нет кристаллической решетки, аморфный +) + +var transitions = map[MatterState][]MatterState{ + Solid: {Liquid, Gas}, + Liquid: {Solid, Gas, Glass}, + Gas: {Solid, Plasma}, + Plasma: {Gas}, + + Glass: {Liquid}, + +} + +func (ms MatterState) Change(from MatterState, to MatterState) bool { + if from == to { + return true + } + + _, ok := transitions[from] + + if ok { + newStateFound := func(lst []MatterState, to MatterState) bool { + for _, b := range lst { + if b == to { + return true + } + } + return false + }(transitions[from], to) + if !newStateFound { + log.Warn().Msgf("Transition %s -> %s is impossible", from, to) + return false + } + // check temperatures/conditions, see template + /* + Solid -> Gas Sublimation + Solid -> Liquid Melting + + Liquid -> Gas Boiling + Liquid -> Solid Freezing + + Gas -> Solid Deposition + Gas -> Liquid Condensation + + Gas -> Plasma Ionization + Plasma -> Gas Recombination + */ + } + + //При фазовом переходе первого рода скачкообразно изменяются самые главные, первичные экстенсивные параметры: + // удельный объём, + // количество запасённой внутренней энергии, + // концентрация компонентов и т. п. + // + // Фазовые переходы второго рода происходят в тех случаях, когда меняется симметрия строения вещества + // (симметрия может полностью исчезнуть или понизиться). + + return true + +} \ No newline at end of file diff --git a/util/kruskals/algorithm.go b/util/kruskals/algorithm.go index caf3c3a..679d26d 100644 --- a/util/kruskals/algorithm.go +++ b/util/kruskals/algorithm.go @@ -12,7 +12,7 @@ type WeightedEdge interface { From() int // To returns the integer identifier of the second vertex. To() int - // Weight returns the integer identifier of the weight/cost. + // Mass returns the integer identifier of the weight/cost. Weight() int }