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

Pages: 1 ... 94 95 [96] 97 98 ... 317
1426
Portal X / Re: Portal Prelude
« on: December 07, 2012, 07:41:00 am »
I like how the twitter one is titled "Portal's physics engine rebuilt in 50KB—on a graphing calculator" and then right below it: "Portal's physics engine rebuilt in 25KB—on a graphing calculator" and in reality it is under 16KB XD

1427
Other Calc-Related Projects and Ideas / Re: OmniRPG - Coding
« on: December 06, 2012, 05:17:17 pm »
Hehe, the pressure is on XD

1428
Other Calc-Related Projects and Ideas / Re: OmniRPG - Sprites
« on: December 06, 2012, 05:16:03 pm »
One byte would be better in my experience. We might have >256 sprites, but we probably won't need more than 256 tiles. That initial x,y will be very useful, too. Are those bytes or words? (I am assuming they are the width and height)

1429
Other Calc-Related Projects and Ideas / Re: OmniRPG - Sprites
« on: December 06, 2012, 05:11:39 pm »
Cool, thanks. What format are the files saved in, by the way? I am assuming bytes doing rows first, then columns?

1430
Well, the trouble is that I have finals next week, and I go away to visit family from the 20th to the 30th. My inlaws live in a place that doesn't have internet and may or may not use electricity, my family lives where internet basically doesn't exist. This means I will need to wrap up my Apocalypse contest entry early, so I will have finals and the contest that I will be concentrating on for the near future.

However, I have difficulty concentrating on what i am supposed to do, so maybe I will accidentally write an engine XD

1431
Other Calc-Related Projects and Ideas / Re: OmniRPG - Coding
« on: December 06, 2012, 05:06:04 pm »
Yeah, I said in one of the other topics that if I somehow find time during the weekend, I want to try to write up a proof-of-concept map engine. Once we actually have a map engine working, we will probably figure out scrolling. I was thinking of 16x16, 3-level gray tiles. I think that offers much better detail and the user can feel more at the world level. I was also planning on incorporating a collision detection scheme that I was working on by making a simple AI to chase down the user.

1432
It looks 3D-ish, but it's actually just a tilemap in which the tiles are drawn from a birdview persfective instaed of top-down. The only thing that's handled differentely then on normal tilemaps is the collision. This makes that kind of games perfectely doable on calculators.
And I know how to handle the collision detection for the map! If I have time this weekend, I will try to make a scrolling map with a random AI thing that tries to chase you as a proof-of-concept.

1433
Other Calc-Related Projects and Ideas / Re: OmniRPG - Storyline Discussion
« on: December 06, 2012, 04:48:53 pm »
Ooh, I like the look of that :)

1434
Other Calc-Related Projects and Ideas / Re: OmniRPG - Sprites
« on: December 06, 2012, 04:47:13 pm »
I was originally thinking 32x32 or 24x24 for characters :P I think we should use 16x16 tiles, even though that means we won't have much to show on the screen at any given point. I made some rather nice tiles for an old game that were 16x16 that I might be able to share. I might also have to get around to writing a scrolling map engine >.>

I like the detail in 16x16 sprites, especially grayscale. It also makes the world seem so much bigger and you feel closer to the game :)

1435
Cool, I hope I have time. I am already planning stuff out in my head.

1436
Portal X / Re: Portal X (Prelude) Bugs
« on: December 06, 2012, 04:36:53 pm »
I got that as well. I should have tested if I could press [2nd][ON] >.>

1437
Yes, that is what I am talking about :D (To both Yeong and ben_g)

1438
Other Calc-Related Projects and Ideas / Re: OmniRPG - Storyline Discussion
« on: December 06, 2012, 04:34:04 pm »
You should post the link to the Wiki in the first post.

1439
Other Calc-Related Projects and Ideas / Re: OmniRPG - Sprites
« on: December 06, 2012, 04:25:18 pm »
Y'all also have to come up with what size and how many colors. 3 level grayscale, 16*16 ? (I personally think 3-level gray looks better on an actual calc than 4-level)

1440
Axe / Re: Archiving Programs within Axe programs
« on: December 06, 2012, 04:03:37 pm »
Yeah, I would suggest just running it from a shell, but that makes for a very interesting idea. Assembly programs are normally run from the OS by copying the original program to 9D95h. I think there should be no problem with archiving the original as the OS does not do any writebacks. Here is the hex code:
Code: [Select]
Asm(EFF14278B72003EFD84F
That must go at the beginning of your program! The reason is very simply that when the OS runs you program, it copies its name to OP1, that way when your program starts, it can reference the original program (for writeback and whatnot). However, there are a number of OS routines that will destroy OP1.

That should work, but I didn't test it.

Pages: 1 ... 94 95 [96] 97 98 ... 317