<html><head><meta http-equiv="Content-Type" content="text/html; charset=utf-8"></head><body style="word-wrap: break-word; -webkit-nbsp-mode: space; line-break: after-white-space;" class="">Hallo,<div class=""><br class=""></div><div class="">Ich habe einen TipToi mit 8GB Speicherplatz. Wir haben ihn vor zwei oder drei Jahren zu Weihnachten erhalten. In der Tabelle auf github gibt es jedoch kein Model mit 8 GB Speicher, aber wir haben sicher eher ein neueres Model.</div><div class=""><br class=""></div><div class="">Hier noch mein LanguageInfo2.txt file. Ich weiss nicht ob diese Info evtl. nützlich ist:</div><div class=""><div style="margin: 0px; font-stretch: normal; font-size: 11px; line-height: normal; font-family: Menlo;" class="">5</div><div style="margin: 0px; font-stretch: normal; font-size: 11px; line-height: normal; font-family: Menlo;" class=""><span style="font-variant-ligatures: no-common-ligatures" class="">999 GERMAN Update3203L.upd</span></div><div style="margin: 0px; font-stretch: normal; font-size: 11px; line-height: normal; font-family: Menlo;" class=""><span style="font-variant-ligatures: no-common-ligatures" class="">998 FRENCH Update3203L_fr.upd</span></div><div style="margin: 0px; font-stretch: normal; font-size: 11px; line-height: normal; font-family: Menlo;" class=""><span style="font-variant-ligatures: no-common-ligatures" class="">997 DUTCH Update3203L_nl.upd</span></div><div style="margin: 0px; font-stretch: normal; font-size: 11px; line-height: normal; font-family: Menlo;" class=""><span style="font-variant-ligatures: no-common-ligatures" class="">996 ITALIAN Update3203L_it.upd</span></div><div style="margin: 0px; font-stretch: normal; font-size: 11px; line-height: normal; font-family: Menlo;" class=""><span style="font-variant-ligatures: no-common-ligatures" class="">995 RUSSIA Update3203L_ru.upd</span></div><div style="margin: 0px; font-stretch: normal; font-size: 11px; line-height: normal; font-family: Menlo;" class=""><span style="font-variant-ligatures: no-common-ligatures" class="">994 ENGLISH Update3203L_en.upd</span></div></div><div style="margin: 0px; font-stretch: normal; font-size: 11px; line-height: normal; font-family: Menlo;" class=""><span style="font-variant-ligatures: no-common-ligatures" class=""><br class=""></span></div><div style="margin: 0px; font-stretch: normal; font-size: 11px; line-height: normal; font-family: Menlo;" class=""><br class=""></div><div style="margin: 0px; font-stretch: normal; font-size: 11px; line-height: normal; font-family: Menlo;" class=""><span style="font-family: Helvetica; font-size: 12px;" class="">Und Vielen Dank für die Tips mit den J() und P() Befehlen.</span><br style="font-family: Helvetica; font-size: 12px;" class=""></div><div style="margin: 0px; font-stretch: normal; line-height: normal;" class="">Ich habe dabei verschiedene Versionen ausprobiert, wie die Memory-Karten am Anfang gemischt werden und dabei tatsächlich eine akzeptable Lösung gefunden.</div><div style="margin: 0px; font-stretch: normal; line-height: normal;" class="">Ich habe die Tests auf einem 4x4 Memory Spielfeld gemacht. In meinem Script sind dabei 16 J(x) Befehle nötig ohne:</div><div style="margin: 0px; font-stretch: normal; line-height: normal;" class=""><br class=""></div><div style="margin: 0px; font-stretch: normal; line-height: normal;" class="">Mein ursprünglicher Ansatz bestand aus solchen Scripts und brauchte für 16 Jumps ungefähr 27 Sekunden:</div><div style="margin: 0px; font-stretch: normal; line-height: normal;" class=""><div style="color: rgb(212, 212, 212); background-color: rgb(30, 30, 30); font-family: Menlo, Monaco, "Courier New", monospace; line-height: 18px; white-space: pre;" class=""><div class=""><span style="color: #569cd6;" class="">shuffle0</span>:</div><div class="">  - <span style="color: rgb(206, 145, 120);" class="">$pos==1? $t:=$c0 $c0:=$c1 $c1:=$t $rnd*=25173 $rnd+=13849 $pos:=$rnd $pos%=15 J(shuffle1)</span></div></div></div><div class=""><br class=""></div><div class="">Ich habe den J() Befehl vorgezogen. Keine Verbesserung, Dauer: 27s</div><div class=""><div style="margin: 0px; font-stretch: normal; line-height: normal;" class=""><div style="color: rgb(212, 212, 212); background-color: rgb(30, 30, 30); font-family: Menlo, Monaco, "Courier New", monospace; line-height: 18px; white-space: pre;" class=""><div class=""><span style="color: rgb(86, 156, 214);" class="">shuffle0V1</span>:</div><div class="">  - <span style="color: rgb(206, 145, 120);" class="">$pos==1? $</span><span style="caret-color: rgb(206, 145, 120); color: rgb(206, 145, 120);" class="">J(shuffle1V1) </span><span style="color: rgb(206, 145, 120);" class="">t:=$c0 $c0:=$c1 $c1:=$t $rnd*=25173 $rnd+=13849 $pos:=$rnd $pos%=15</span></div></div></div></div><div class=""><div><br class=""></div><div>Ich habe auch versucht am Anfang einen 10s langen Sound abzuspielen und anschliessend eine der obigen Varianten (in der Hoffnung, dass das Script parallel zum Sound weiter läuft und ich während dem Mischen eine Musik abspielen kann.) Das hat überhaupt nicht funktioniert, die Dauer ist einfach von 27 auf 37s angestiegen :).</div><div><br class=""></div><div>Dann habe ich hinter alle J() ein P(nop) eingefügt mit einem kurzen Sound. Dabei hat mich das Tool gewarnt, dass ich nun >8 Befehle aufführte. Ich habe es trotzdem ausprobiert. Die Dauer war tatsächlich etwas verkürzt, jedoch wurden die Töne in unregelmässigen Abständen und deutlicher weniger als 16 mal abgespielt - also die Warnung mit max 8 Befehlen ist wirklich ernst zu nehmen!</div><div><br class=""></div><div>Ich konnte das Script leicht umbauen um nicht mehr als 8 Befehle aufzuführen. Und mit einem ’nop’ sound habe brauchen die 16 Jumps nun tatsächlich nur noch 5 Sekunden! (Und ich kann auch die 16 kurzen Rauschtöne hören wenn die ’nop’ Datei abgespielt wird):</div><div><div style="color: rgb(212, 212, 212); background-color: rgb(30, 30, 30); font-family: Menlo, Monaco, "Courier New", monospace; line-height: 18px; white-space: pre;" class=""><div style="line-height: 18px;" class=""><div class="">  <span style="color: #569cd6;" class="">shuffle0V3</span>:</div><div class="">  - <span style="color: rgb(206, 145, 120);" class="">$pos==1? $t:=$c0 $c0:=$c1 $c1:=$t $pos:=$rnd $pos%=15 $rnd/=15 J(shuffle1V3) P(nop)</span></div><div class=""></div></div></div></div><div><br class=""></div><div>Da die 16 Geräusche knapp hörbar sind, wollte ich eine leere Sound-Datei kreieren (hab das mit Audacity versucht). Aber, mit einer vollständig leeren Datei hat das ganze 37s gedauert - also eine sehr kurze Datei ist viel besser als einen leere?!.</div><div><br class=""></div><div><br class=""></div><div>Der Rest vom Script habe ich noch nicht angepasst, aber die P(nop)-Lösung scheint mir gut genug um die Hoffnung an meinem Projekt nicht zu verlieren.</div><div>Vielleicht kann ich auch noch einige Jump Befehle eliminieren und durch mehr repetitive Scripts ersetzten. Ich melde mich dann nochmal wenn ich ein finales Resultat habe.</div><div><br class=""></div><div><br class=""></div><div>Vielen herzlichen Dank!</div><div>Andreas</div><div><br class=""></div><div><br class=""></div><div><br class=""><blockquote type="cite" class=""><div class="">On 27 Aug 2020, at 09:09, Ulrich Sibiller via tiptoi <<a href="mailto:tiptoi@lists.nomeata.de" class="">tiptoi@lists.nomeata.de</a>> wrote:</div><br class="Apple-interchange-newline"><div class=""><div class="">On Thu, Aug 27, 2020 at 2:04 AM Michael Thon via tiptoi<br class=""><<a href="mailto:tiptoi@lists.nomeata.de" class="">tiptoi@lists.nomeata.de</a>> wrote:<br class=""><blockquote type="cite" class=""><blockquote type="cite" class=""><blockquote type="cite" class=""><blockquote type="cite" class="">Die neuen Tiptoi-Stifte (die mit der Audiobook-Funktion) verhalten sich bisweilen seltsam, wenn J- und P-Befehle gemischt werden.<br class=""><br class="">TODO: Was genau passiert hier?<br class=""></blockquote></blockquote></blockquote><br class="">So ganz klar ist nicht, was genau da passiert. Einfach mal ausprobieren.<br class=""></blockquote><br class="">@Andreas: Welche Version des Tiptoi hast du? (siehe<br class=""><a href="https://github.com/entropia/tip-toi-reveng/wiki/PEN-Revisions" class="">https://github.com/entropia/tip-toi-reveng/wiki/PEN-Revisions</a>)<br class=""><br class="">Uli<br class=""><br class="">-- <br class="">tiptoi mailing list<br class=""><a href="mailto:tiptoi@lists.nomeata.de" class="">tiptoi@lists.nomeata.de</a><br class="">https://lists.nomeata.de/mailman/listinfo/tiptoi<br class=""></div></div></blockquote></div><br class=""></div></body></html>