• Features Wishlist 5 1
Currently:  

Author Topic: Features Wishlist  (Read 615125 times)

0 Members and 2 Guests are viewing this topic.

Offline DJ Omnimaga

  • Clacualters are teh gr33t
  • CoT Emeritus
  • LV15 Omnimagician (Next: --)
  • *
  • Posts: 55942
  • Rating: +3154/-232
  • CodeWalrus founder & retired Omnimaga founder
    • View Profile
    • Dream of Omnimaga Music
Re: Features Wishlist
« Reply #885 on: July 04, 2010, 06:33:33 pm »
auto archiving would be cool. I am sure I would use it if I was on a SE calc and was messing around with stuff that can potentially crash the calc. In some occasions, I tend to forget to backup (normally I do)
Now active at https://discord.gg/cuZcfcF (CodeWalrus server)

Offline thepenguin77

  • z80 Assembly Master
  • LV10 31337 u53r (Next: 2000)
  • **********
  • Posts: 1594
  • Rating: +823/-5
  • The game in my avatar is bit.ly/p0zPWu
    • View Profile
Re: Features Wishlist
« Reply #886 on: July 04, 2010, 06:35:57 pm »
I was just assuming that the program was in ram. If it's in ram, you can do all you want to its name. By directly modifying the name, the program never has two instances in ram and is only archived once.

You also don't want to use % in a program name as it becomes invisible. I thought that making it an appVar would be the simplest because it wouldn't even require changing the file because the name is preserved as is.

The easiest way I see to back up programs in ram is:
change to appVar
archive
recreate original program
copy from archive

It would of course be different for archived programs.

On recovery, just unarchive, and change the type back to program.
zStart v1.3.013 9-20-2013 
All of my utilities
TI-Connect Help
You can build a statue out of either 1'x1' blocks or 12'x12' blocks. The 1'x1' blocks will take a lot longer, but the final product is worth it.
       -Runer112

Offline Runer112

  • Project Author
  • LV11 Super Veteran (Next: 3000)
  • ***********
  • Posts: 2289
  • Rating: +639/-31
    • View Profile
Re: Features Wishlist
« Reply #887 on: July 04, 2010, 07:04:21 pm »
Protip

At the start of the program:
Code: [Select]
"prgmPROGSRC"→Str0
Archive Str0

At the end of the program:
Code: [Select]
UnArchive Str0

Offline DJ Omnimaga

  • Clacualters are teh gr33t
  • CoT Emeritus
  • LV15 Omnimagician (Next: --)
  • *
  • Posts: 55942
  • Rating: +3154/-232
  • CodeWalrus founder & retired Omnimaga founder
    • View Profile
    • Dream of Omnimaga Music
Re: Features Wishlist
« Reply #888 on: July 04, 2010, 07:05:47 pm »
oh wait I forgot about that :D

Thanks for the tip :D
Now active at https://discord.gg/cuZcfcF (CodeWalrus server)

Offline LordConiupiter

  • LV6 Super Member (Next: 500)
  • ******
  • Posts: 339
  • Rating: +3/-0
  • Just one of the thousands of Axe-fans...
    • View Profile
Re: Features Wishlist
« Reply #889 on: July 05, 2010, 10:59:47 am »
a feature request: I would like to be able to execute external ASM/Axe programs or code snippets in AppVars, like external sub()'s. Perhaps u could use the command Func() for this, with the following syntax:
Func(PTR, arguments (r1 to r6))
The pointer has to be a label, and arguments are just only useable in Axe Funcs I think.
everytime that I was down, you would always come around, and get my feedback on the ground. (modified part from 'Seasons in the sun')

No matter how many errors are bothering you, always try to stay rel-Axe!

The HoMM project will be resumed as soon Axe 1.0.0 will be released!
Projects:
Code: [Select]
HoMM:   [==--------]    Project 'resumed': I'm suffering overwhelming new ideas being popped up in my dreams :P
tiDE:   [----------]    Explored and understood the main part of the code: just started writing a Tokenizer.



password of the week: uvanapererubupa (Any pronunciation is the right one ;) )   :D click me, and you'll be raided :D

Offline Builderboy

  • Physics Guru
  • CoT Emeritus
  • LV13 Extreme Addict (Next: 9001)
  • *
  • Posts: 5673
  • Rating: +613/-9
  • Would you kindly?
    • View Profile
