-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsyntaxeSimplifieeSC.js
168 lines (157 loc) · 5.41 KB
/
syntaxeSimplifieeSC.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
'use strict'
/**
SyntaxeSimplifieeSC.js
Bibliothèque surcouche facilitation sugarCubes.js
Auteur : Claude Lion
Date création : 10/10/2018
Copyright : © Claude Lion 2018
*/
//Fabrique un événement par char (
const g_AllSCevents = {}
function SCEVT(ps_nom) {
if(g_AllSCevents[ps_nom] === undefined) {
g_AllSCevents[ps_nom] = SC.evt(ps_nom)
}
return g_AllSCevents[ps_nom]
}
function parseInstr(ps_texte, pArrayS_nomInstr){
// ps_methExtractionReste = 'reste' | 'nombre'
for(let ls_nomInstr of pArrayS_nomInstr){
if(ps_texte.startsWith(ls_nomInstr)){
const ls_reste = ps_texte.substring(ls_nomInstr.length)
const lArray_nombre = ps_texte.match(/\d+/g)
return {instr: ls_nomInstr, reste: ls_reste, nombres: lArray_nombre}
}
}
return false
}
function getPropertyUntilSCCube(pSCCube_proto) {
if (pSCCube_proto.constructor !== undefined && pSCCube_proto.constructor !== SCCube) {
return Object.getOwnPropertyNames(pSCCube_proto).concat( getPropertyUntilSCCube(pSCCube_proto.__proto__) )
} else {
return []
}
}
//permet de créer un cube en même temps que l'objet.
class SCCube extends SC.cube().constructor {
constructor(...pArray_args) {
super(null, null)
if(! pArray_args.length) pArray_args = [{}]
this.o = this
this.evtKillInstance = SC.evt('kill instance')
const lArray_methodes = getPropertyUntilSCCube(this.__proto__)
const lArray_prog = []
for(let ls_nomMeth of lArray_methodes) {
const pushWithKill = (pProg) => {
this['kill_' + ls_nomMeth] = SC.evt('kill_' + ls_nomMeth)
lArray_prog.push(
SC.kill(
SC.or(
SCEVT('kill_' + this.constructor.name + '_' + ls_nomMeth),
this['kill_' + ls_nomMeth]
),
pProg
)
)
}
if(ls_nomMeth.substring(0,1) == '$') {
const {instr, reste, nombres} = parseInstr(ls_nomMeth, [
'$actionForever_', '$repeat', '$on_', '$_', '$onNo_',
'$const_', '$publicConst_',
'$var_', '$publicVar_',
'$property_', '$publicProperty_'
])
if(instr == '$actionForever_') {
pushWithKill( SC.action(this[ls_nomMeth].bind(this), SC.forever) )
}else if(instr == '$repeat'){
const ln_nbFois = parseInt(nombres[0])
pushWithKill(SC.repeat( ln_nbFois, ...this[ls_nomMeth]() ))
}else if(instr == '$const_' || instr == '$publicConst_' || instr == '$var_' || instr == '$publicVar_'){
const ls_nomVar = reste
const lArray_args = (pArray_args[0][ls_nomMeth] == undefined)
? []
: pArray_args[0][ls_nomMeth]
if(instr == '$const_' || instr == '$publicConst_'){
this[ls_nomVar] = this[ls_nomMeth](...lArray_args)
}else{
this[ls_nomVar] = this[ls_nomMeth].bind(this, ...lArray_args)
}
if(instr == '$publicVar_' || instr == '$publicConst_'){
pushWithKill(SC.generate(
SCEVT(ls_nomVar),
this[ls_nomVar],
SC.forever
))
}
}else if(instr == '$property_' || instr == '$publicProperty_'){
const ls_nomProperty = reste
const lArray_parts = this[ls_nomMeth]()
this[ls_nomProperty] = this.defineProperty(...lArray_parts)
pushWithKill(SC.repeat( SC.forever, this[ls_nomProperty] ))
if(instr == '$publicProperty_'){
pushWithKill(SC.generate(
SCEVT(ls_nomProperty),
this[ls_nomProperty].valeur,
SC.forever
))
}
}else if(instr == '$on_'){//uniquement avec undefined, SC.forever
const ls_nomEvt = ls_nomMeth.match(/_[A-Za-z0-9]+(?=_|$)/g)[0].substring(1)
pushWithKill(SC.actionOn(
SCEVT(ls_nomEvt),
(pArray_allEvt, pMachine)=>{
const lArray_evt = pArray_allEvt[SCEVT(ls_nomEvt)]
this[ls_nomMeth](lArray_evt, pMachine)
},
undefined,
SC.forever
))
}else if(instr == '$onNo_'){//uniquement avec SC.NO_ACTION, SC.forever
const ls_nomEvt = ls_nomMeth.match(/_[A-Za-z0-9]+(?=_|$)/g)[0].substring(1)
pushWithKill(SC.actionOn(
SCEVT(ls_nomEvt),
SC.NO_ACTION,
(pMachine)=>{
this[ls_nomMeth]([], pMachine)
},
SC.forever
))
}else if(instr == '$_') {
pushWithKill( this[ls_nomMeth]() )
}
}
}
this.p = SC.kill(SC.or(SCEVT('kill_' + this.constructor.name), this.evtKillInstance),
SC.par(...lArray_prog)
)
}
defineProperty(p_initVal, pArrayS_evt, pFunc) { // function pFunc(p_val, ...pArray_valEnvoyees)
const symb = Symbol()
this[symb] = p_initVal;
if(typeof pFunc === 'string' || pFunc instanceof String) {
pFunc = this[pFunc].bind(this)
}
const lCell = SC.cell({
target: this,
field: symb,
sideEffect: (val, evts)=>{
const lArray_evts = pArrayS_evt.map(ps_evt=>evts[SCEVT(ps_evt)])
const l_ret = pFunc(val, ...lArray_evts)
return l_ret
},
eventList: pArrayS_evt.map(SCEVT)
})
lCell.valeur = ()=>lCell.val()
return lCell
}
}
SC.idem = (val, pArray_valEnvoyees)=>val
SC.count = (val, pArray_valEnvoyees)=>(pArray_valEnvoyees || []).reduce((acc, curr)=>acc+1, 0)
SC.somme = (val, pArray_valEnvoyees)=>(pArray_valEnvoyees || []).reduce((acc, curr)=>acc+curr, 0)
SC.min = (val, pArray_valEnvoyees)=>(pArray_valEnvoyees || []).reduce((acc, curr)=>Math.min(acc,curr), Infinity)
SC.reactProperty = function(p_cell, pn_times) {
if(undefined === pn_times) pn_times = 1
return SC.repeat(pn_times, p_cell)
}
var monde = SC.machine(30);
monde.addActor = monde.addProgram;