-
Notifications
You must be signed in to change notification settings - Fork 0
/
template.html
370 lines (348 loc) · 11.4 KB
/
template.html
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
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title></title>
<style type="text/css">
body {
background-color: black;
height: 100vh;
margin: 0;
overflow: hidden;
color: grey;
font: 1.3rem Inconsolata, monospace;
}
p {
margin: 0;
}
#output {
width: 100%;
max-height: 100%;
overflow-y: scroll;
overflow-x: hidden;
}
#output::-webkit-scrollbar {
display: none;
}
textarea {
width: 100%;
text-decoration: none;
color: grey;
opacity: 0.9;
border: none;
font: 1.3rem Inconsolata, monospace;
background-color: transparent;
resize: none;
outline: none;
}
</style>
</head>
<body>
<div id="output">
<p></p>
<textarea autofocus placeholder="message..." onkeypress="process(event, this)"></textarea>
</div>
<script type="text/javascript">
const sousseparateur = '--'
var miaou = {
initier: function (donnees) {
miaou.datas = donnees
miaou.dialogue = donnees
miaou.chemin = new Array()
miaou.drapeaux = ''
miaou.variables = []
miaou.compteurs = []
miaou.stocker = []
miaou.visites = []
miaou.derniererequete
},
adresse: function (id, tableau) {
var encours = tableau
var suivants = new Array()
var resultat = ''
var chemins = new Array()
var cheminssuivants = new Array()
var indice
while (encours.length) {
indice = 0
encours.forEach(function (boite, index) {
if (boite.identifiant == id) {
var precedent = chemins[index]
if (precedent == null) precedent = ''
else precedent += '/'
resultat = precedent + boite.identifiant
}
if (boite.suite.length) {
suivants = suivants.concat(boite.suite)
var precedent = chemins[index]
if (precedent == null) precedent = ''
else precedent += '/'
for (var i = 0; i < boite.suite.length; i++) {
cheminssuivants[indice + i] = precedent + boite.identifiant
}
indice += boite.suite.length
}
})
encours = suivants
suivants = new Array()
chemins = cheminssuivants
cheminssuivants = new Array()
}
return resultat.split('/')
},
si: function (index) {
if (miaou.dialogue[index].si == null) return true
var reg = RegExp(miaou.dialogue[index].si)
return reg.test(miaou.drapeaux)
},
sauf: function (index) {
if (miaou.dialogue[index].sauf == null) return true
var reg = RegExp(miaou.dialogue[index].sauf)
return !reg.test(miaou.drapeaux)
},
conditionner: function (condition) {
//var reg=RegExp('\\[.*?\\]');
var nomVars = [...condition['matchAll']('\\[.*?\\]')]
if (nomVars != null) {
for (var search = 0; search < nomVars.length; search++) {
var nomVar = nomVars[search][0].replace('[', '')
nomVar = nomVar.replace(']', '')
var Var = miaou.variables[nomVar]
if (Var == null) Var = 0
if (Var != null) condition = condition.replace(nomVars[search][0], Var)
}
}
return condition
},
condition: function (index) {
if (miaou.dialogue[index].si == null) return true
miaou.conditionner(miaou.dialogue[index].si)
try {
var condi = miaou.conditionner(miaou.dialogue[index].si)
if (eval(condi)) return true
else return false
} catch (error) {
console.error('erreure dans la condition de la boite :' + miaou.dialogue[index].nom)
console.error(error)
return true
}
},
predef: function () {
//date
var date = new Date()
//jour de la semaine
var nday = date.getDay()
var days = ['sunday', 'monday', 'tuesday', 'wednesday', 'thursday', 'friday', 'saturday']
miaou.variables['DAY'] = days[nday]
var jours = ['dimanche', 'lundi', 'mardi', 'mercredi', 'jeudi', 'vendredi', 'samedi']
miaou.variables['JOUR'] = jours[nday]
//mois
var nmonth = date.getMonth()
var months = ['january', 'february', 'march', 'april', 'may', 'june', 'july', 'august', 'september', 'october', 'november', 'december']
miaou.variables['MONTH'] = months[nmonth]
var mois = ['janvier', 'février', 'mars', 'avril', 'mai', 'juin', 'juillet', 'août', 'septembre', 'octobre', 'novembre', 'décembre']
miaou.variables['MOIS'] = mois[nmonth]
//annee
miaou.variables['YEAR'] = date.getFullYear()
miaou.variables['ANNEE'] = date.getFullYear()
//heure
miaou.variables['HOUR'] = date.getHours() + ':' + date.getMinutes()
//delai
if (miaou.derniererequete != null) miaou.variables['DELAY'] = Math.floor((Date.now() - miaou.derniererequete) / 1000)
miaou.derniererequete = Date.now()
},
chercher: function (recherche) {
//variables pré-définies
miaou.predef()
var retour = {
reponse: null,
index: null,
chemin: new Array(),
}
recherche = recherche.toLowerCase()
if (miaou.stocker.length) {
for (var vr = 0; vr < miaou.stocker.length; vr++) {
miaou.variables[miaou.stocker[vr]] = recherche
}
}
// /!\ VOUS RENTREZ DANS LES BOUCLES i ET J
for (i = 0; i < miaou.dialogue.length; i++) {
for (j = 0; j < miaou.dialogue[i].declencheur.length; j++) {
var declencheur = miaou.dialogue[i].declencheur[j].toLowerCase()
var reg = RegExp(declencheur)
if (reg.test(recherche) && miaou.condition(i)) {
var rand
//nombre de visites
var identifiant = miaou.dialogue[i].identifiant
if (miaou.visites[identifiant] == null) miaou.visites[identifiant] = 0
else miaou.visites[identifiant]++
//si plusieurs réponses possibles
if (Array.isArray(miaou.dialogue[i].reponse)) {
//si mode random
if (miaou.dialogue[i].mode == '' || miaou.dialogue[i].mode == null) {
rand = miaou.dialogue[i].reponse[Math.floor(Math.random() * miaou.dialogue[i].reponse.length)]
}
//si mode suite
else if (miaou.dialogue[i].mode == 'suite') {
var nr = miaou.visites[identifiant]
if (nr >= miaou.dialogue[i].reponse.length) nr = miaou.dialogue[i].reponse.length - 1
rand = miaou.dialogue[i].reponse[nr]
}
//si mode loop
else if (miaou.dialogue[i].mode == 'loop') {
var nr = miaou.visites[identifiant] % miaou.dialogue[i].reponse.length
rand = miaou.dialogue[i].reponse[nr]
}
//rand=miaou.dialogue[i].reponse.join(sousseparateur);
} else rand = miaou.dialogue[i].reponse
//chemin renvoyé pour l'interface
retour.chemin = [...miaou.chemin]
//temps
if (miaou.dialogue[i].temps != null) {
retour.temps = parseInt(miaou.dialogue[i].temps)
} else {
retour.temps = 0
}
//medias
retour.son = miaou.dialogue[i].son
retour.image = miaou.dialogue[i].image
retour.loop = miaou.dialogue[i].loop == 'on'
//tags et couleurs
retour.couleur = miaou.dialogue[i].couleur
if (retour.couleur == '#8f88f9') retour.couleur = null
retour.tag = miaou.dialogue[i].tag
//ajouter drapeaux
if (miaou.dialogue[i].drapeau != null) {
for (var dr = 0; dr < miaou.dialogue[i].drapeau.length; dr++) {
var nomDrapeau = miaou.dialogue[i].drapeau[dr]
if (miaou.variables[nomDrapeau] == null) miaou.variables[nomDrapeau] = 1
else miaou.variables[nomDrapeau]++
}
}
//variables
var nomVars = [...rand['matchAll']('\\[.*?\\]')]
if (nomVars != null) {
for (var search = 0; search < nomVars.length; search++) {
var nomVar = nomVars[search][0].replace('[', '')
nomVar = nomVar.replace(']', '')
var Var = miaou.variables[nomVar]
if (Var != null) rand = rand.replace(nomVars[search][0], Var)
else rand = rand.replace(nomVars[search][0], '')
}
}
if (miaou.dialogue[i].variable != null) {
for (var vr = 0; vr < miaou.dialogue[i].variable.length; vr++) {
miaou.stocker[vr] = miaou.dialogue[i].variable[vr]
}
} else miaou.stocker = []
//dialogues imbriqués
if (miaou.dialogue[i].suite.length) {
miaou.chemin.push(miaou.dialogue[i].identifiant)
}
//retour avant
if (miaou.dialogue[i].retour == 'on') {
miaou.chemin.splice(-1, 1)
}
//liens
if (miaou.dialogue[i].lien != null) {
if (miaou.dialogue[i].lien == '') {
//rien
} else if (miaou.dialogue[i].lien == 'retour') {
//retour
miaou.chemin.splice(-1, 1)
} else if (miaou.dialogue[i].lien == 'home') {
miaou.chemin = new Array()
} else {
miaou.chemin = miaou.adresse(miaou.dialogue[i].lien, miaou.datas)
}
}
//charger le chemin
miaou.objet = [...miaou.datas]
if (!miaou.chemin.length) miaou.chemin = new Array()
miaou.suivant
for (var n = 0; n < miaou.chemin.length; n++) {
for (var j = 0; j < miaou.objet.length; j++) {
if (miaou.objet[j].identifiant == miaou.chemin[n]) {
miaou.objet = miaou.objet[j].suite
break
}
}
}
miaou.dialogue = miaou.objet
console
rand = rand.split(sousseparateur)
retour.reponse = rand
retour.index = i
return retour
}
}
}
},
}
//tablo
miaou.initier(dialogues)
//créer player audio & fonction boucle
var sonloop = false
var myAudio = new Audio()
myAudio.addEventListener(
'ended',
function () {
if (sonloop) {
this.currentTime = 0
this.play()
}
},
false
)
var prochainereponse
var lancerson = false
function process(e) {
var code = e.keyCode ? e.keyCode : e.which
if (code == 13) {
e.preventDefault()
element = document.querySelector('p')
var requete = document.querySelector('textarea').value
var retour = miaou.chercher(requete)
var reponse = ''
var delai = 0
if (retour != null) {
reponse = retour.reponse
delai = retour.temps * 1000
//lancer fichier son en boucle ou non
if (retour.son != null) {
myAudio.src = retour.son
sonloop = retour.loop
lancerson = true
}
}
var txt = '<p>>>' + document.querySelector('textarea').value + '</p>'
element.innerHTML += txt
document.querySelector('textarea').value = null
document.getElementById('output').scrollTop = document.getElementById('output').scrollHeight
for (var i = 0; i < reponse.length; i++) {
var temps = delai
if (new Date().getTime() < prochainereponse) {
if (delai == 0) delai = 100
temps = delai + prochainereponse - new Date().getTime()
}
prochainereponse = temps + new Date().getTime()
var couleur = ''
if (retour.couleur != null) couleur = retour.couleur
var tag = ''
if (retour.tag != null) tag = retour.tag
setTimeout(repondre, temps, reponse[i], couleur, tag)
}
}
}
function repondre(reponse, couleur, tag) {
if (lancerson) {
myAudio.play()
lancerson = false
}
var txt = "<p class='" + tag + "'style='color:" + couleur + "'>" + reponse + '</p>'
element.innerHTML += txt
document.getElementById('output').scrollTop = document.getElementById('output').scrollHeight
}
</script>
</body>
</html>