Home | Forums | What's new | Resources | |
Genesis Wars |
Edge-` - Nov 25, 2005 |
1 | 2 | Next> |
Edge-` | Nov 25, 2005 | |||
I've restarted my Genesis Wars project for anyone interested in its progress in the past and future. I'm redoing everything from scratch with better methods (and a better understanding and compiler) with the hopes I don't get frustrated this time My new genesis development site is here: genDEV.... Here are some quick screenshots: |
racketboy | Nov 26, 2005 | |||
wow -- sounds awesome. AW is one of my all-time favorites. Keep us posted on your progress! |
Whitesnake | Nov 27, 2005 | |||
You know i've always been interested in Genesis Wars progress |
Kaneda | Nov 28, 2005 | |||
Here here here!! I want more Genesis Wars news!! |
fonzievoltonov | Nov 28, 2005 | |||
OMG, Yeppeee! |
LocalH | Nov 29, 2005 | |||
That looks awesome, I'd love to see it on real hardware. Too bad there aren't any public releases yet, or I would =P |
Kaneda | Dec 1, 2005 | |||
For the GFX, i still use B2T to convert to TLE then GSS to create sprite or MMM to create map (of tiles) these 2 tools export XGCC compatible asm good luck! |
Edge-` | Dec 1, 2005 | |||
Cool, I'll give that a go. Thanks for all your contribution and time Kaneda. Maybe we'll have to team up for a project sometime. |
Kaneda | Dec 2, 2005 | |||
unfortunatly I'm not on Genny as much as before... My free time is still for Genny but I have less and less "free time" perhaps I'll come back to release the 3 current projects I worked on |
fonzievoltonov | Dec 2, 2005 | |||
Kaneda> héhé Some projects require tons of tools (item, character, script, map editors) and lot of msdos tools to convert gfx to appropriate format... Here, if you generate map randomely, thats perfect... Good shot to do this kind of game, will be very fun to play and certainely interesting to code Btw, nice artwork... looks even better than the original 256c. |
it290 | Dec 2, 2005 | |||
I think a random map generator would be cool, but not as the only option. Advance Wars kind of needs premade maps in order for certain CPU-controlled opponents to pose a challenge. |
LocalH | Dec 2, 2005 | ||||
I'm just a junkie for running homebrew stuff on my Genesis - having an SMD sure is nice =P Matter of fact, I even enjoyed your ATHF "demo", even though it was nothing technically impressive from a coding or visual standpoint - it's just awesome running homebrewed code on the real thing, and it's ultimately why I have an interest in coding for the Genesis in the first place. It's entirely up to you, but I bet that would look awesome on hardware. I could even take hardware screenshots (RF only, but I plan to have my Genny modded for S-Video in the coming months) if you were to send me a version that runs in interlace mode 1 - just turn on bit 1 of VDP reg $0c, and for completeness make sure that bit 2 is off (unless you're intending to use the 448 line mode with 8x16 cells). |
fonzievoltonov | Dec 7, 2005 | |||
Wow, good progesss. "I've been constantly fighting with the joypad reading/animation timing (too many presses being read or not being read at all)" Strange... are you sure you're always doing while(1){wait_vsync();joypad_read();/*Do some stuff*/} Because... If you check the joy more than once per vint, its very dangerous. Well, i never had any joypad problem... so i really want to help you about this (i mean, you shouldn't be slowdowned in your project cause of that). My personnal advice for menues is doing this kind of thing (hold/release synch): //menu code start while(1) { fvr_wait_sync(); fvr_joypad_read(); if(fvr_joypad_result[1]==BUTTON_A) {///} else if(fvr_joypad_result[1]==BUTTON_B) {Break;} while(fvr_joypad_result[1]!=0) {fvr_wait_sync();fvr_joypad_read();} } Bye Fonzie |
Kaneda | Dec 7, 2005 | |||
I personnaly read joypad while VInt and got a delay var to say something like "reset this button state if it has not changed in easily modable for turbo or press one only |
Edge-` | Dec 12, 2005 | |||
I'll give some of those methods a try, thanks guys. Quick question. I have all the terrain tiles on Plane B. When I select a unit, I'd like to highlight the colors somehow on Plane A (which is otherwise empty, to show where a unit may move). How would I go about enabling highlight mode for plane a, and then making those tiles highlighted (and then turning the mode off). Any ideas? |
LocalH | Dec 12, 2005 | |||
Rather than using highlight, it might be easier to temporarily make the rest of the screen shadowed, allowing the selectable tiles to be shown normally. All you have to do is set up your nametable however you wish to (for example, you can use actual pattern data to augment the highlighting, or you can just leave it full of transparent tiles), and set the priority bit on the tiles you don't want to be shadowed. Then set bit 3 of VDP reg $0C for the duration of the highlight effect. If you actually want to use highlight mode and leave the rest of the screen normal intensity, you'll probably be best off using sprites that use pallet indices $30-$3F, with pixels of color $3F in areas that you want highlighted (this option also gives you the capability to do shadow as well, with pixels colored $3E). |
fonzievoltonov | Dec 13, 2005 | |||
YEah, good idea. Here is one method more, far more impressive: Games like Langrisser2 just have two palettes for background, one is perpetualy fading in/out very smoothly, the other one is static... So, you draw tiles of background using the fading palette to show character path and the other tiles in static palette. It simply waste a palette (since the fading one is a clone of the fixed one) ;D Also, its harder to implement this method because u need to redraw planeB a lot ... A advantage is that u can use planeA for other things (like rain, clouds, snow...) since its still free... Bye Fonzie |
Edge-` | Dec 21, 2005 | |||
Thanks again LocalH and Fonzie. Thanks to LocalH's info and other research through the "sega2.doc" or the official dev manual, I have a good understanding of the highlight/shadowing now (never did know about that before Anyway, I am still working on this Thanks as always for your help and interest! I'll have updated screenshots up shortly after the holidays. If anyone knows of any contests coming up that MD/Genesis games can go towards, let me know. I'm sure it may motivate me a bit to keep going as well. |
1 | 2 | Next> |