Tip for the creation of top-quailty new games for MSX (Development MSX Forum)MSX Resource Center               
              
English Nederlands Espa�ol Portugu�s Russian         
 News
   Frontpage
  News archive
  News topics

 Resources
   MSX Forum
  Articles
  Reviews
  Fair reports
  Photo shoots
  Fairs and meetings
  Polls
  Links
  Search

 Software
   Downloads
  Webshop

 MRC
   Who we are
  Join our team
  Donate
  Policies
  Contact us
  Link to Us
  Statistics

 Search
 
  

  

 Login
 

Username

Password




Don't you have an account yet? Become an MSX-friend and register an account now!.


 Statistics
 

There are 32 guests and 2 MSX friends online

You are an anonymous user.
 

MSX Forum


MSX Forum

Development - Tip for the creation of top-quailty new games for MSX

Goto page ( Previous Page 1 | 2 | 3 | 4 Next Page )
Author

Tip for the creation of top-quailty new games for MSX

viejo_archivero
msx addict
Posts: 456
Posted: October 21 2004, 11:59   
Or Screen 3 (1 pixel=4x4pixels). I've been planning something like that (just started to make some numbers, nothing serious), and if he wants to make something colorfull, it's the only way... refreshing the hole screen 2 or 4 will take some frames, but precalculate hi-res triangles will be a hell. Using Screen 3, you only have a 64x48 dot matrix so things will go speedier (but the display quality is lower)... perhaps it could be done hi-res, but I think then monochrome is the best option... and surely not rendering the whole screen but 2 banks only or so...
viejo_archivero
msx addict
Posts: 456
Posted: October 21 2004, 12:11   
I recommend the spectrum game "The Dark Side" as a starting point:

www.ysrnry.co.uk/articles/thedarkside.htm

That "Freescape" engine by domark does some polygon thing, but depending on the number of poligons in the actual view the game goes slow... altough it's monochrome and the stage render is reduced to nearly half the screen...
wolf_

msx legend
Posts: 4780
Posted: October 21 2004, 12:17   
screen 3 is a huge pattern-mode style .. you can't do typical bitmap operations to it without converting the pixels to the way they'll be put on screen.. and that's the sucky part, a real bottleneck!
viejo_archivero
msx addict
Posts: 456
Posted: October 21 2004, 12:50   
True, Wolf_. But if you want it colorful i think it's the best solution, even if you must filter everything before VDP output. The hard things for a project like that -I think- are calculating 3D>2D and generate the pre-buffered display...
Grauw
msx professional
Posts: 1006
Posted: October 21 2004, 12:56   
Quote:

Quote:

Quote:


- BASCOM


This is not a compiler. This is a few bytes long program, that uses BASIC ROM to execute a single BASIC command from MSX-DOS.

I also heard about a real BASIC compiler with that name, made by ASCII. Can anybody confirm the existence of this compiler or should we all just refer to the tool using BASIC ROM to execute a BASIC command from MSX-DOS?


Indeed, there is also a real compiler with that name, I have it. You need BRUN.COM to run the files and some library file iirc.

With the BASCOM you're referring to (or was it called BASKOM?) you could type Basic commands in DOS like BASCOM COLOR 15,0,0...

~Grauw
GuyveR800
msx guru
Posts: 3048
Posted: October 21 2004, 14:06   
Quote:

So you're trying to make a Wolf3D-like game for MSX? <*snip*> The walls of your game will be textured, will be filled with a plain color or will have wireframe-like render?


Wolf3D doesn't use texturing.

Quote:

Enemies will be sprites?


Wolf3D's enemies are sprites too

Quote:

Your character will move in axis z and x, or will use y for jumps or climb to upper levels?


Wolf3D is a strictly 2D game that uses no real 3D, it's all raycasting. AFAIK you can't jump, there are no higher levels.

Quote:

In simpler words: how the hell are you going to planify the development of such a game? . I'm surely interested!.


