Scrolling Game Development Kit Forum
SGDK Version 2 => General Discussion => Topic started by: Goowolgo on 2008-01-27, 01:25:27 PM
-
I'm aware that the creator of SGDK is working on converting the inner working of SGDK2 to opengl. I've looked into what opengl is and from what I understand is that bluemonk willl be replacing all the DirectX functions/calls/whatever with the opengl. If I am not understanding that part correctly...please fill me in.
What I am really trying to get at is when all is converted and so forth, how will this affect the project I am working on now? and what new features would I expect to see?
-
I kind of doubt that bluemonkn will make a significant change that'll affect your project negatively. I really can't back that up more than 99.1 percent :-\, but I thing that your project will survive. OpenGL is really for the better though. :-X
-
If the conversion away from DirectX is complete, however, some functions may be changed in the code rules. For example, SGDK2 also uses DirectInput, and while you won't be interacting with that for the most part, one place you do interact with it is in the IsKeyPressed function, which takes a Microsoft.DirectX.DirectInput.Key object as the argument.
While I think it would be a good idea to transfer away from DirectX entirely for SGDK2, I'm not entirely certain this will happen, so you needn't worry entirely, and I also think that this won't affect you too much. It should be easy to fix most references to DirectX in the rules.
Also, if you just keep using SGDK2 v2.0, you don't have to worry about anything, because you won't be using OpenGL. The OpenGL system may be an addon that you could import to overwrite the DirectX code, or vice versa, so you can choose which you want to use.
I know that my Weather sample would no longer work with OpenGL unless changes were made, since it draws directly to the screen using DirectX, but if you're not using that, that's not a problem either.
-
So, will you do any changes to the weather effect template? :-\ :-\ :-\
-
Ideally, the low-level graphic calls will be what is primarily effected. I'm pretty sure that the fmod library being used is not reliant on DirectX, so it should be unnaffected. The player input is an issue, as you would need to substitute something other than DirectX in order to fully separate it from Microsoft's initiative. The ultimate goal of using OpenGL is to disconnect the engine from DirectX, thereby freeing it up for porting to other platforms.
Naturally, there's no reason to abandon code already written. If an OpenGL options is added in the future, I'm sure that the Windows version of the SGDK2 will still allow you the option of using DirectX. You just need to put conditionals in the right places, after all. And again, this is just experimental at the moment. The SGDK2 author is still experimenting with getting OpenGL working on the engine. (I believe he is using the Tao library at the moment, which is friendly for cross-platform C#) If he feels it is impractical, I'm sure that he will likely focus on other features to develop.
-
Actually after a few false starts, I'm proceeding with OpenTK, a relatively thin and new OpenGL wrapper that I think has better cross-platform support than Tao.
-
but do i understand this right, if you once made the change to open gl, i guess you will develop sgdk2 in this way further...
someone who wants to use directx, has to stay on the current version.
-
I'm not sure yet. Ideally, there will be two project templates. One will be for DirectX and the other will be for OpenGL, and both will be available in SGDK2.1. The SGDK2 IDE will be pure OpenGL, but the projects could use either technology. But I'm not sure yet if that will work out the way I plan.
-
but do i understand this right, if you once made the change to open gl, i guess you will develop sgdk2 in this way further...
someone who wants to use directx, has to stay on the current version.
Also, it is worth noting that ultimately, this would only really effect...well...effects. Higher-level shader effects would be the only real difficulty in porting between the two different APIs. And for the most part, I don't think most users of SGDK2 are really looking to push graphical effects quite THAT far. I know that I'm primarily focused on gameplay elements, and eventually sprite artistry. Shader effects are way, way down the line in my development cycle.
-
I'm not sure yet. Ideally, there will be two project templates. One will be for DirectX and the other will be for OpenGL, and both will be available in SGDK2.1. The SGDK2 IDE will be pure OpenGL, but the projects could use either technology. But I'm not sure yet if that will work out the way I plan.
So like when we go to file and to create a new project there would just be another choice around that point to choose a DirectX project or OpenGL?
-
Exactly
-
so if you compiled your project in opengl, a linux or mac os could run it? or is there furthur porting to do?
-
No, SGDK2 would still have to be ported to another environment and run in that environment in order to compile games for that environment. Or the project created by SGDK2 (C# source code) would have to be loaded into a compiler on the other environment and compiled. But hopefully having it based on OpenGL will make that easier.
-
would OpenGL be compatable on more computers (like my old one that im using rigth now for RANAT)
-
I don't know. I hope it works on at least as many as DirectX did. I'm using some TextureRectangleNV feature, which might be NVidia-specific, but we'll have to do some testing when I'm done with the conversion to see if it works on some systems where DirectX didn't or, heaven forbid, fails to work on some systems where DirectX worked. I might have to put some extra time into figureing out how to use OpenGL in a more compatible way if this doesn't work out. There's another similar feature, and I don't know why they are separate. (Both features allow the use of textures that are not a power of 2 in size. For example, if your graphics sheet is 500 pixels wide instead of 512 pixels wide, this feature is necessary.)
-
And for the most part, I don't think most users of SGDK2 are really looking to push graphical effects quite THAT far. I know that I'm primarily focused on gameplay elements, and eventually sprite artistry. Shader effects are way, way down the line in my development cycle.
I played a SGDK2 game on my computer, but my "peers" who watched all said the graphics compare to the SNES. Any way that you'll upgrade the graphics to DS quality?
(3 steps up) :surprise:
-
well, the quality of the graphics depend on the artistic skills of the game makers, not of the IDE :surprise:
sgdk2 has all possibilites for games with excellent graphics: full range transparency support, several layers support, PNG support...
of course someone could make his game surroundings and sprites in 3D, render it and put that images into his 2D game....
-
the graphics can be awesome, or they can be really bad... depends on the maker of the game.
Because you can have antialiasing, sprite animation can be flawless if your good at it, semi-transperancy, multiple layers, since graphics can be imported you could grab graphics from your favourite game and use them...
-
Colors
SNES: 8-bit color with a color space of 32768 possible colors (256 colors per scan line)
DS: ?
SGDK2: 24-bit color with a color space of 16777216 possible colors plus an 8-bit alpha channel
Resolution
SNES: Common resolution = 256x224, Max = 512x448
DS: 256x192
SGDK2: Commonly 640x480 and 800x600; Maximum 1280x1024
Video Memory
SNES: 64 KB
DS: 512 KB texture memory per screen + 656 KB video memory
SGDK2: Depends on system. 65,536 KB (64 MB) is common
I agree with the other comments. Only the existing graphics sets are lacking. Much nicer graphics could be created by very skilled users. SGDK2 is not limiting the graphics quality. Unfortunately I don't have the skill/time to do that myself.
-
One thing I should point out, so as to not short-change the SNES, is that it <i>does</i> have a cool "Mode 7" feature (search for it) which allows for a rotation, scale, and skew to be applied to a background image such that you get a semi-3D effect as seen in games such as Super Mario Kart, F-Zero and Final Fantasy.
But on the other hand, these other game systems are designed with memory-constraints in mind, so the programmers and artists had to work carefully and very intelligently to keep their graphics within memory constraints, In some sense, this is a good thing to do with SGDK2, since fewer graphics then need to be loaded into memory, but it is not necessary. There is no limit in SGDK2 to how many sprites can be on the screen at one time.
-
yes there is... my game crashed with the error message that there was over 100 sprites...
(unless there is a way to disable that)
-
there is a way! but i've forgot where i read this. i would try it at the tutorials and sprite help files. max 100 sprites is only a default value, you can change it.
-
:o
thanx! :D
-
100 it only the limit for dynamic sprites (sprites created/added by rules). The limit is only imposed so that game developers don't accidentally create 100,000 sprites (without knowing it) when they only meant to create 1. It would be too easy to create 100,000 sprites otherwise, and then a user might see some performance problems and blame it on the engine rather than their rules. But if you put sprites on the map at design time, there is no limit to that type of sprite.
And, as Morgengrauen said, you can change or eliminate the limit. I believe the error message tells you how.
-
that was a while ago, (one of the alpha's i think) so that might be why it didn't say how in the error message. :P
-
Yes, the quality of the games graphics are not really limited by the technical aspects of the SGDK. (ver 2.0) In fact, it is probably considerably more capable than either the DS or the SNES. The real difference is in the artistry. Most high-quality 2D SNES and DS games have entire teams of artists working for months on their assets. They look better because they have some highly skilled and practiced artists giving them their all for a considerable chunk of time.
Many SGDK2.0 projects are going to have only one person working on them. Even if that person happens to be an exceptional sprite artist, they are still going to be at a huge disadvantage when compared to commercial teams. In fact, you should probably be flattered if your game is being compared to SNES graphics. It means you're being favorably stacked up to some of the most beautiful 2D games ever created. (after the SNES, 3D started to really come into vogue) Just keep practicing with your art, your work should steadily improve with practice.