This week on RISC OS FR: stock clearance
David Feugey (2125) 2709 posts |
This week on RISC OS FR: stock clearance - +110 RISC OS 5 software in our database (619 references) - 27 new founts - midi : 15 all new mp3 + new tools – Thanks Rick and Serge for all the help - Remake of all the sound files + 7 new sounds - ports : special benchmarks - 3 new tools made in BBC Basic - Next week? There won’t be any update until the end of the year, as we work on a surprise for all RISC OS users. See you soon on www.riscos.fr Let’s switch to french… Cette semaine sur RISC OS FR : liquidation de stock - +110 logiciel RISC OS 5 dans notre base de données (soit un total de 619 références) - 27 nouvelles polices de caractères - midi : 15 nouveaux fichiers MP3 + de nouveaux outils – Merci à Rick et Serge pour l’aide apportée - Remake de tous les fichiers son et 7 nouveaux sons - ports : spécial benchmarks - 3 nouveaux outils écrits en BBC Basic - La semaine prochaine ? Il n’y aura plus de mise à jour avant la fin de l’année, car nous travaillons sur une petite surprise dédiée aux utilisateurs RISC OS. N’oubliez pas la liste de discussion RISC OS FR. Vous y retrouverez des discussions, mais aussi des services exclusifs : bulletins d’information et alertes eBay sur les produits susceptibles de vous intéresser. Plus de détails ici : http://www.riscos.fr/discutez.html. A bientôt sur RISC OS FR. |
Rick Murray (539) 13806 posts |
You should change the MIDI module link to module alpha6 (you have alpha4). This is the one with the option to add a delay for…lacklustre MIDI hardware…as mentioned here: http://www.heyrick.co.uk/blog/index.php?diary=20141122 If you feel like playing around inside Maestro, you might be able to make a better method of supporting big music files by working out how much room is needed and then calling Wimp_SlotSize, instead of putting “a really big WimpSlot” into the !Run file. :-) Look forward to seeing what turns up in the new year! Autrement: Le lien pour le module MIDI est ancien. Vous avez “alpha4”, c’est “alpha6” maintenant. C’est l’un avec le delai pour les adaptateurs MIDI un peu…merdique; comme je dit ici: http://www.riscos.fr/ressources/midi-maestro/index.html Il y un autre moyen pour faire les grands fichiers sur Maestro. Dans le code source, calculez le taille de les données, puis mettre plus grand directement avec Wimp_SlotSize. C’est mieux que mettre tout simplement “un gros chiffre vers WimpSlot” dans le fichier !Run. :-) J’attendre vos nouveautées dans le nouvelle année! It’s late. I’ve been staring at C half the day. Forgive me if my French sucks more than usual. |
David Feugey (2125) 2709 posts |
Dammit. I forget it :)
Maestro source code is not really readable.
printf(“no problemo”); |
Rick Murray (539) 13806 posts |
I hope you’re looking at this, and not the crunched BASIC supplied with the disc image… ;-) |
David Feugey (2125) 2709 posts |
Re-Oups! Much better yes :) |
Steve Drain (222) 1620 posts |
Use |
David Feugey (2125) 2709 posts |
There is already an END=xxx in the source code. I suspect a more complex problem, as variables that grow in size (and leave part of the basic memory unusable). Because of these memory issues, string variables should always been fully populated at start (with spaces if needed). It’s not the case here. After lots of loads, Maestro just crash. Perhaps because of this… perhaps not.
I don’t work in a bank :) |
Martin Avison (27) 1491 posts |
Reporter may help to monitor space used by Basic variables. Unused space can come from strings that have been moved to make them bigger, but this free space is not ‘unusable’ as it can be re-used by other string variables. *ReporterMem can also display the ‘unused’ string space block sizes and numbers. And many other things! |
David Feugey (2125) 2709 posts |
Good to know :) |