This commit is contained in:
2026-06-01 09:45:37 +02:00
parent 4410f3b057
commit f85c5ae476
2 changed files with 54 additions and 21 deletions
+13 -6
View File
@@ -2,18 +2,25 @@
## ORGANISM ## ORGANISM
Qui comprendiamo l'organismo. Qui dentro, oltre all'espansione degli organi, ci va anche un organo tipo Ipotalamo, che gestisce l'alternanza DAY/NIGHT. Expansions and modulations:
- expands: [HYPOTHALAMUS](hypothalamus/hypothalamus.md)
- expands: [TECTUM](tectum/tectum.md)
- expands: [VERTEBRAE](vertebrae/vertebrae.md)
- tunes: [PRESYNAPSE](neuron/presynapse.md)
- tunes: [POSTSYNAPSE](neuron/postsynapse.md)
- tunes: [ASTROSYNAPSE](astrocyte/astrosynapse.md)
```Gen ```Gen
include:
organs/hypothalamus/hypothalamus.md
organs/tectum/tectum.md
organs/vertebrae/vertebrae.md
ORGANISM ORGANISM
type: main_comprehension type: main_comprehension
include:
organs/hypothalamus/hypothalamus.md
organs/tectum/tectum.md
organs/vertebrae/vertebrae.md
expansion: expansion:
@TECTUM: EXPANSION [ comprehension: TECTUM ] @TECTUM: EXPANSION [ comprehension: TECTUM ]
@VERTEBRAE: EXPANSION [ comprehension: VERTEBRAE ] @VERTEBRAE: EXPANSION [ comprehension: VERTEBRAE ]
+41 -15
View File
@@ -2,7 +2,7 @@
Qui comprendiamo Hypothalamus. E' l'organo che si occupa di far "dormire" l'organismo, in maniera da rendere possibile i comportamenti che associamo alla modifica di forma organimisca, compresa quella neuronale. Qui comprendiamo Hypothalamus. E' l'organo che si occupa di far "dormire" l'organismo, in maniera da rendere possibile i comportamenti che associamo alla modifica di forma organimisca, compresa quella neuronale.
## HYPOTHALAMUS: Comprehension ## HYPOTHALAMUS
```Gen ```Gen
HYPOTHALAMUS HYPOTHALAMUS
@@ -10,42 +10,68 @@ HYPOTHALAMUS
type: comprehension type: comprehension
expansion: expansion:
@HYPOTHALAMUS-BEH
intrication:
# Scope
!ALWAYS: INTRICATION [ ref: &ORGANISM.!ALWAYS]
!DAY: INTRICATION [ ref: &ORGANISM.!DAY ]
!NIGHT: INTRICATION [ ref: &ORGANISM.!NIGHT ]
# Context
*??: INTRICATION [ ref: &??.*?? ]
# Tub
??: INTRICATION [ ref: &??._?? ]
instantiation:
# Context
*??: CONTEXT []
# Tub
_OrganismicFatigue: TUB [ full: 60x, active: 30x, empty: 0x ]
# Behaviour
$: BEHAVIOUR [ behaviour: MAIN_HYPOTHALAMUS ]
``` ```
### HYPOTHALAMUS-BEH: container ### MAIN_HYPOTHALAMUS: !ALWAYS
Qui gestiamo la fatica organismica. Qui gestiamo la fatica organismica.
```Gen ```Gen
HYPOTHALAMUS-BEH MAIN_HYPOTHALAMUS
type: container type: container
activity_scope: !ALWAYS activity_scope: !ALWAYS
tub_local: snippets:
OrganismicFatigue ()
```
#### BehDevPossibility: Scope # *AP
@: ACCUMULATOR [ snippet: DayNightCheckScope, rf: active 12x ]
```
#### *Fixed
##### DayNightCheckScope
Alternanza DAY NIGHT. Influenzata da intricazioni con tutto l'organismo, neuroni compresi. Alternanza DAY NIGHT. Influenzata da intricazioni con tutto l'organismo, neuroni compresi.
```Gen ```Gen
BehDevPossibility: ( active: 60x ) DayNightCheckScope: ( active: 60x )
type: scope type: contextor
contained_by: HYPOTHALAMUS-BEH
in_context: Fixed in_context: *Fixed
# la disattivazione e' la non attivazione # la disattivazione e' la non attivazione
condition: NOT ( OrganismicFatigue fullness ) # Day condition: NOT ( OrganismicFatigue fullness )
activate_scope: activate_scope:
!DAY !DAY
condition: ( OrganismicFatigue fullness ) # Night condition: ( OrganismicFatigue fullness )
activate_scope: activate_scope:
!NIGHT !NIGHT
``` ```