331
Escheron: Shadow over Ragnoth / Re: Picross (Clone)
« on: October 26, 2010, 09:14:07 pm »
Changed the mid-border line to black. It was white. I think it looks better.
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. 331
Escheron: Shadow over Ragnoth / Re: Picross (Clone)« on: October 26, 2010, 09:14:07 pm »
Changed the mid-border line to black. It was white. I think it looks better.
332
Escheron: Shadow over Ragnoth / Re: Picross (Clone)« on: October 26, 2010, 08:16:31 pm »
The way I do it is a rather roundabout way, since I built it using structures provided by the E:SoR menu system and rendering routines. I'm basically using a piece of the game's "textshadow" buffer as an array.
The way you should probably do it is to keep your table in something like a matrix or some 2D array. This table should be completely independent of the image you're supposed to be making, but... the contents of this array should be something like sprites where an empty tile would be... well. Empty. A [ ] tile would be some other value, and x tiles would be yet another value. When you go to compare the contents of the game area to the image you're supposed to be recreating, just recreate a binary of the image given your [ ] tiles versus your non-marked tiles. Non-marked would be 0 and [ ] tiles would be 1, where the x tiles would be ignored in the reconstruction of the image. Should the image match what you have, then you've won the game. If you are trying to do something like a timer and penalize the player for incorrectly marking a tile as [ ], then you should try something like the following: After you have reconstructed the image, compare it against the original in this manner: (original xor playarea) and playarea If there's any nonzero things as a result of that operation, then you know that a player tried to chisel out a tile in the wrong spot. At any rate, and to attempt to answer your question... I find it better to keep your images as a binary, and your play area as an array. Only when the array changes between a marked [ ] tile and an unmarked tile, should the array be silently converted in the background back to a binary file and compared directly between your source or solution image. 333
Escheron: Shadow over Ragnoth / Re: Picross (Clone)« on: October 26, 2010, 07:57:09 pm »
I know it's a double post. Just got a screenshot going of what I have so far.
334
Escheron: Shadow over Ragnoth / Re: Picross (Clone)« on: October 26, 2010, 04:14:56 pm »
Some of the coding has been done. Those screenshots are of the actual engine doing its work. Well... it's what's been done of the engine. I've also got the cursor to work and it lets you chisel tiles. It also lets you mark them if you know they're not valid. It also locks out the tiles so you have to revert them to blank tiles before you can change their status, so you don't accidentally chisel out tiles that have been marked off for not chiseling.
I don't actually know what the appropriate terms are, but I'm basing these terms off of the Mario's picross (GB) thing that I saw a YouTube video for. 335
Escheron: Shadow over Ragnoth / Re: Picross (Clone)« on: October 25, 2010, 08:06:46 pm »
Still working on the thing. It's rather bland and I haven't coded very much yet. Here's a screenshot of what I have so far (other than the equally bland title screen).
336
Escheron: Shadow over Ragnoth / Picross (Clone)« on: October 24, 2010, 09:32:41 pm »
So, me and geekboy have been talking on IRC about making a 2D Picross clone. For those who are unfamiliar with it, you can find results by either Googling "Picross" or "Nonogram" (which seems to be what it's supposed to be called). He said something about making his entry in Axe and my entry as an App.
So, if you're looking at the breadcrumbs above the topic, you're probably gonna wonder why I posted this under the E:SoR subforum. The reason behind this move is a bit of a stretch, but bear with me. I intend on using a modified version of E:SoR to build the game. This modified version was originally built for a rickroller, found here: http://ourl.ca/4114/75957 Source is included in it so if you know what you're doing, you can beat me to the punch. So... what do you think? EDIT: To clarify, I'm only intending on doing this thing. The link to source was what I'm working with to make this game. EDIT2: For a download link, find the attachment on this post: http://ourl.ca/7598/135642 337
Escheron: Shadow over Ragnoth / Re: Escheron: Shadow over Ragnoth« on: October 22, 2010, 10:27:26 pm »
Automatic retargeting has been completed. It seems to work, though I am quite unsure of how it actually will in practice. It'll likely work. Details of this (though not much has been said about it) can be found somewhere on the Cemetech boards.
Next, gotta figure out how enemy skills and flags are put together when they use 'em. It might have been done already, but still gotta make sure. Then, I'll start putting the damage calculations into code. 338
Escheron: Shadow over Ragnoth / Re: Escheron: Shadow over Ragnoth« on: October 13, 2010, 12:48:28 am »
Bump. Small bit of progress. (crossposted to Cemetech)
Working on an automatic re-target function for E:SoR's battle engine. The specifics are as follows: 1. Obtain target flags for those that are still alive. 2. Invert flags if you're trying to target the dead. 3. Compare (AND) with what you are actually trying to target. 4. Load target flags back to attack slot and return IF the AND function returns nonzero. 5. Attempt to re-target based on probable use (i.e. If target a character who's dead, try someone else) 6. If attempting to find a target fails, change character action to "Parry". Note that this *can* happen under certain circumstances without the battle engine declaring victory or defeat. So... Yeah. I haven't got point #5 down quite yet. Point #6 should be easy once #5 is done. 339
News / Re: Casio Prizm - Color graphic calculator« on: October 11, 2010, 10:43:50 pm »The really old TI-83's actually used a physical Z80, coupled with some fancy memory mapping hardware to let it access all of it's "ROM". While this doesn't really apply to our example since the memory isn't Flash, the concept is similar. TI just found cheaper ways to implement these schemes. They kinda ... stuck with us.These models don't actually use a physical Z80, but rather a SoC that has additional hardware that does things beyond what a normal Z80 would be doing. Example: Memory-mapping "pages" of FlashROM in 16KB chunks to sit evenly with the Z80's 64KB physical address space.Ah, ok a System-on-Chip. Yeah, because there would be no way a regular Z80 would be able to do that unless you did some fancy stuff with the address and data buses. I figure that this information is only valid for your good ol' Ti-73's, TI-83+/84+(SE)s and perhaps a select few other calculators. You'd have to ask around for how the Ti-89 calcs work, though I think they work in a similar way. The Nspire is completely different and ... well. I'm not the person to ask. The only reason I know that the old TI-83's used an actual Z80 is because I took apart some person's Ti-83 in my college's math lab and found that sucker. A honest-to-God real Z80. I'll never forget that day. I wasn't able to tell which one was the ROM, which one was the RAM, and which one was the memory mapping hardware. There was some other chip there, too. Couldn't figure out what it could possibly be doing. 340
News / Re: Casio Prizm - Color graphic calculator« on: October 11, 2010, 10:17:16 pm »...On the TI-83 Plus/TI-84 Plus, executing programs from FlashROM is indeed possible. These models don't actually use a physical Z80, but rather a SoC that has additional hardware that does things beyond what a normal Z80 would be doing. Example: Memory-mapping "pages" of FlashROM in 16KB chunks to sit evenly with the Z80's 64KB physical address space. Memory is arranged in the following manner:I am 100% sure that the TI-83+ to TI-84+SE run Apps directly from Archive.Hmmm, that actually wouldn't seem very smart in a first glance, but it might make a little sense actually. It's a cheap solution. Z80 is kind of slow (compared to today's ARM and SuperH) so the CPU wouldn't be outrunning the Flash and the programs aren't extremely large (like 100KB or bigger) so not much reading would have to be done. First 16KB: First 16KB of FlashROM Second 16KB: Some other 16KB "page" of FlashROM Third 16KB: First (or second?) 16KB of RAM Fourth 16KB: The other 16KB of RAM. In other models, this too is swappable with some other 16KB chunk of RAM. In every case, the calculator maps in 16KB of whatever memory is needed at any given point in time. The only thing that isn't user-remappable in the TI-84 Plus series is the first 16KB of Flash, which is where the more important stuff of the OS sits. Now. I'm not entirely sure *how* the calculator performs the pageflips, but the second 16KB of physical memory is controlled by outputting a page value to I/O port 6, and the third 16KB of physical memory is controlled by outputting a page value to I/O port 7. All "FlashAPPs" are executed in the 0x4000-0x7FFF range (2nd physical "page"). Multipage apps are achieved by changing the value of port 6. For some obvious reasons, your code shouldn't be executing code on that page during a pageflip, but if you've coded your app creatively, you can change it that way. For more information, see TI's SDK found here: http://education.ti.com/educationportal/sites/US/productDetail/us_sdk_73_83_84.html ---------------- TL;DR: The calculator divides memory up into 16KB chunks. Ports are used to extend the calculator's ability to address both RAM and FlashROM by remapping them into the Z80's 64KB address space. It's the best they could do with the Z80. We're not complaining (much). To address another concern, the calculator *is* slow enough (even at 15MHz) to run programs directly from FlashROM without needing to insert "wait cycles". Or rather, the Flash is fast enough to keep up with the Z80. 341
Escheron: Shadow over Ragnoth / Re: Escheron: Shadow over Ragnoth« on: October 02, 2010, 12:22:59 pm »
Coding the battle engine resumes Monday October 4, 2010.
The game is planned to be released by December 25, 2010. So yeah. Cutting the CaDanITE project a little short for the time being. 342
News / Re: TI-84+SE discontinued« on: September 30, 2010, 02:04:24 pm »
Heh. I don't think the TI-83 Plus model is going anywhere anytime soon. Removing that off their product lines would alienate too much of its userbase and potential users. I'm talking about those who are comfortable using the Ti-83 Plus graphing calculator and the various institutions that will not teach how to use other sorts of graphing calcs (probably because they don't know anything else?) I will not believe the idea that the Nspire will fully replace the Ti-83 Plus, even if for the simple reason that it just does not look like a TI-83 Plus.
The TI-84 Plus (SE) however was more like an upgrade to the TI-83 Plus that can easily (from their standpoint) be replaced by the other thing with similar (emulated) specs. They can afford to move their product line "forward" toward the Nspire much like how they did it to the TI-83 Plus SE toward the TI-84 Plus (SE) While I do not support the move, I do see the logic behind them discontinuing the TI-84 Plus (SE) model. Nothing's gonna happen with the Ti-83 Plus calc. I'm just a little unhappy by these discontinuations, because the E:SoR project kinda relies on the extra hardware that's found in the 83+SE/84+(SE) calcs. CaDan, not so much. 343
CaDan SHMUP / Re: CaDanITE« on: September 23, 2010, 10:38:05 pm »
What I meant by that can be compared with an extreme example: Microsoft Office (Word) documents. Even though you may "delete" stuff from the file after you have written and saved stuff, that stuff is never actually deleted. It just sits there in the file having been flagged as deleted. It remains in the file forever.
While that's a rather poor and rather disgusting example, what I'm suggesting is keeping things that you didn't want right then and there so that if you want them again, or even want to reference them later in another project file, it'll still be there. You'll be given the option of permanently removing them from the project at some point, but this *does* give you a sort of undo feature. 344
CaDan SHMUP / Re: CaDanITE« on: September 23, 2010, 06:31:27 pm »
Minor update on the details. To ease a few worries, project files are going to be kept in appvars. Their names will be automatically generated by the app, but when you view them in CaDanITE, you'll only see the description (up to 24 characters long) that you gave the project files. You should be able to delete project files from there, if it comes down to it. You may not want to, but just for completeness sake, might as well.
Even though all project will be kept in FlashROM, I'll demand of its users to have at least 24KB of RAM free. You know. Just to make sure you can continue editing files while they are in RAM. Files in FlashROM aren't actually edited until you save your project, so you can decide to do things like discard any changes you make. What you are actually editing is a temporary copy. Since this project file is going to act as a miniature file system, I was thinking as to whether or not to allow to remain in the project after it's deleted so you can use them again if you change your mind. If I go that route, I'll include ways to clean out unused items. What do you guys think? 345
ASM / Re: A couple of quick questions regarding the flags register« on: September 22, 2010, 08:14:08 pm »
Oh. Those are machine cycles. Since the shortest instruction is 4 T-cycles (I like to use the term "clock cycle" or CC for this), it might be easier to represent some instructions in terms of machine cycles. The only real benefit is dealing with smaller numbers, though I don't really like using them because of all those odd instructions that will not divide evenly with 4. Like your 2 byte ADD instructions (11CCs) and your two byte inc/dec instructions (6CCs).
|
|