931
Introduce Yourself! / Re: meep
« on: July 26, 2010, 03:37:11 pm »
ahh i see. i knew about how posts in randomness work but didn't realize aboute introduce yourself. thanks!
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. 931
Introduce Yourself! / Re: meep« on: July 26, 2010, 03:37:11 pm »
ahh i see. i knew about how posts in randomness work but didn't realize aboute introduce yourself. thanks!
932
Introduce Yourself! / Re: meep« on: July 26, 2010, 03:33:33 pm »
welcome absol! enjoy your stay here. hopefully you can restore your RPG from your old laptop, it'd be cool to see (:
[offtopic] i noticed absol's post count is 0 despite having two posts. is that a bug? refreshing the page doesn't help. [/offtopic] 933
The Axe Parser Project / Re: Axe Parser« on: July 24, 2010, 01:02:24 pm »
i find it easiest to have this bookmarked/favorited.
934
The Axe Parser Project / Re: Features Wishlist« on: July 22, 2010, 09:28:52 pm »
i second ztrumpet. the 3 sprite features he quoted would help so much. mainly the last one, but those would definitely be something to look forward to.
935
Axe / Re: Tilemap Editor« on: July 21, 2010, 04:24:15 pm »
hmm, i see what you mean. i don't think i will though, because then i need to store more information in the appvar. especially with 4-level grayscale. right now with monochrome, each tile is 8 bytes. with 4-level grayscale, each tile is 24 bytes (8 bytes for the black layer, 8 for the light gray layer and 8 for the dark gray layer). so even if you just wanted 15 tiles in a tileset, that's already 360 bytes that has to be stored in the appvar. although i like the feature idea, it'd be more memory efficient to keep the tiles monochrome, and let the programmer add in shades of gray.
936
Axe / Re: The ** Command« on: July 21, 2010, 01:47:08 am »
Thanks quigibo!
I edited the BASIC program to act the same as the one you posted. 937
Axe / The ** Command« on: July 21, 2010, 01:35:48 am »
Hey guys, so i've been messing around with the ** command in axe parser to help anyone who may want to figure out how to use it, or at least understand it primitively. so here are 90 minutes worth of observations i've made by testing dozens of axe programs, and then PM'd to quigibo to make sure they're correct observations, which was OK'd.
The ** Command the documentation reads: "The signed multiplication is performed using the high byte as the integer part and the low byte as the decimal part returning a number in the same format." here's a quick way to transfer a decimal number into something axe parser will understand. say you wanted to multiply 2.5 and 3.5. That's 8.75, you say, being superb at arithmetic. well, let's see how we can get axe to do it for us: first, break this down starting with the number 2 and one half. second, we take one half. since this is the first 8 bits, which holds the values 0-255, after that point it overflows into the next byte which holds the integer part two. this is better represented in binary: 0 0 0 0 0 0 0 0 | 0 0 0 0 0 0 0 0 32768 16384 8192 4096 2048 1024 512 256 | 128 64 32 16 8 4 2 1 the line separates the high and low bytes. since we want to display one half in the lower byte to the right, we need one half of it. since the lower byte can represent 0-255, or 256 values, to get one half we'll have to divide 256 by two. so we end up with 128. then we need to represent 2 in the higher byte. you'll notice if we divide all the values of the higher byte by 256, they become identical to the lower byte. (32768/256=128, 16384/256=64, etc.) therefore, if we look at the lower byte, figure out what number we're trying to represent (in this case, it's two) and multiply it by 256, we'll get the higher-byte equivalent. which is 2 * 256 so 512. 512+128 = 640. great. we have one number, 2.5. now we need to multiply it by 3.5 do the same thing. what's .5 on our lower-byte scale? 128. and now we add that to 3 * 256, which is 768. total, that's 896. great. now try out this program: Code: [Select] .EXAMPLE What does it give? it gives 2240. look back at the commands list. it says it will give a number in the same format. therefore, to decode it, all you need to do is divide by 256. you'll notice you get 8.75. which is.. 3.5 * 2.5 (:so you have a number x, and a number y. and you want to use this program without thinking in binary. here's the quick way, assuming x and y are in base 10 with decimal parts, just multiply them by 256 to get numbers that the ** command understands. 2.5 * 256 = 640, and 3.5 * 256 = 896. Quigibo also gave me a quick BASIC program that will convert a number from -128 through 128 into 8.8 form (the form Axe reads in). with the number in Ans: Code: [Select] If Ans<-128 or Ans>128:Then and Quigibo's way to go from 8.8 back to decimal: Code: [Select] ClrHome 938
Axe / curves in axe?« on: July 21, 2010, 01:05:25 am »
i'm wondering how one might make curves in axe. there was a topic awhile back about this, but i couldn't glean any useful information from it. what i need is curves that change very little, such as the attached image.
edit: currently, i have this program. which kind of does what i want, but i'd like it smoother, if anyone has any alternatives. Code: [Select] .AAA
939
Trapped for the TI-Nspire and TI-89 / Re: Block Dude Nspire« on: July 20, 2010, 11:24:41 pm »
it looks great! i would suggest adding in scrolling and enhancing the graphics with the nspire's greater resolution. part of the difficulty of the puzzles were the fact you could only see so much of the screen at a time. wonderful job!
940
Art / Re: A star, and an explosion request.« on: July 20, 2010, 09:41:19 pm »
I'm thinking that as the game scrolls faster, a blank star may not be as noticeable as one with some sort of pattern in the center. maybe just some checkerboard dithering would look good? i'll test out all 3 (blank, a cross, and checkerboard dithering) once i implement more of the game. right now you can jump and rainbow dash (primitively) with a primitive pxl-test collision detection.
941
Art / Re: A star, and an explosion request.« on: July 20, 2010, 09:32:16 pm »
i modified the star to fit what i meant, i'm still debating on whether to use it or the clear one.
as for the explosion, that will work wonderful. thank you again, magic banana! 942
Art / Re: A star, and an explosion request.« on: July 20, 2010, 06:31:41 pm »
yes! thank you. i may add a dot in the center and make lines to the 5 points, though.
943
Art / Re: A star, and an explosion request.« on: July 20, 2010, 06:20:00 pm »
no, the axe parser contest entry is definitely not on hold. in fact, the contest entry is mostly done. so i thought i'd start something new (and : if this is entertaining enough i may just switch it out for my contest entry).
and yes, by 3-D i simply mean some shading and detail. 944
Art / A star, and an explosion request.« on: July 20, 2010, 06:02:21 pm »
two more requests for the robot unicorn attack game. i need a star and an explosion sprite. both are 16x16 monochrome. please just 1 frame for the explosion, as it will make a fleeting appearance on the screen, anyway. if you can, i'd like the star sprite to look 3-D.
945
Art / Re: Some animals and a car request.« on: July 20, 2010, 03:52:33 pm »
yeah i am. it's originally why i requested the sprites. mine isn't going to be very graphically detailed, in hopes that it'll run at a decent speed on 6 Mhz calculators.
|
|