Re: Features Wishlist
« Reply #890 on: July 07, 2010, 02:46:32 am »
I would like to be able to shift the backbuffer, currently there is no fast way to do it :(

Offline DJ Omnimaga

  • Clacualters are teh gr33t
  • CoT Emeritus
  • LV15 Omnimagician (Next: --)
  • *
  • Posts: 55942
  • Rating: +3154/-232
  • CodeWalrus founder & retired Omnimaga founder
    • View Profile
    • Dream of Omnimaga Music
Re: Features Wishlist
« Reply #891 on: July 07, 2010, 02:56:50 am »
yeah I suggested that some drawing commands be extended to back buffer usage too before. I think he said it might be hard for some, though. I hope for scrolling it is possible
Now active at https://discord.gg/cuZcfcF (CodeWalrus server)

Offline DJ Omnimaga

  • Clacualters are teh gr33t
  • CoT Emeritus
  • LV15 Omnimagician (Next: --)
  • *
  • Posts: 55942
  • Rating: +3154/-232
  • CodeWalrus founder & retired Omnimaga founder
    • View Profile
    • Dream of Omnimaga Music
Re: Features Wishlist
« Reply #892 on: July 07, 2010, 04:18:13 pm »
Question: Will the new geometry drawing additions also include the addition of faster horizontal/vertical line routine?
Now active at https://discord.gg/cuZcfcF (CodeWalrus server)

Offline Quigibo

  • The Executioner
  • CoT Emeritus
  • LV11 Super Veteran (Next: 3000)
  • *
  • Posts: 2031
  • Rating: +1075/-24
  • I wish real life had a "Save" and "Load" button...
    • View Profile
Re: Features Wishlist
« Reply #893 on: July 07, 2010, 07:02:55 pm »
I'm still debating that.  Using the rectangle command to draw lines would be about the same speed anyway so I might just leave it at that to draw a rectangle with width 1.

The Rect() command is using the ref() token since that puts it in the catalog alphabetically.  Its easy to use and it takes as arguments the X,Y of the upper left corner followed by the width and height of the rectangle respectively.  Making the width or height 1 allows you to draw fast vertical or horizontal lines.

I'll try to extend more of the current drawing commands to the backbuffer as part of this geometry overhaul.
EDIT: I'll reset the poll now since I'm well into the geometry stuff.
« Last Edit: July 07, 2010, 07:03:31 pm by Quigibo »
___Axe_Parser___
Today the calculator, tomorrow the world!

Offline DJ Omnimaga

  • Clacualters are teh gr33t
  • CoT Emeritus
  • LV15 Omnimagician (Next: --)
  • *
  • Posts: 55942
  • Rating: +3154/-232
  • CodeWalrus founder & retired Omnimaga founder
    • View Profile
    • Dream of Omnimaga Music
Re: Features Wishlist
« Reply #894 on: July 07, 2010, 08:24:25 pm »
Oh really? Nvm then :P altough it might pose problems if someone wanted to make a racing game like the one included with Axe due to lack of clipping (unless the person used min/max for clipping purpose)

I think the Rect token is fine. I do not remember if Ref was used much anyway and the name is pretty similar so it shouldn,t be too hard to find in the CATALOG.

Suggestion, you should rewrite your racing game using those :D

EDIT: Voted reading from archive.
« Last Edit: July 07, 2010, 08:24:50 pm by DJ Omnimaga »
Now active at https://discord.gg/cuZcfcF (CodeWalrus server)

Offline Magic Banana

  • LV6 Super Member (Next: 500)
  • ******
  • Posts: 371
  • Rating: +77/-1
  • It's not an apple, it's a ... magic banana.
    • View Profile
Re: Features Wishlist
« Reply #895 on: July 08, 2010, 01:16:53 pm »
Hmm, tough choice between Read From Archive and OS Var Support, but I'm gonna go for the OS Var support so that I can use Axe programs along with Basic Programs.

Also, Saftey Features should be "Safety Features".
I do sprites and stuff, so yeah.

Quote from: yunhua98
i'M NOT SURE WHAT A SWORD SKILL IS BUT HERE'S THE SWORD ANIMATION FROM THE TWO SPRITES ON PG 13

Offline ztrumpet

  • The Rarely Active One
  • CoT Emeritus
  • LV13 Extreme Addict (Next: 9001)
  • *
  • Posts: 5712
  • Rating: +364/-4
  • If you see this, send me a PM. Just for fun.
    • View Profile
Re: Features Wishlist
« Reply #896 on: July 08, 2010, 01:31:57 pm »
Also, Saftey Features should be "Safety Features".
Good catch.  I got it fixed. :)

Offline Builderboy

  • Physics Guru
  • CoT Emeritus
  • LV13 Extreme Addict (Next: 9001)
  • *
  • Posts: 5673
  • Rating: +613/-9
  • Would you kindly?
    • View Profile
Re: Features Wishlist
« Reply #897 on: July 08, 2010, 02:33:01 pm »
Lol looks like a pretty close race so far!

Offline DJ Omnimaga

  • Clacualters are teh gr33t
  • CoT Emeritus
  • LV15 Omnimagician (Next: --)
  • *
  • Posts: 55942
  • Rating: +3154/-232
  • CodeWalrus founder & retired Omnimaga founder
    • View Profile
    • Dream of Omnimaga Music
Re: Features Wishlist
« Reply #898 on: July 08, 2010, 02:53:27 pm »
Wow indeed o.o

Yesterday reading from archive was leading by far (and I was happy ;D)
Now active at https://discord.gg/cuZcfcF (CodeWalrus server)

Offline ztrumpet

  • The Rarely Active One
  • CoT Emeritus
  • LV13 Extreme Addict (Next: 9001)
  • *
  • Posts: 5712
  • Rating: +364/-4
  • If you see this, send me a PM. Just for fun.
    • View Profile
Re: Features Wishlist
« Reply #899 on: July 08, 2010, 02:56:49 pm »
Wow. O.o  This is extremely close! ;D