91
Other Calculators / Re: TI-Concours, a french programming contest for 68k/z80
« on: March 16, 2012, 11:55:43 am »
I can't wait to receive your programs.
This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to. 91
Other Calculators / Re: TI-Concours, a french programming contest for 68k/z80« on: March 16, 2012, 11:55:43 am »
I can't wait to receive your programs.
92
Art / Re: saintrunner Sprites (my best pxl work)« on: March 14, 2012, 05:50:10 pm »Wow....lol.... I haven't sprited in a while umm.Is it due to minecraft ? Good luck on it. 93
[FR] Programmation Axe Parser / Re: [Axe parser] : projet worms« on: March 13, 2012, 05:20:50 pm »
J'avoue que ce n'est pas très clair, mais c'est un brouillon pour la suite : je compte d'abords faire le moteur de déplacement des worms et le système de visé qui ne nécessite pas de gravité. Après viendra le moteur avec les sauts et les chutes, puis le reste coulera plus "facilement" une fois qu'on aura une bonne organisation.
Ou sinon, voici l'éditeur de dessin avec le bug des 7 dernières lignes corrigé. 94
Computer Projects and Ideas / Re: BexIDE -- An Axe/(Extended) BASIC Mini-IDE« on: March 13, 2012, 05:07:46 pm »
It comes from BexIDE, when I save my program, it convert ²56 (3 tokens) instad of ^256 (4 tokens).
95
[FR] Autres Discussions TI et Casio / Re: 68k/z80 Le TI-Concours 2012 est lancé !« on: March 13, 2012, 05:06:12 pm »
Le tout n'est pas de finir le premier, mais de faire le meilleur programme.
Cependant vous pouvez mettre une première version sur le site, puis mettre à jour autant de fois que vous voulez. 96
Computer Projects and Ideas / Re: BexIDE -- An Axe/(Extended) BASIC Mini-IDE« on: March 13, 2012, 02:16:52 pm »
How to use modulo 256 in axe : ^256. It converts ²56...
97
The Axe Parser Project / Re: [Axiom] Advanced Graphics [in development]« on: March 13, 2012, 02:09:52 pm »Currently written: Is this feature released ? Which command do that ? 98
Axe / Re: Documentation of the Speed and Size of (Almost) Every Axe Command« on: March 13, 2012, 02:05:25 pm »If you have any questions about the speed/size of specific routines or blocks of code, feel free to ask.I note that. Spoiler For Spoiler: EDIT: Maybe I should make a general Axe optimization help thread...Yes, that's could be usefull ! Together, can you make a list of all RAM area usable in Axe, no matter how small ? 99
[FR] Programmation Axe Parser / Re: [Axe parser] : projet worms« on: March 13, 2012, 01:23:46 pm »
Après avoir testé pas mal l'éditeur de dessin, je me suis rendu compte qu'il n'éditais pas la map à cause de la barre d'option en bas (je vais donc régler ça), et je me suis amusé à faire une map en cours (plus ou moins réussi) en même pas 15 minutes j'ai fais ça. C'est très efficace.
Après je suis en train de penser au fonctionnement du jeu principale, ça pourrait prendre cette forme : Code: [Select] :Lbl Initialisation C'est assez approximatif, mais c'est un début. Je serait intéressé d'avoir tes conseils là dessus (même si tu as le TI-Concours). Ou sinon, j'ai eu la remarque que la map était un peu trop grande en hauteur... 100
Axe / Re: Documentation of the Speed and Size of (Almost) Every Axe Command« on: March 12, 2012, 05:10:45 pm »
UP ?
101
[FR] Programmation Axe Parser / Re: Problème Pt-change()« on: March 12, 2012, 01:48:36 pm »
Comme l'a dit torio, le problème vient très probablement de ton code. Pt-Change() inverse tous les pixels, Pt-On() affiche seulement les pixels noir, et Pt-Off() affiche le blanc et noir.
Si le bug persiste, il faut reporter le bug avec un code et un screen si tu veux que ce soit traité rapidement. 102
Other Calculators / Re: TI-Concours, a french programming contest for 68k/z80« on: March 12, 2012, 01:29:01 pm »
Don't worry subject will be displayed on website in a few hours.
103
Other Calculators / Re: TI-Concours, a french programming contest for 68k/z80« on: March 11, 2012, 07:36:22 am »Or can the projects be about everything.You got the answer. 104
Other Calculators / Re: TI-Concours, a french programming contest for 68k/z80« on: March 10, 2012, 07:33:56 pm »
Actually, you have to present your project from the start of the third part. It means you can thought about it before this date, it's up to you if you want to keep it secret.
105
Axe / Bitmap compression« on: March 10, 2012, 07:21:27 pm »
Plop,
I want to compress my bitmap (monochrom) 256*256 pixels (8192 bytes). I tried to make my own rle compression in this way : the first bit to determinate state (1 = pixel on, 0 = pixel off) then 7 bits are used to indicate number of pixels to fill with this value. eg. this code : Code: [Select] [FFFFFFFFFFFFFFFF0000] Should be :Code: [Select] [C010] Here my code, it leave program without reason. That's probably due to a corrupted RAM (each time it display ARC>7500Ko ). Spoiler For Spoiler: |
|