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

Pages: 1 2 3 [4] 5 6 ... 45
46
Axe / Re: Axe Q&A
« on: October 23, 2014, 12:51:07 am »
New question. Am I doing something wrong or did I just find an error with Axe? The following is a very simplified version of some code I'm working on.

Code: [Select]
.ERROR
ClrHome
While 1
ReturnIf getKey(41)
ClrHome
If getKey(26)
Disp ,"[2] key pressed."
End
If getKey(28)
Disp ,"[8] key pressed."
End
Pause 300
End

The program should display "[8] key pressed" when 8 is pressed and "[2] key pressed" when two is pressed. Here's the problem: if you hold the up arrow and left arrow while pressing either 8 or 2 (not both at the same time), the program thinks that both were pressed (and displays "[2] key pressed [8] key pressed")...

47
TI Z80 / Re: Portal 3 - After Life [Alpha]
« on: October 20, 2014, 07:26:52 pm »
Thank you. I'm going all out with this project  [-.-]~

48
TI Z80 / Re: Portal 3 - After Life [Alpha]
« on: October 18, 2014, 09:29:28 pm »
Thank you Builderboy :) if my game ends up being half as good as yours, I'll be happy.

Here's what I've got for a menu (also added to first post):

49
TI Z80 / Re: Portal 3 - After Life [Alpha]
« on: October 18, 2014, 04:38:12 pm »
I'm planning to not do diagonal surfaces, just regular ones. I realized portal bumping would be an issue but haven't put much thought into that yet to be honest. I'm thinking I'll solve it by making the portals snap to the 5x5 grid automatically and simply check if the variable containing the existing portal is the same as the variable containing the portal that's being placed.

My biggest problem will probably be speed and size.

50
TI Z80 / Re: Portal 3 - After Life [Alpha]
« on: October 18, 2014, 04:17:17 pm »
Update: In case you were wondering, this project is not dead. I had taken a break to work on other projects, but now I'm back to working on it. I've fixed bugs, simplified my code, and should finish implementing portals soon. Also I'm making an incredible menu (screenshots to come!).

51
TI Z80 / Re: zStart - an app that runs on ram clears
« on: October 17, 2014, 09:51:11 am »
I tried with Wabbitemu and it said no hook found... I'll try it on my real calc.


edit: zStart said that it could not chain.

52
TI Z80 / Re: [Axe] The Line - ClrDraw
« on: October 16, 2014, 09:51:46 am »
Thank you everyone! :)
And yup DJ, it speeds up.

53
TI Z80 / [Axe] The Line - ClrDraw
« on: October 15, 2014, 11:46:42 pm »
I saw my friend playing this on the iPhone so I ported it to the ti83+ :) It's a simple scrolling game similar to Tunnel but harder.


Download here: http://clrdraw.weebly.com

54
Other / Re: Making a sound mixer
« on: October 15, 2014, 07:54:52 pm »
This looks really cool (and complicated :P)! Good work :)

55
TI Z80 / Re: [Dead Project] Mario game [83+][APP]
« on: October 09, 2014, 01:13:31 pm »
I'm a relatively new calculator programmer so this is my first time seeing this project, but I'm still really sad that its dead. It looks like it was really incredible :(

56
TI Z80 / Re: Anchor Encryption App
« on: October 09, 2014, 09:35:21 am »
I wish we did that, since I only use it to check my work. But instead we have two parts for our tests, a calculator portion and a non-calculator portion.

57
TI Z80 / Re: Anchor Encryption App
« on: October 08, 2014, 09:45:58 am »
Just out of interest, how did you get the name "Anchor"?
Because Anchors stop ships from blowing away, like how an encryptor stops programs from being stolen before they're ready to be released.

Quote
Well, at least in general TI community programmers tend to use more common sense when doing exams. Also, if you cheat on tests then you impair your math skills, which, in the process, impairs your programming skills, since programming requires math. :P
Confession time: back in algebra and precalc I made some BASIC programs (like quadratic solvers, radical simplifiers, etc) to check my answers. But just programming notes into your calc or programs that do your work for you crosses a line I think.

58
TI Z80 / Re: Anchor Encryption App
« on: October 07, 2014, 01:27:41 pm »
Yeah i'd rather see less people hiding their source code. But really don't see this as a tool for protecting your source. If for some reason you don't want to share your source just don't release it, and it's easy enough to unprotect a BASIC program ;) I do however like the idea of having encryption on the calc so that your math teacher can't see that funny picture you drew of them and can't read the notes you've got saved on there.
So true. Speaking of which, I'll release the source for Anchor in a few days when it's completely finished :)

*of course* these programs aren't meant for cheating on tests, right? ;)
Who would ever do a thing like that  ;)  *cough cough* everyone *cough*

59
TI Z80 / Re: Anchor Encryption App
« on: October 06, 2014, 12:39:56 pm »
Only if you know the key, other variables, and how to factor them in ;)

60
TI Z80 / Re: Anchor Encryption App
« on: October 06, 2014, 09:48:41 am »
Quote
Could you make a way to run programs whilst encrypted? Even without that, looking epic.
I could make it decrypt the program, run it, the encrypt it again on exit!

Quote
Sounds sweet!
What encrypting method are you using?
Google tells me it is called private key encryption? It shifts each character backwards from a certain number and factors in a randomly generated key and other variables.

Pages: 1 2 3 [4] 5 6 ... 45