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 - Darl181

Pages: 1 ... 65 66 [67] 68 69 ... 253
991
I don't do much web design, but I've found this useful multiple times for various things.
http://www.tedmontgomery.com/tutorial/ALTchrc-a.html

993
This might get pretty crazy graphic-wise, but how about Luminara for one of the color calcs O.O

994
News / Re: POTY 2011 open!
« on: December 17, 2011, 01:44:33 pm »
It's too bad nDoom wasn't put on ticalc..tho it prolly would take a massive chunk of the votes :P

995
Axe / Re: Axe Q&A
« on: December 17, 2011, 01:04:50 pm »
So, the compiled size is the same?

(also 84 pages :P)

Also just noticed this:
i think that is becasue X-- is a command, not a value.  Try x-1->x
That one has worked for me, even in the conditional.

(btw @epic X-getKey(2)→X would work for the example code :P)

996
Axe / Re: Axe Q&A
« on: December 17, 2011, 12:53:23 pm »
getKey(2)?X--
Evidently not, when I tried something like that it threw an error at compile-time. :/

997
The Axe Parser Project / Re: Bug Reports
« on: December 17, 2011, 12:52:10 pm »
I'm not sure if this is related to Axe (1.1.0) or zStart (1.3.005) so I'll just post it here because that's where it started.

I used ON to exit from compiling a program, and zStart's hooks got disabled somehow.  When I ran the zStart app, it crashed.

998
Axe / Re: Axe Q&A
« on: December 17, 2011, 12:50:01 pm »
It's basically a short version of If afaict, tho there's some differences apparently.

999
Axe / Re: Axe Q&A
« on: December 17, 2011, 12:48:45 pm »
That's one of the advantages of compiled languages. Larger source code does not mean larger compiled code. You can add line breaks and comments and long-named labels all you want; the compiled code will always be the same size.
Cool :)
Does the same apply for If <condition>:Stuff:End versus <condition>?stuff ?
I've noticed some things don't work in the latter, such as getKey(x) for the condition and Pt-***.

1000
TI Z80 / Re: Tag 2
« on: December 17, 2011, 12:42:56 pm »
Quick suggestion: I'm not overly fond of the current button you have in place, the one to activate the crate dropper thing. Don't get me wrong it doesn't really detract much from the game much, but I know you can do better :) This is just one of those little nitpicky details.
I've experimented with a couple of button sprites, but I couldn't think of any that looked better D: Maybe you could help?
Maybe something depicting a switch on the wall that when flipped activates the thing?  Or maybe...a button :P

Also..I'm not sure how practical this could be (maybe puzzle aspect?) but it would be cool if the lights were to turn on progressively, eventually reaching the thingy or whatever the official name of it is.

1001
Humour and Jokes / Re: 9001 signs you're addicted to calcs and Omni
« on: December 17, 2011, 12:41:02 pm »
2569: Even when you're dad's watching tennis it reminds you of Omni. (Djokovic)

1002
Axe / Re: Axe Q&A
« on: December 16, 2011, 07:51:15 pm »
I've been meaning to ask: how does axe handle newlines in the source?
Would this program, when compiled...
Spoiler For Spoiler:
.A
[0000000000000000]→Pic1
[FFFFFFFFFFFFFFFF]

ClrHome

For(A,0,7)
Pt-On(A*8,0,Pic1+8)
End
DispGraph
...end up being bigger than this, when compiled...?
Spoiler For Spoiler:
.A
[0000000000000000FFFFFFFFFFFFFFFF]→Pic1
ClrHome
For(A,0,7)
Pt-On(A*8,0,Pic1+8)
End
DispGraph

1003
TI Z80 / Re: Tag 2
« on: December 16, 2011, 06:24:38 pm »
Looking nice :)
Are the paint textures going to stay the same or should we expect grays for those as well?

1004
Axe / Re: Axe Q&A
« on: December 16, 2011, 06:22:45 pm »
So you're trying to display one after the other?  (not exactly sure what you're trying to do)
Something to remember is that strings are "zero-terminated", which means that when you have a string and →Str# Axe automatically puts a zero at the end so it knows when to stop displaying etc.

If you do this, a zero is put at the end:
"The Game"→Str1

If you do this, a zero is not put at the end:
"The Game"

So if you have this:
"I like to eat "
"apples and "
"bananas "
[00]

It displays all of it as one string.
(Keep in mind that it looks for the [00] at the end, tho...it'll keep displaying until it reaches one.)

1005
TI Z80 / Re: zStart - an app that runs on ram clears
« on: December 16, 2011, 06:16:48 pm »
Iirc I've gotten an ERR:MEMORY trying to edit an archived program from home (well, I run it from the homescreen and take advantage of the ERR:SYNTAX :P).  Hasn't happened lately tho, either because I keep a lot of ram free or it's been fixed somehow.

Pages: 1 ... 65 66 [67] 68 69 ... 253