Scrolling Game Development Kit Forum
SGDK Version 2 => General Discussion => Topic started by: Parasyte on 2009-09-20, 06:52:28 PM
-
Hi all,
I'm a hacker/developer looking at the possibility of running the SGDK2 IDE on Mono. Mac OS X, specifically.
The initial problems with the IDE under Mono have been noticed by developer bluemonkmn as early as last January: http://www.opentk.com/node/629 Mono's implementation of System.Data.DataSet.ReadXml() doesn't like the XML format for the SGDK2 projects, so it crashes on start-up.
Some good news, though! By disabling the ReadXml() call (and Windows-specific code in the slash form) you can actually get the IDE running on OS X. It probably runs on Linux with the same set of changes. (See attached screen shot!) Without the ability load projects and templates, it's kind of useless. (Also causes crashes at some points.)
This doesn't mean it actually works. On the contrary, the OpenGL drawing creates a real mess. It's probably related to not clearing the surface buffers? Unfortunately, I'm really unfamiliar with OpenGL, and even worse with C# (this is my very first expedition into C# and .NET-anything). What OpenGL actually renders resembles a buffer from video memory which hasn't been cleared; it contains pieces of icons and images from the OS. It's also apparently double-buffered, because moving the mouse over and scrolling it causes rapid flashing between two messy video buffers. This similarly happens to a friend on Windows Vista, so the OpenGL issue is probably easily resolved with a patch.
Another problem I've noticed is that Mono crashes (not just the application) when you open the About form. Mono isn't able to handle the Copyright symbol that it wants to display.
And lastly, very simple compiled games (I used Windows XP SP3 running under VirtualBox to compile) like the game from Tutorial 1 will run under Mono with some small problems: The LimitFrameRate rule does not work (runs at ~2300 fps on my Mac) and keyboard input also does not work.
That said, I think bluemonkmn has done a fine job on the initial porting steps, with the recent switch to OpenGL. If there is anything I can do to continue the progress (as I said, I'm pretty new to OpenGL, and VERY new to C#) I'd like to lend a hand. It's going to take me some time to wrap my head around the project source code and C#.
-
Much work has already been done in this field. I too got the IDE to run under Mono (ununtu) with those changes (I was the first to notice), and have done work to help get sgdk2 games at least compliant with how Mono works. For a sample, search Youtube for "Technoventure on Ubuntu". I believe at this point the IDE supports building games that run under Mono and .Net (all you "need" is a small config file). The frame rate liter didn't work at one point due to using p/invoke on a Windows-specific API that Mono doesn't emulate. Tha has been fixed, I think, by using the System.Diagnostics.Stopwatch class instead.
-
D'oh -- did I forget to include the stopwatch implementation in 2.1.2? It's still using QueryPerformanceCounter :(.
Where did the stopwatch-based implementation go -- do you have it durnurd?
-
I also noticed a bug with the dropper tool in the graphic editor. It refuses to choose colors from locations that are 0 on either the X or Y coordinates. (Not related to Mono.) Here's a patch!
Index: sgdk2/branches/SGDK2IDE2.1/GfxPane.cs
===================================================================
--- sgdk2/branches/SGDK2IDE2.1/GfxPane.cs (revision 157)
+++ sgdk2/branches/SGDK2IDE2.1/GfxPane.cs (working copy)
@@ -320,7 +320,7 @@
break;
case DrawingTool.Dropper:
if ((DragStart.X < Image.Width) && (DragStart.Y < Image.Height) &&
- (DragStart.X > 0) && (DragStart.Y > 0))
+ (DragStart.X >= 0) && (DragStart.Y >= 0))
ParentEditor.PickColor(Image.GetPixel((int)DragStart.X, (int)DragStart.Y));
break;
case DrawingTool.FloodFill:
In other news, I can compile the IDE in Mono, but the executable explodes under Microsoft's .NET implementation. This is wonderful. :(
-
I don't know if I have the project, but it doesn't seem like it would be too hard to reimplement
-
Looks like I have a couple updates to make for 2.1.3.
What does the "explosion" look like when you run a mono-compiled IDE in Microsoft's .NET?
-
It looks something like this. (Screen shot from Virtual Box, though does the same non-virtualized.)
-
Looks like it has a problem with image lists. It might be worth trying to create a basic test application with an image list in Mono and see if it runs in .NET. If it does, then try using the same image that SGDK2 is using in the Main form. That should narrow down the problem a little.
-
I have made the following corrections in the subversion source tree and they will be included in the 2.1.3 release:
- Fix dropper tool to also function on row 0 and column 0 of graphic editor pane.
- Replace Win32 API implementation of LimitFrameRate with .NET-based code.
- Eliminate a couple compiler warnings on generated projects.
- Hide TestCollisionRect overload that accepts a sprite so that the other overload is exposed in the IDE.
-
Sounds good. I'll pull in the SVN update in a bit. In the meantime, I think MonoDevelop is still far too unstable for practical use on OS X. (:() The lack of the debugger Add-In for it makes debugging an unnecessary chore.
I'm downloading Visual Studio Express. Perhaps that will help me work on the graphics oddities I've been seeing. I would attach the screen shots of the problem if it meant I didn't have to try to compress them down to <128KB. So I've just uploaded them to my own host. The screen resolution is a bit large, so I'm linking to them without thumbnails. Just so you know!
Please bear with me while I try to explain what it is I'm seeing...
The first and second screens show what the IDE (layer editor) looks like on Windows under VirtualBox. Note the bottom of the OpenGL window flashes between two buffers while it updates; these screens capture both buffers at the time. Screen shot 2 even shows pieces of my OS X desktop background in that buffer "over scan" area.
http://parasyte.kodewerx.org/projects/sgdk2/graphics_bug_1.png
http://parasyte.kodewerx.org/projects/sgdk2/graphics_bug_2.png
The third screen shot is what I see on OS X/Mono. Note that the OpenGL buffer prints pieces of icons from my system in the "over scan" area.
The stars are also rendered strangely; as I scrolled the window, the sides of them get "repeated" where it should have been perfectly transparent. What you are actually seeing around the stars is the previous frame(s) during the scroll. Basically, the transparent background in my star tile is causing OpenGL to not update the area. Ideally, it should be drawing something like a checkerboard (to indicate transparency) or black background.
The third major rendering issue here is the tile selection widget. My simple 32x32 pixel solid blue background tile is drawn HUGE, taking up most of the widget space, and covering up my star tile. The widget is still functional, however: you can see I have the star tile (tile #1) selected.
http://parasyte.kodewerx.org/projects/sgdk2/graphics_bug_3.png
-
It looks like some of your issues are standard behavior. SGDK2 does not erase or draw irrelevant parts of the map.
1. It doesn't draw in undefined areas of the map/layer, which is why you see un-cleared buffer space below the map.
2. It doesn't draw in transparent areas of the map, which is why you see trails behind the stars.
Rather than dumb-down SGDK2 to "clear" areas that are transparent (black is not transparent after all), I figure it's more optimal to not waste time drawing anything there. After all, the game should be responsible for defining the background, not some hard-coded checkerboard pattern or black background forced upon you by SGDK. I suppose at design time it might be convenient to have some indicator since performance is not critical at design time, but that would confuse users to see one thing at design time and another at runtime. At runtime I really don't think it's correct to be clearing the background when they have said it should be transparent. That is what background layers are for. SGDK doesn't waste time drawing hard-coded background that the game should be defining (in a non-hard-coded way).
So don't go trying to solve those problems as part of the porting effort. Those behaviors are the same in Windows.
I'm not sure about the huge tile issue. Did you try other already-existing projects? Did they have similarly strange behavior with giant tiles?
-
I was going to mention the same thing. You already have something that denotes a transparent area in the graphic sheet editor, you should use the same thing in the layer editor, so people know that what they're seeing is not a glitch but a transparent area of the map.
-
But the graphic sheet editor has no reason to allow the user to define backgrounds, the map does. The map should not be wasting time drawing something that the user should never see in a properly implemented game. The game should define the background, not SGDK2. Maybe SGDK2 should just create a default background layer behind every new map? But where will it get the image for the background tile? Create a dummy graphic sheet, frameset and tileset too?
-
Hi!
Well, if I may add my own comment about transparency in the layer designer, I think it may get confusing when sprites and tiles you put in the layer leave trails behind. Its hard to place something in a pixel perfect position this way. So, I took the habit, whenever I add a new map, to add a fake background layer to cover all transparent areas. When the map is finished, I destroy the fake background layer.
It would be great if it was an option when creating a new map to add a fake backround layer with a checker design like in Photoshop. I think, for someone who is used to work with graphics, it is not too confusing. Of course, this layer must not show up at runtime.
As for creating a dummy graphic sheet, a dummy frameset and a dummy tileset... Couldn't these things be hidden? Could SGDK2 fake a background at priority -1 (always behind) whenever you're in a layer designer with all the necessary elements (graphic sheet, frameset, tileset) not visible in the project and not compiled when the project is generated?
Anyway all of this is a "nice to have". Really not essential.
Thanks! :)
-
The map should not be wasting time drawing something that the user should never see in a properly implemented game.
I'm referring solely to editing the layer at design time.
-
It looks like some of your issues are standard behavior. SGDK2 does not erase or draw irrelevant parts of the map.
1. It doesn't draw in undefined areas of the map/layer, which is why you see un-cleared buffer space below the map.
2. It doesn't draw in transparent areas of the map, which is why you see trails behind the stars.
For point 1, it should at least clear the entire buffers (to "transparent black"; RGBA 0,0,0,0) as they are created. This is a common part of initialization of any modern graphics code. At least, in my experience it is.
Point 2 is understandable. This I could live with (until I get to the plans editor, which is a real nightmare of usability because of it). But seeing a random jumbled mess in the undefined and non-interactive portions of the layer really irks me. Especially when double buffering is enabled.
Rather than dumb-down SGDK2 to "clear" areas that are transparent (black is not transparent after all), I figure it's more optimal to not waste time drawing anything there. After all, the game should be responsible for defining the background, not some hard-coded checkerboard pattern or black background forced upon you by SGDK.
I agree. However...
I suppose at design time it might be convenient to have some indicator since performance is not critical at design time, ...
This is the point I'm trying to make. I am most familiar with image editors such as The GIMP and Photoshop which explicitly define transparent and alpha-blended areas of an image with a hard-coded checkerboard pattern.
... but that would confuse users to see one thing at design time and another at runtime.
Yes, it probably would confuse anyone who hasn't used GIMP/Photoshop/etc to create semi/transparent images for web designs (or anyone familiar with image design and alpha-blending, at all). Surly this group of people is not your target audience. On the other hand, that group uses a similar work-flow (non-WYSIWYG) quite successfully ...
At runtime I really don't think it's correct to be clearing the background when they have said it should be transparent. That is what background layers are for. SGDK doesn't waste time drawing hard-coded background that the game should be defining (in a non-hard-coded way).
So don't go trying to solve those problems as part of the porting effort. Those behaviors are the same in Windows.
I will leave the issue here. But consider the suggestion, anyway. :) It could always look better [at design-time] at the cost of possible user confusion.
I'm not sure about the huge tile issue. Did you try other already-existing projects? Did they have similarly strange behavior with giant tiles?
I haven't yet found any other OpenTK projects that run. The couple that I have tried were a bit older, and crashed on start-up. But I don't recall which platforms I tried them on.
-
If you create a new project based on the sample template, are you not even able to view it in the map editor?
-
Well, the large tile rendering happens to OS X/Mono, and I cannot load (or create) projects/templates on it due to the ReadXML() issue. If that's what's being referred to.
-
Okay, I implemented a default background layer for new maps. It's a little messy, and probably introduces a lot of new bugs (if you try to do anything unexpected with the layer), but it works for the simple cases. The code is checked in to subversion. Wanna try?
-
For anyone interested in running/compiling the IDE in Mono, you will have to change the Reflect library to build for runtime version 2.0 (it defaults to version 3.5), and you will also have to apply the following patch. Keep in mind the patch is a rough hack, and I wouldn't like seeing it in the repository.
Index: branches/SGDK2IDE2.1/SplashForm.cs
===================================================================
--- branches/SGDK2IDE2.1/SplashForm.cs (revision 157)
+++ branches/SGDK2IDE2.1/SplashForm.cs (working copy)
@@ -104,6 +104,8 @@
protected override void OnLoad(EventArgs e)
{
+ try
+ {
BLENDFUNCTION bf;
String strAppDir = Application.ExecutablePath;
@@ -132,6 +134,11 @@
m_SplashImage = null;
ReleaseDC(IntPtr.Zero, hdcScreen);
}
+ catch
+ {
+ Console.WriteLine("GetDC() failed.");
+ }
+ }
protected override CreateParams CreateParams
{
Index: branches/SGDK2IDE2.1/MainWindow.cs
===================================================================
--- branches/SGDK2IDE2.1/MainWindow.cs (revision 157)
+++ branches/SGDK2IDE2.1/MainWindow.cs (working copy)
@@ -927,7 +927,14 @@
{
SGDK2IDE.PushStatus("Loading " + projectFile, true);
DataSet dsLoad = new DataSet();
+ try
+ {
dsLoad.ReadXml(projectFile);
+ }
+ catch
+ {
+ Console.WriteLine("dsLoad.ReadXml() failed.");
+ }
ProjectData.Clear();
InitializeTree();
ProjectData.Merge(dsLoad);
bluemonkmn: I pulled in the SVN changes, and the only trouble I'm seeing with your patch is when accepting the default values for creating a new layer, it complains that a layer with that Z-index already exists. And of course, I can clearly see the "Designer Layer" in the list after creating a new Map.
That said, the rendering is much improved with it!
-
Yes, the designer background layer is supposed to be visible in the tree. That way the user can easily see how the background is formed and how to replace it when they're ready to define their own background. It's just like having your first layer automatically added for you when creating a map (except that it won't be visible at runtime because it gets excluded when the project is compiled). I figured that would be the best compromise all around: don't add unnecessary overhead, make sure the user has full control over all the layers that are being drawn, but don't let the default behavior make a mess so easily. Oops, I forgot one -- runtime and design time appearance should be the same. What do you think? Is that important?
-
I uploaded fixes to:
1. Automatically select the next available Z-Index when adding a new layer.
2. Use .NET 2.0 for Reflect.dll (I think it was just an overlooked default -- didn't need 3.5).
Maybe I should get you doing code review for me :)
-
Re: Design time and Run time appearance should be the same:
WYSIWYG (http://en.wikipedia.org/wiki/WYSIWYG) is certainly a good model for editors. In my own opinion, SGDK2 is an editor which would strongly benefit from it. Beginning users (like me) and advanced users will both get a lot out of it.
And code review is popular in a lot of the open source projects that I follow. I haven't necessarily been a reviewer before, but then again if it's just peer review and you think it will help create an overall better product, I would be glad to help out. You could also encourage others to get involved with peer reviews and such. :)
Late last night, I got Visual C# Express 2008 installed on my VirtualBox/Windows XP, and compiled the latest SVN changes. The project wouldn't even build for me with the Reflect.dll version 3.5 configuration. Your newest changes with the layering are looking great on Windows, too. The Plans editor (as detailed in the first tutorial) is much much easier to work with, now. The main problem with the plans editor on a totally empty/clear overlay layer was that drawing the semi-transparent blue box and white dashed arrow over "nothing" made it difficult to see what you were really doing (or supposed to be doing, for that matter). With the new background pattern layer, all that is totally cleared up, and it even looks like there was never a problem to begin with! Haha :D
I was planning to spend part of today looking at that ReadXml() problem. Maybe writing a minimal test case app to see if it's reproducible in Mono, and giving it to Ximian. There might not be an effective work-around, but if there is, I'll definitely write a patch for it. And I need to start using the bug tracker on sf.net to help keep track of some of the problems with the port. There's a lot of little small things that just aren't right, but then there's also this ReadXml() thing which is pretty much a show-stopper for the whole project.
-
So do you think instead of having that background layer only there at design time, it would be good to compile it to be visible at runtime too? In order to do that, I would probably want to make the checkered pattern into a regular graphic sheet, frameset and tileset.
Oh, and if you see any irregularities in the code (like Reflect.dll requiring .NET 3.5), do point them out. The code review doesn't have to be entirely formal.
-
WYSIWYG is grand and all, but it need not be exact. Having an exact WYSIWYG editor would be very unhelpful in many cases I can think of. If, for example, you're editing a webpage, and you want to resize a DIV, show resize controls around the box. Makes sense! But don't show them at runtime. If you're editing an image in Photoshop, and you want to determine where the image is transparent, show a checkered background, but don't export that background when you save the image. Makes sense! If you're placing tiles in a layer, and you want to know which tiles in this layer are transparent, show a checkered background, but don't export that background when you save the layer. Makes sense!
-
durnurd, yeah. I'm a fan of the GIMP/Photoshop method of editing with transparencies.
I wasn't aware that the pattern backgrounds created in current SVN weren't exported as part of the final product. The layer shown in the tree gave me the idea that it was. Anyway, as far as the editing aspect goes, the current implementation is a nice improvement already. It probably wouldn't make much sense allowing users to create games utilizing the pattern as an actual background. The alternatives are showing the same "undefined" areas at runtime, or just solid black.
-
I've added some bug reports to the tracker on sf.net. These are mostly there for me to keep track of porting progress, but could be useful info for others as well.
On a different note, what does everyone think about replacing FMod with OpenTK's implementation of OpenAL? That will allow mixing uncompressed PCM audio without any additional libraries. Compressed audio could be handled by (for example) libvorbis. There's a "vorbis dot net" project on SF, but it hasn't been updated in years. As for MP3, meh... Vorbis is comparatively unknown, but has been shown to produce higher quality audio reproduction. There's also the lack of MOD (and other tracker formats) support. I have yet to find a truly free "replacement" for FMod.
-
i
On a different note, what does everyone think about replacing FMod with OpenTK's implementation of OpenAL? That will allow mixing uncompressed PCM audio without any additional libraries. Compressed audio could be handled by (for example) libvorbis. There's a "vorbis dot net" project on SF, but it hasn't been updated in years. As for MP3, meh... Vorbis is comparatively unknown, but has been shown to produce higher quality audio reproduction. There's also the lack of MOD (and other tracker formats) support. I have yet to find a truly free "replacement" for FMod.
I agree with this. having a choice of sound devices isn't a bad idea.
-
Why are you trying to replace FMod?
-
Perhaps if you find one capable of changing pitch in real time and positional effects it would be worthwhile, but otherwise fmod does the job.
-
You know, FMOD does do all those things. I don't know if it's in the version online, and I don't know if people notice it, but the Technoventure SGDK2 sample game does pan some sounds from left to right based on where on the screen they are.
-
The reason I'm not thrilled with FMod is the licensing.
-
You know, FMOD does do all those things. I don't know if it's in the version online, and I don't know if people notice it, but the Technoventure SGDK2 sample game does pan some sounds from left to right based on where on the screen they are.
Really? I'm going to go download it again and see. :)
Maybe a simple ui for this stuff like in sgdk1 would be a good idea.
-
The FMOD license says FMOD is free if the product is free. Are you concerned that people may want to be able to use SGDK2 to create commercial games and will then have to pay for FMOD? I wonder if it would fly to license FMOD for SGDK2 itself as a hobbyist/shareware author ($100) and then all the games created with it could include it. Probably not, but maybe :).
-
Well, SGDK1 is no longer under development, and also doesn't use FMOD, so anybody who wants those features will have to add them to SGDK1 by themselves.
-
I meant making a similar sound effects ui like the one in SGDK1, in SGDK2.
-
The FMOD license says FMOD is free if the product is free. Are you concerned that people may want to be able to use SGDK2 to create commercial games and will then have to pay for FMOD? I wonder if it would fly to license FMOD for SGDK2 itself as a hobbyist/shareware author ($100) and then all the games created with it could include it. Probably not, but maybe :).
Well, I imagine there is a probability. I've seen stranger things. :) If game developers using SGDK2 wanted to sell their creations for $5 (or less) they should probably not be hindered by the audio library license. Then again, I suppose nothing is stopping them from just not using FMOD.