So, provided you can do raycasting quickly on a MSX (I think it should be possible to do raycasting on a pattern basis, in stead of on pixel basis) Wolf3D isn't that hard.

What would be harder is Doom, which does use polygons and texturing, does have higher levels, does have jumping. But even Doom is still largely a 2D game with a 3D presentation.

David Heremans from Compjoetania TNG and openMSX wrote this tutorial on writing a Doom engine for MSX: http://msx.gnu-linux.net/doomlike/doomlike.html

pitpan
msx master
Posts: 1390
Posted: October 21 2004, 14:18   
I think that a tile (8x8) based ray-casting system will do it. If you are able to move it really fast (50/60 FPS) and use a wise tile-redefinition technique, then you can have a visually impacting thing going on.

LeandroCorreia
msx addict
Posts: 454
Posted: October 21 2004, 14:20   
Talking about implementation...

MSX1, Screen 2. The game would take the upper half of the screen. The bottom half would be for a cool game panel. The game should be rendered in 4x1 pixels blocks (or even 4x2). Enemies will be visible if defined in low resolution (lemme say, 16x16 pixels that would be magnified). I think the game should be entirely rendered in a memory buffer (about 3 Kbytes) and then dumped on screen. Floors and ceiling would not be rendered (just like Wolf 3D). The game would not render walls that'd be too far.

If I could run it in at least 15 fps, then I'd only have to put a good music and a good gameplay to be a very cool game.
LeandroCorreia
msx addict
Posts: 454
Posted: October 21 2004, 14:21   
By the way, I'd love to see an F-Zero like game for MSX 1 too...
LeandroCorreia
msx addict
Posts: 454
Posted: October 21 2004, 14:24   
Oh, even better for a Wolf 3D, the game could use a "Zanac-like" layout. Game screen at left (3/4 of screen) and at the right the game panel (1/4 of screen). Since the game would be rendered in vertical stripes, it'd be way faster.
chaos
msx addict
Posts: 276
Posted: October 21 2004, 14:27   
Quote:

By the way, I'd love to see an F-Zero like game for MSX 1 too...



there's an F-Zero game for msx turbo R called F-Nano 2
Grauw
msx professional
Posts: 1006
Posted: October 21 2004, 15:14   
4x2 would be useful because that gives 256 different (monochrome) possibilities per 8x8 area - exactly the number of patterns available. Furthermore, in screen 4 or 2 it is practical to use the upper 128 lines for the game, and the bottom 84/64 lines for the status region. This because the screen is actually divided in three pattern regions, each 64 lines (8 tile rows) high, which can all have a different pattern table base address (iirc).

The buffer for one screen stored like this would be only 512 bytes.

~Grauw
viejo_archivero
msx addict
Posts: 456
Posted: October 21 2004, 15:27   
Quote:

In simpler words: how the hell are you going to planify the development of such a game? . I'm surely interested!
So, provided you can do raycasting quickly on a MSX (I think it should be possible to do raycasting on a pattern basis, in stead of on pixel basis) Wolf3D isn't that hard.

David Heremans from Compjoetania TNG and openMSX wrote this tutorial on writing a Doom engine for MSX: http://msx.gnu-linux.net/doomlike/doomlike.html



Interesting document... how is possible that no one did it before in MSX if it's "simple" and "possible" -even a demo-?... wow I see a lot of calculations there, would be a hell to code a game like that in assembler!.
viejo_archivero
msx addict
Posts: 456
Posted: October 21 2004, 15:28   
Quote:

MSX1, Screen 2.



I like this requirements. Just cool
sjoerd
msx addict
Posts: 450
Posted: October 21 2004, 16:36   
Next MRC Challenge: Maze Challenge?
 
Goto page ( Previous Page 1 | 2 | 3 | 4 Next Page )
 







(c) 1994 - 2008 MSX Resource Center Foundation. MSX is a trademark of MSX Licensing Corporation.