simple-circuit-engine 0.0.12 → 0.0.13
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/AGENTS.md +2 -1
- package/CLAUDE.md +2 -0
- package/dist/core/index.js +83 -73
- package/dist/core/setup.d.ts +8 -0
- package/dist/core/simulation/behaviors/arithmetic/AdderBehavior.d.ts +28 -0
- package/dist/core/simulation/behaviors/arithmetic/ArithmeticBehaviorMixin.d.ts +63 -0
- package/dist/core/simulation/behaviors/arithmetic/EightBitAdderBehavior.d.ts +51 -0
- package/dist/core/simulation/behaviors/arithmetic/EightBitOnesComplementBehavior.d.ts +29 -0
- package/dist/core/simulation/behaviors/arithmetic/HalfAdderBehavior.d.ts +22 -0
- package/dist/core/simulation/behaviors/arithmetic/index.d.ts +7 -0
- package/dist/core/simulation/behaviors/index.d.ts +4 -0
- package/dist/core/simulation/states/arithmetic/AdderState.d.ts +16 -0
- package/dist/core/simulation/states/arithmetic/ArithmeticState.d.ts +53 -0
- package/dist/core/simulation/states/arithmetic/EightBitAdderState.d.ts +25 -0
- package/dist/core/simulation/states/arithmetic/EightBitOnesComplementState.d.ts +18 -0
- package/dist/core/simulation/states/arithmetic/HalfAdderState.d.ts +16 -0
- package/dist/core/simulation/states/arithmetic/index.d.ts +7 -0
- package/dist/core/simulation/states/index.d.ts +5 -0
- package/dist/core/simulation/types.d.ts +1 -1
- package/dist/core/topology/Component.d.ts +2 -1
- package/dist/core/topology/types.d.ts +19 -5
- package/dist/{core-Bjta9Y7_.js → core-b6Q8w2sn.js} +1505 -652
- package/dist/core-b6Q8w2sn.js.map +1 -0
- package/dist/i18n/index.d.ts +882 -0
- package/dist/i18n/locales/en.json.d.ts +268 -0
- package/dist/i18n/locales/fr.json.d.ts +268 -0
- package/dist/index.d.ts +1 -0
- package/dist/index.js +137 -120
- package/dist/scene/CircuitEngine.d.ts +13 -0
- package/dist/scene/index.d.ts +1 -1
- package/dist/scene/index.js +50 -45
- package/dist/scene/setup.d.ts +8 -0
- package/dist/scene/shared/AbstractCircuitController.d.ts +6 -0
- package/dist/scene/shared/components/arithmetic/AdderVisualFactory.d.ts +54 -0
- package/dist/scene/shared/components/arithmetic/EightBitAdderVisualFactory.d.ts +45 -0
- package/dist/scene/shared/components/arithmetic/EightBitOnesComplementVisualFactory.d.ts +63 -0
- package/dist/scene/shared/components/arithmetic/HalfAdderVisualFactory.d.ts +55 -0
- package/dist/scene/shared/components/arithmetic/index.d.ts +4 -0
- package/dist/scene/shared/components/index.d.ts +4 -0
- package/dist/scene/shared/types.d.ts +0 -2
- package/dist/scene/shared/utils/GeometryUtils.d.ts +76 -0
- package/dist/scene/static/CircuitController.d.ts +1 -0
- package/dist/scene/static/PinTooltipWidget.d.ts +5 -0
- package/dist/scene/static/tools/BuildTool.d.ts +4 -0
- package/dist/scene/static/tools/ComponentPickerWidget.d.ts +7 -0
- package/dist/scene/static/tools/ConfigPanelWidget.d.ts +14 -0
- package/dist/{scene-CVsDdySt.js → scene-D4QcWeiq.js} +2487 -1099
- package/dist/scene-D4QcWeiq.js.map +1 -0
- package/package.json +14 -9
- package/dist/core-Bjta9Y7_.js.map +0 -1
- package/dist/scene-CVsDdySt.js.map +0 -1
|
@@ -0,0 +1,268 @@
|
|
|
1
|
+
declare const _default: {
|
|
2
|
+
"components": {
|
|
3
|
+
"groups": {
|
|
4
|
+
"basic": {
|
|
5
|
+
"name": "Basic Components"
|
|
6
|
+
},
|
|
7
|
+
"gates": {
|
|
8
|
+
"name": "Logic Gates"
|
|
9
|
+
},
|
|
10
|
+
"arithmetic": {
|
|
11
|
+
"name": "Arithmetic"
|
|
12
|
+
}
|
|
13
|
+
},
|
|
14
|
+
"battery": {
|
|
15
|
+
"name": "Battery"
|
|
16
|
+
},
|
|
17
|
+
"clock": {
|
|
18
|
+
"name": "Clock",
|
|
19
|
+
"config": {
|
|
20
|
+
"fields": {
|
|
21
|
+
"startHigh": { "name": "Start High ?" },
|
|
22
|
+
"halfPeriod": { "name": "Half Period" }
|
|
23
|
+
}
|
|
24
|
+
}
|
|
25
|
+
},
|
|
26
|
+
"label": {
|
|
27
|
+
"name": "Label",
|
|
28
|
+
"config": {
|
|
29
|
+
"fields": {
|
|
30
|
+
"text": { "name": "Text" },
|
|
31
|
+
"size": { "name": "Size" }
|
|
32
|
+
}
|
|
33
|
+
}
|
|
34
|
+
},
|
|
35
|
+
"switch": {
|
|
36
|
+
"name": "Switch",
|
|
37
|
+
"config": {
|
|
38
|
+
"fields": {
|
|
39
|
+
"initialState": { "name": "Open at start" },
|
|
40
|
+
"transitionSpan": { "name": "Delay (ticks)" },
|
|
41
|
+
"size": { "name": "Size" }
|
|
42
|
+
}
|
|
43
|
+
}
|
|
44
|
+
},
|
|
45
|
+
"doubleThrowSwitch": {
|
|
46
|
+
"name": "2-1 Switch",
|
|
47
|
+
"config": {
|
|
48
|
+
"fields": {
|
|
49
|
+
"initialState": { "name": "Input1 at start" },
|
|
50
|
+
"transitionSpan": { "name": "Delay (ticks)" },
|
|
51
|
+
"size": { "name": "Size" }
|
|
52
|
+
}
|
|
53
|
+
}
|
|
54
|
+
},
|
|
55
|
+
"lightbulb": {
|
|
56
|
+
"name": "Lightbulb",
|
|
57
|
+
"config": {
|
|
58
|
+
"fields": {
|
|
59
|
+
"transitionSpan": { "name": "Lit delay (ticks)" },
|
|
60
|
+
"size": { "name": "Size" }
|
|
61
|
+
}
|
|
62
|
+
}
|
|
63
|
+
},
|
|
64
|
+
"rectangleLED": {
|
|
65
|
+
"name": "Rectangle LED",
|
|
66
|
+
"config": {
|
|
67
|
+
"fields": {
|
|
68
|
+
"transitionSpan": { "name": "Lit delay (ticks)" },
|
|
69
|
+
"idleColor": { "name": "Idle Color" },
|
|
70
|
+
"activeColor": { "name": "Active Color" },
|
|
71
|
+
"size": { "name": "Size" },
|
|
72
|
+
"hwRatio": { "name": "Ratio H/W" },
|
|
73
|
+
"ywRatio": { "name": "Ratio Y/W" }
|
|
74
|
+
}
|
|
75
|
+
}
|
|
76
|
+
},
|
|
77
|
+
"relay": {
|
|
78
|
+
"name": "Relay",
|
|
79
|
+
"config": {
|
|
80
|
+
"fields": {
|
|
81
|
+
"activationLogic": { "name": "Activation Logic" },
|
|
82
|
+
"transitionSpan": { "name": "Transition Span (ticks)" },
|
|
83
|
+
"size": { "name": "Size" },
|
|
84
|
+
"initializationOrder": { "name": "Init Order" }
|
|
85
|
+
}
|
|
86
|
+
}
|
|
87
|
+
},
|
|
88
|
+
"smallLED": {
|
|
89
|
+
"name": "Small LED",
|
|
90
|
+
"config": {
|
|
91
|
+
"fields": {
|
|
92
|
+
"transitionSpan": { "name": "Lit delay (ticks)" },
|
|
93
|
+
"idleColor": { "name": "Idle Color" },
|
|
94
|
+
"activeColor": { "name": "Active Color" },
|
|
95
|
+
"size": { "name": "Size" },
|
|
96
|
+
"ywRatio": { "name": "Ratio Y/W" }
|
|
97
|
+
}
|
|
98
|
+
}
|
|
99
|
+
},
|
|
100
|
+
"inverter": {
|
|
101
|
+
"name": "Inverter",
|
|
102
|
+
"config": {
|
|
103
|
+
"fields": {
|
|
104
|
+
"defaultLogicFamily": { "name": "Logic Family" },
|
|
105
|
+
"activationLogic": { "name": "Activation Logic" },
|
|
106
|
+
"transitionSpan": { "name": "Propagation delay (ticks)" },
|
|
107
|
+
"initializationOrder": { "name": "Init Order" }
|
|
108
|
+
}
|
|
109
|
+
}
|
|
110
|
+
},
|
|
111
|
+
"nandGate": {
|
|
112
|
+
"name": "NAND Gate",
|
|
113
|
+
"config": {
|
|
114
|
+
"fields": {
|
|
115
|
+
"defaultLogicFamily": { "name": "Logic Family" },
|
|
116
|
+
"activationLogic": { "name": "Activation Logic" },
|
|
117
|
+
"transitionSpan": { "name": "Propagation delay (ticks)" },
|
|
118
|
+
"initializationOrder": { "name": "Init Order" }
|
|
119
|
+
}
|
|
120
|
+
}
|
|
121
|
+
},
|
|
122
|
+
"nand4Gate": {
|
|
123
|
+
"name": "4-input NAND Gate",
|
|
124
|
+
"config": {
|
|
125
|
+
"fields": {
|
|
126
|
+
"defaultLogicFamily": { "name": "Logic Family" },
|
|
127
|
+
"activationLogic": { "name": "Activation Logic" },
|
|
128
|
+
"transitionSpan": { "name": "Propagation delay (ticks)" },
|
|
129
|
+
"initializationOrder": { "name": "Init Order" }
|
|
130
|
+
}
|
|
131
|
+
}
|
|
132
|
+
},
|
|
133
|
+
"nand8Gate": {
|
|
134
|
+
"name": "8-input NAND Gate",
|
|
135
|
+
"config": {
|
|
136
|
+
"fields": {
|
|
137
|
+
"defaultLogicFamily": { "name": "Logic Family" },
|
|
138
|
+
"activationLogic": { "name": "Activation Logic" },
|
|
139
|
+
"transitionSpan": { "name": "Propagation delay (ticks)" },
|
|
140
|
+
"initializationOrder": { "name": "Init Order" }
|
|
141
|
+
}
|
|
142
|
+
}
|
|
143
|
+
},
|
|
144
|
+
"norGate": {
|
|
145
|
+
"name": "NOR Gate",
|
|
146
|
+
"config": {
|
|
147
|
+
"fields": {
|
|
148
|
+
"defaultLogicFamily": { "name": "Logic Family" },
|
|
149
|
+
"activationLogic": { "name": "Activation Logic" },
|
|
150
|
+
"transitionSpan": { "name": "Propagation delay (ticks)" },
|
|
151
|
+
"initializationOrder": { "name": "Init Order" }
|
|
152
|
+
}
|
|
153
|
+
}
|
|
154
|
+
},
|
|
155
|
+
"nor4Gate": {
|
|
156
|
+
"name": "4-input NOR Gate",
|
|
157
|
+
"config": {
|
|
158
|
+
"fields": {
|
|
159
|
+
"defaultLogicFamily": { "name": "Logic Family" },
|
|
160
|
+
"activationLogic": { "name": "Activation Logic" },
|
|
161
|
+
"transitionSpan": { "name": "Propagation delay (ticks)" },
|
|
162
|
+
"initializationOrder": { "name": "Init Order" }
|
|
163
|
+
}
|
|
164
|
+
}
|
|
165
|
+
},
|
|
166
|
+
"nor8Gate": {
|
|
167
|
+
"name": "8-input NOR Gate",
|
|
168
|
+
"config": {
|
|
169
|
+
"fields": {
|
|
170
|
+
"defaultLogicFamily": { "name": "Logic Family" },
|
|
171
|
+
"activationLogic": { "name": "Activation Logic" },
|
|
172
|
+
"transitionSpan": { "name": "Propagation delay (ticks)" },
|
|
173
|
+
"initializationOrder": { "name": "Init Order" }
|
|
174
|
+
}
|
|
175
|
+
}
|
|
176
|
+
},
|
|
177
|
+
"xorGate": {
|
|
178
|
+
"name": "XOR Gate",
|
|
179
|
+
"config": {
|
|
180
|
+
"fields": {
|
|
181
|
+
"defaultLogicFamily": { "name": "Logic Family" },
|
|
182
|
+
"activationLogic": { "name": "Activation Logic" },
|
|
183
|
+
"transitionSpan": { "name": "Propagation delay (ticks)" },
|
|
184
|
+
"initializationOrder": { "name": "Init Order" }
|
|
185
|
+
}
|
|
186
|
+
}
|
|
187
|
+
},
|
|
188
|
+
"xor4Gate": {
|
|
189
|
+
"name": "4-input XOR Gate",
|
|
190
|
+
"config": {
|
|
191
|
+
"fields": {
|
|
192
|
+
"defaultLogicFamily": { "name": "Logic Family" },
|
|
193
|
+
"activationLogic": { "name": "Activation Logic" },
|
|
194
|
+
"transitionSpan": { "name": "Propagation delay (ticks)" },
|
|
195
|
+
"initializationOrder": { "name": "Init Order" }
|
|
196
|
+
}
|
|
197
|
+
}
|
|
198
|
+
},
|
|
199
|
+
"xor8Gate": {
|
|
200
|
+
"name": "8-input XOR Gate",
|
|
201
|
+
"config": {
|
|
202
|
+
"fields": {
|
|
203
|
+
"defaultLogicFamily": { "name": "Logic Family" },
|
|
204
|
+
"activationLogic": { "name": "Activation Logic" },
|
|
205
|
+
"transitionSpan": { "name": "Propagation delay (ticks)" },
|
|
206
|
+
"initializationOrder": { "name": "Init Order" }
|
|
207
|
+
}
|
|
208
|
+
}
|
|
209
|
+
},
|
|
210
|
+
"halfAdder": {
|
|
211
|
+
"name": "Half Adder",
|
|
212
|
+
"config": {
|
|
213
|
+
"fields": {
|
|
214
|
+
"defaultLogicFamily": { "name": "Logic Family" },
|
|
215
|
+
"transitionSpan": { "name": "Propagation delay (ticks)" },
|
|
216
|
+
"initializationOrder": { "name": "Init Order" }
|
|
217
|
+
}
|
|
218
|
+
}
|
|
219
|
+
},
|
|
220
|
+
"adder": {
|
|
221
|
+
"name": "Full Adder",
|
|
222
|
+
"config": {
|
|
223
|
+
"fields": {
|
|
224
|
+
"defaultLogicFamily": { "name": "Logic Family" },
|
|
225
|
+
"transitionSpan": { "name": "Propagation delay (ticks)" },
|
|
226
|
+
"initializationOrder": { "name": "Init Order" }
|
|
227
|
+
}
|
|
228
|
+
}
|
|
229
|
+
},
|
|
230
|
+
"eightBitAdder": {
|
|
231
|
+
"name": "8-Bit Adder",
|
|
232
|
+
"config": {
|
|
233
|
+
"fields": {
|
|
234
|
+
"defaultLogicFamily": { "name": "Logic Family" },
|
|
235
|
+
"transitionSpan": { "name": "Propagation delay (ticks)" },
|
|
236
|
+
"initializationOrder": { "name": "Init Order" }
|
|
237
|
+
}
|
|
238
|
+
}
|
|
239
|
+
},
|
|
240
|
+
"eightBitOnesComplement": {
|
|
241
|
+
"name": "8-Bit Ones Complement",
|
|
242
|
+
"config": {
|
|
243
|
+
"fields": {
|
|
244
|
+
"defaultLogicFamily": { "name": "Logic Family" },
|
|
245
|
+
"transitionSpan": { "name": "Propagation delay (ticks)" },
|
|
246
|
+
"initializationOrder": { "name": "Init Order" }
|
|
247
|
+
}
|
|
248
|
+
}
|
|
249
|
+
},
|
|
250
|
+
"default": {
|
|
251
|
+
"config": {
|
|
252
|
+
"fields": {
|
|
253
|
+
"color": { "name": "Color" }
|
|
254
|
+
}
|
|
255
|
+
}
|
|
256
|
+
}
|
|
257
|
+
},
|
|
258
|
+
"picker": {
|
|
259
|
+
"title": "Components",
|
|
260
|
+
"branchingPoint": "Branching Point"
|
|
261
|
+
},
|
|
262
|
+
"config": {
|
|
263
|
+
"title": "Configuration: {{name}}"
|
|
264
|
+
}
|
|
265
|
+
}
|
|
266
|
+
;
|
|
267
|
+
|
|
268
|
+
export default _default;
|
|
@@ -0,0 +1,268 @@
|
|
|
1
|
+
declare const _default: {
|
|
2
|
+
"components": {
|
|
3
|
+
"groups": {
|
|
4
|
+
"basic": {
|
|
5
|
+
"name": "Composants basiques"
|
|
6
|
+
},
|
|
7
|
+
"gates": {
|
|
8
|
+
"name": "Portes logiques"
|
|
9
|
+
},
|
|
10
|
+
"arithmetic": {
|
|
11
|
+
"name": "Arithmétique"
|
|
12
|
+
}
|
|
13
|
+
},
|
|
14
|
+
"battery": {
|
|
15
|
+
"name": "Pile"
|
|
16
|
+
},
|
|
17
|
+
"clock": {
|
|
18
|
+
"name": "Horloge",
|
|
19
|
+
"config": {
|
|
20
|
+
"fields": {
|
|
21
|
+
"startHigh": { "name": "Démarrer haut ?" },
|
|
22
|
+
"halfPeriod": { "name": "Demi-période" }
|
|
23
|
+
}
|
|
24
|
+
}
|
|
25
|
+
},
|
|
26
|
+
"label": {
|
|
27
|
+
"name": "Libellé",
|
|
28
|
+
"config": {
|
|
29
|
+
"fields": {
|
|
30
|
+
"text": { "name": "Texte" },
|
|
31
|
+
"size": { "name": "Taille" }
|
|
32
|
+
}
|
|
33
|
+
}
|
|
34
|
+
},
|
|
35
|
+
"switch": {
|
|
36
|
+
"name": "Interrupteur",
|
|
37
|
+
"config": {
|
|
38
|
+
"fields": {
|
|
39
|
+
"initialState": { "name": "Ouvert au démarrage" },
|
|
40
|
+
"transitionSpan": { "name": "Délai (ticks)" },
|
|
41
|
+
"size": { "name": "Taille" }
|
|
42
|
+
}
|
|
43
|
+
}
|
|
44
|
+
},
|
|
45
|
+
"doubleThrowSwitch": {
|
|
46
|
+
"name": "Interrupteur 2-1",
|
|
47
|
+
"config": {
|
|
48
|
+
"fields": {
|
|
49
|
+
"initialState": { "name": "Entrée 1 au démarrage" },
|
|
50
|
+
"transitionSpan": { "name": "Délai (ticks)" },
|
|
51
|
+
"size": { "name": "Taille" }
|
|
52
|
+
}
|
|
53
|
+
}
|
|
54
|
+
},
|
|
55
|
+
"lightbulb": {
|
|
56
|
+
"name": "Ampoule",
|
|
57
|
+
"config": {
|
|
58
|
+
"fields": {
|
|
59
|
+
"transitionSpan": { "name": "Délai d'allumage (ticks)" },
|
|
60
|
+
"size": { "name": "Taille" }
|
|
61
|
+
}
|
|
62
|
+
}
|
|
63
|
+
},
|
|
64
|
+
"rectangleLED": {
|
|
65
|
+
"name": "LED rectangulaire",
|
|
66
|
+
"config": {
|
|
67
|
+
"fields": {
|
|
68
|
+
"transitionSpan": { "name": "Délai d'allumage (ticks)" },
|
|
69
|
+
"idleColor": { "name": "Couleur inactive" },
|
|
70
|
+
"activeColor": { "name": "Couleur active" },
|
|
71
|
+
"size": { "name": "Taille" },
|
|
72
|
+
"hwRatio": { "name": "Ratio H/L" },
|
|
73
|
+
"ywRatio": { "name": "Ratio Y/L" }
|
|
74
|
+
}
|
|
75
|
+
}
|
|
76
|
+
},
|
|
77
|
+
"relay": {
|
|
78
|
+
"name": "Relais",
|
|
79
|
+
"config": {
|
|
80
|
+
"fields": {
|
|
81
|
+
"activationLogic": { "name": "Logique d'activation" },
|
|
82
|
+
"transitionSpan": { "name": "Durée de transition (ticks)" },
|
|
83
|
+
"size": { "name": "Taille" },
|
|
84
|
+
"initializationOrder": { "name": "Ordre d'initialisation" }
|
|
85
|
+
}
|
|
86
|
+
}
|
|
87
|
+
},
|
|
88
|
+
"smallLED": {
|
|
89
|
+
"name": "Petite LED",
|
|
90
|
+
"config": {
|
|
91
|
+
"fields": {
|
|
92
|
+
"transitionSpan": { "name": "Délai d'allumage (ticks)" },
|
|
93
|
+
"idleColor": { "name": "Couleur inactive" },
|
|
94
|
+
"activeColor": { "name": "Couleur active" },
|
|
95
|
+
"size": { "name": "Taille" },
|
|
96
|
+
"ywRatio": { "name": "Ratio Y/L" }
|
|
97
|
+
}
|
|
98
|
+
}
|
|
99
|
+
},
|
|
100
|
+
"inverter": {
|
|
101
|
+
"name": "Inverseur",
|
|
102
|
+
"config": {
|
|
103
|
+
"fields": {
|
|
104
|
+
"defaultLogicFamily": { "name": "Famille logique" },
|
|
105
|
+
"activationLogic": { "name": "Logique d'activation" },
|
|
106
|
+
"transitionSpan": { "name": "Délai de propagation (ticks)" },
|
|
107
|
+
"initializationOrder": { "name": "Ordre d'initialisation" }
|
|
108
|
+
}
|
|
109
|
+
}
|
|
110
|
+
},
|
|
111
|
+
"nandGate": {
|
|
112
|
+
"name": "Porte NAND",
|
|
113
|
+
"config": {
|
|
114
|
+
"fields": {
|
|
115
|
+
"defaultLogicFamily": { "name": "Famille logique" },
|
|
116
|
+
"activationLogic": { "name": "Logique d'activation" },
|
|
117
|
+
"transitionSpan": { "name": "Délai de propagation (ticks)" },
|
|
118
|
+
"initializationOrder": { "name": "Ordre d'initialisation" }
|
|
119
|
+
}
|
|
120
|
+
}
|
|
121
|
+
},
|
|
122
|
+
"nand4Gate": {
|
|
123
|
+
"name": "Porte NAND 4 entrées",
|
|
124
|
+
"config": {
|
|
125
|
+
"fields": {
|
|
126
|
+
"defaultLogicFamily": { "name": "Famille logique" },
|
|
127
|
+
"activationLogic": { "name": "Logique d'activation" },
|
|
128
|
+
"transitionSpan": { "name": "Délai de propagation (ticks)" },
|
|
129
|
+
"initializationOrder": { "name": "Ordre d'initialisation" }
|
|
130
|
+
}
|
|
131
|
+
}
|
|
132
|
+
},
|
|
133
|
+
"nand8Gate": {
|
|
134
|
+
"name": "Porte NAND 8 entrées",
|
|
135
|
+
"config": {
|
|
136
|
+
"fields": {
|
|
137
|
+
"defaultLogicFamily": { "name": "Famille logique" },
|
|
138
|
+
"activationLogic": { "name": "Logique d'activation" },
|
|
139
|
+
"transitionSpan": { "name": "Délai de propagation (ticks)" },
|
|
140
|
+
"initializationOrder": { "name": "Ordre d'initialisation" }
|
|
141
|
+
}
|
|
142
|
+
}
|
|
143
|
+
},
|
|
144
|
+
"norGate": {
|
|
145
|
+
"name": "Porte NOR",
|
|
146
|
+
"config": {
|
|
147
|
+
"fields": {
|
|
148
|
+
"defaultLogicFamily": { "name": "Famille logique" },
|
|
149
|
+
"activationLogic": { "name": "Logique d'activation" },
|
|
150
|
+
"transitionSpan": { "name": "Délai de propagation (ticks)" },
|
|
151
|
+
"initializationOrder": { "name": "Ordre d'initialisation" }
|
|
152
|
+
}
|
|
153
|
+
}
|
|
154
|
+
},
|
|
155
|
+
"nor4Gate": {
|
|
156
|
+
"name": "Porte NOR 4 entrées",
|
|
157
|
+
"config": {
|
|
158
|
+
"fields": {
|
|
159
|
+
"defaultLogicFamily": { "name": "Famille logique" },
|
|
160
|
+
"activationLogic": { "name": "Logique d'activation" },
|
|
161
|
+
"transitionSpan": { "name": "Délai de propagation (ticks)" },
|
|
162
|
+
"initializationOrder": { "name": "Ordre d'initialisation" }
|
|
163
|
+
}
|
|
164
|
+
}
|
|
165
|
+
},
|
|
166
|
+
"nor8Gate": {
|
|
167
|
+
"name": "Porte NOR 8 entrées",
|
|
168
|
+
"config": {
|
|
169
|
+
"fields": {
|
|
170
|
+
"defaultLogicFamily": { "name": "Famille logique" },
|
|
171
|
+
"activationLogic": { "name": "Logique d'activation" },
|
|
172
|
+
"transitionSpan": { "name": "Délai de propagation (ticks)" },
|
|
173
|
+
"initializationOrder": { "name": "Ordre d'initialisation" }
|
|
174
|
+
}
|
|
175
|
+
}
|
|
176
|
+
},
|
|
177
|
+
"xorGate": {
|
|
178
|
+
"name": "Porte XOR",
|
|
179
|
+
"config": {
|
|
180
|
+
"fields": {
|
|
181
|
+
"defaultLogicFamily": { "name": "Famille logique" },
|
|
182
|
+
"activationLogic": { "name": "Logique d'activation" },
|
|
183
|
+
"transitionSpan": { "name": "Délai de propagation (ticks)" },
|
|
184
|
+
"initializationOrder": { "name": "Ordre d'initialisation" }
|
|
185
|
+
}
|
|
186
|
+
}
|
|
187
|
+
},
|
|
188
|
+
"xor4Gate": {
|
|
189
|
+
"name": "Porte XOR 4 entrées",
|
|
190
|
+
"config": {
|
|
191
|
+
"fields": {
|
|
192
|
+
"defaultLogicFamily": { "name": "Famille logique" },
|
|
193
|
+
"activationLogic": { "name": "Logique d'activation" },
|
|
194
|
+
"transitionSpan": { "name": "Délai de propagation (ticks)" },
|
|
195
|
+
"initializationOrder": { "name": "Ordre d'initialisation" }
|
|
196
|
+
}
|
|
197
|
+
}
|
|
198
|
+
},
|
|
199
|
+
"xor8Gate": {
|
|
200
|
+
"name": "Porte XOR 8 entrées",
|
|
201
|
+
"config": {
|
|
202
|
+
"fields": {
|
|
203
|
+
"defaultLogicFamily": { "name": "Famille logique" },
|
|
204
|
+
"activationLogic": { "name": "Logique d'activation" },
|
|
205
|
+
"transitionSpan": { "name": "Délai de propagation (ticks)" },
|
|
206
|
+
"initializationOrder": { "name": "Ordre d'initialisation" }
|
|
207
|
+
}
|
|
208
|
+
}
|
|
209
|
+
},
|
|
210
|
+
"halfAdder": {
|
|
211
|
+
"name": "Demi-additionneur",
|
|
212
|
+
"config": {
|
|
213
|
+
"fields": {
|
|
214
|
+
"defaultLogicFamily": { "name": "Famille logique" },
|
|
215
|
+
"transitionSpan": { "name": "Délai de propagation (ticks)" },
|
|
216
|
+
"initializationOrder": { "name": "Ordre d'initialisation" }
|
|
217
|
+
}
|
|
218
|
+
}
|
|
219
|
+
},
|
|
220
|
+
"adder": {
|
|
221
|
+
"name": "Additionneur",
|
|
222
|
+
"config": {
|
|
223
|
+
"fields": {
|
|
224
|
+
"defaultLogicFamily": { "name": "Famille logique" },
|
|
225
|
+
"transitionSpan": { "name": "Délai de propagation (ticks)" },
|
|
226
|
+
"initializationOrder": { "name": "Ordre d'initialisation" }
|
|
227
|
+
}
|
|
228
|
+
}
|
|
229
|
+
},
|
|
230
|
+
"eightBitAdder": {
|
|
231
|
+
"name": "Additionneur 8 bits",
|
|
232
|
+
"config": {
|
|
233
|
+
"fields": {
|
|
234
|
+
"defaultLogicFamily": { "name": "Famille logique" },
|
|
235
|
+
"transitionSpan": { "name": "Délai de propagation (ticks)" },
|
|
236
|
+
"initializationOrder": { "name": "Ordre d'initialisation" }
|
|
237
|
+
}
|
|
238
|
+
}
|
|
239
|
+
},
|
|
240
|
+
"eightBitOnesComplement": {
|
|
241
|
+
"name": "Complément à Un 8 bits",
|
|
242
|
+
"config": {
|
|
243
|
+
"fields": {
|
|
244
|
+
"defaultLogicFamily": { "name": "Famille logique" },
|
|
245
|
+
"transitionSpan": { "name": "Délai de propagation (ticks)" },
|
|
246
|
+
"initializationOrder": { "name": "Ordre d'initialisation" }
|
|
247
|
+
}
|
|
248
|
+
}
|
|
249
|
+
},
|
|
250
|
+
"default": {
|
|
251
|
+
"config": {
|
|
252
|
+
"fields": {
|
|
253
|
+
"color": { "name": "Couleur" }
|
|
254
|
+
}
|
|
255
|
+
}
|
|
256
|
+
}
|
|
257
|
+
},
|
|
258
|
+
"picker": {
|
|
259
|
+
"title": "Composants",
|
|
260
|
+
"branchingPoint": "Point de jonction"
|
|
261
|
+
},
|
|
262
|
+
"config": {
|
|
263
|
+
"title": "Configuration: {{name}}"
|
|
264
|
+
}
|
|
265
|
+
}
|
|
266
|
+
;
|
|
267
|
+
|
|
268
|
+
export default _default;
|
package/dist/index.d.ts
CHANGED