Show Posts

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.


Messages - Hayleia

Pages: 1 ... 110 111 [112] 113 114 ... 239
1666
Miscellaneous / Re: High level languages are vexing
« on: February 18, 2013, 01:15:38 pm »
Yeah, I felt this way many times with Axe. One good solution, though, is to use a high level compiled language (Axe/C/C++) with some assembly mixed in every now and then. That way you get the best of both worlds. It's what I do.
???
You call Axe a high level language ??

1667
Introduce Yourself! / Re: This is Samos!
« on: February 17, 2013, 10:18:14 am »
I love:
-physic and chemistry
-mathematics
-engineering
-epic rap battle of history and other nice musics
-programming my calculators
-learning things about everything
-reading good books
-living on TI-planet's chat
-geeking (of course)
-meeting other calculator programmers (hello P...   ;D )
You forgot about trolling and about Gangnam style.
* Hayleia runs :P

1668
TI Z80 / Re: zStart - an app that runs on ram clears
« on: February 17, 2013, 05:08:40 am »
Not really on topic, but do you have any plans to port it to the 84+CSE ?
I can understand it would take some time for the Run On RAM Clear function to be ported, but I'd still like to see the label menu, the homerun, the program on startup and picture on startup (even if this one is not going to be hard to do in an external program now that there will be native support for colors) options on the 84+CSE :)

1669
Axe / Re: [AXE] Slime Volleyball
« on: February 16, 2013, 07:44:58 am »
This game has already been ported to the z80 series ;)
However, I'd be glad to see another version of it with more features and more graphics (the one I linked to doesn't have what we can call a menu) :D

1670
Humour and Jokes / Re: 9001 signs you're addicted to calcs and Omni
« on: February 16, 2013, 07:42:00 am »
4490: You can't play Pokemon on your calculator (true story) :P
Why can't you ? What is your calc model ? There is a Pokemon game for each calc above 83+:
83+: Pokemon Topaze
SE or 84+: TI-Boy
68k: the one by Torio or a GB emulator
Nspire: GBC and GBA emulator

1671

Great idea, I even think it ads a nice feeling to the image :)
(However, why is there an option to lose ? Do we really have the choice ? :P)

1672
Introduce Yourself! / Re: This is Samos!
« on: February 16, 2013, 07:36:19 am »
Lol, I see a lot of TI Planet people in this topic (including the topic starter, and including me) :P
Anyways, welcome here Sam OS :P
Have some peanuts !peanuts

1673
Axe / Re: What I've done?! O.o
« on: February 16, 2013, 01:07:58 am »
With this way of thinking, you can still directly use L1.
True, but renaming it makes the code more readable, and there is still the comment "or whatever free RAM area of at least 512 bytes" ;)

1674
Axe / Re: What I've done?! O.o
« on: February 15, 2013, 02:29:19 pm »
:E90D3→°SinLUT+2→°CosLUT
:L1→SinLUT+256→CosLUT       // L1 or whatever free RAM area of at least 512 bytes
:~1       // the negate sign, not the minus
:For(256)    // 256 possible angles, from 0 to 255
:sin(+1→r1)→{r1+SinLUT}
:cos(r1)→{r1+CosLUT}
:r1
:End

Why not use constant pointers instead of variables, like this ?
:L1→°SinLUT+256→°CosLUT       // L1 or whatever free RAM area of at least 512 bytes
:~1       // the negate sign, not the minus
:For(256)    // 256 possible angles, from 0 to 255
:sin(+1→r1)→{r1+°SinLUT}
:cos(r1)→{r1+°CosLUT}
:r1
:End

1675
Pokémon Purple / Re: Pokemon Purple
« on: February 14, 2013, 01:13:02 am »
Just posting up here that I'm still chipping away at things. I know Omnimaga has focused more on the Nspire, not really sure how many people still look forward to BASIC 84+ games anymore.
??? Where did you see that ? Omnimaga is not anti-Nspire but it is not pro-Nspire either, it is just that people have projects and present them, whether they are in 84+ Basic or in Axe or in Lua or in ASM or in C. And in the new posts, I only see two Nspire projects from Omnimaga: Linux and DD2X. The other things (like Ndless+ or the custom bootscreen) are crossposted news from TI Planet.

1676
The Axe Parser Project / Re: Features Wishlist
« on: February 13, 2013, 02:38:01 pm »
I would love to have the multi page feature, since I'm working on a big project,
not knowing I can't exceed 16kb and I've almost reached the limits (about 15.5kb).
You can put all your data in archived appvar an access them via GetCalc("appvBlah",Y0). That would save space in the executable (the app).

also, could it be that there comes problems if I try to upload big axe made applications to my pc through ti connect?
for some reason he wouldn't download it, no matter what I did, while everything else was being uploaded perfectly.
it always throws up the error: packet length not valid
Did you sign your apps with RabbitSign before transferring them ?

1677
General Calculator Help / Re: TI-84+ SE Menu
« on: February 12, 2013, 01:13:52 am »
Very cool, I like how there is a background :D. You should remove transparency for the bottom text part though.

That makes me wish I still coded because back in 2007 I made some interesting menu routines for an RPG and porting them to Axe would have been quite useful.
Thanks. Yeah, It will probably be better with a blank background behind the bottom text but I made that in one day and tried with a random unedited pic :P

Wow, that is looking pretty awesome O.O
And I also like the use of a background :P
When compiling, does it simply use a pic variable for it?
Thanks :)
 For now, it doesn't use a simple variable pic, but that is very easy to change:
Go to the very bottom of the source, where there is a
  [<very long hex code>]→°BG
and change it into
  [<your Pic var>]→°BG

1678
General Calculator Help / Re: TI-84+ SE Menu
« on: February 11, 2013, 03:19:57 am »
double post and semi necro :P

Just telling that since I have no time to work on big projects but enough motivation to work on something, I am still working on this project.
In fact, I threw all the old code away and started over :P
Please note that I made this in one day, so I coded complete-noob-style (read: even easy optimizations are not done).
(Also, if you want to test it, please add a "ClrHome" somewhere between Lbl RET and Return if you don't want strange chars to appear when you quit. Compiled with Axe 1.2.1a)

Source and screen in attachement.

1679
Site Feedback and Questions / Re: Updating the Site Banner
« on: February 11, 2013, 02:22:08 am »
Add Pokemon Topaze :P
Seriously, it hit 606 downloads here so I think it would be pretty legit :)

1680
Other Calculators / Re: Calculator tunning !
« on: February 10, 2013, 02:26:53 am »
People from TI-Planet already know, I like to relook my calculators  ^-^
Yeah, you bother us with this a lot jk :P

But in the french community, nobody cares :P
I do care, I watched your "Golder editions" and noticed that the word "Golden" was mispelled :P

Excepted KermMartian with his two "ultimate calculators", I don't know anybody who has a beautiful tunned calc...
I have a tunned calc but it is not beautiful :P

Is anyone there with an artist talent ?
Well you saw my Buzz Lightyear iirc ;)

Pages: 1 ... 110 111 [112] 113 114 ... 239