Show Posts

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.


Messages - Parasyte

Pages: [1]
1
General Discussion / Re: SGDK2 on Mono (Linux/Mac OS X)
« on: 2009-11-26, 11:50:54 PM »
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.

2
Off-Topic / Re: Fun facts!!!
« on: 2009-10-13, 05:41:38 PM »
And only 256 care. ;)

3
General Discussion / Re: SGDK2 on Mono (Linux/Mac OS X)
« on: 2009-09-30, 05:04:17 PM »
The reason I'm not thrilled with FMod is the licensing.

4
General Discussion / Re: SGDK2 on Mono (Linux/Mac OS X)
« on: 2009-09-29, 06:29:00 PM »
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.

5
General Discussion / Re: SGDK2 on Mono (Linux/Mac OS X)
« on: 2009-09-27, 11:50:00 PM »
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.

6
General Discussion / Re: SGDK2 on Mono (Linux/Mac OS X)
« on: 2009-09-27, 12:52:48 PM »
Re: Design time and Run time appearance should be the same:

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.

7
General Discussion / Re: SGDK2 on Mono (Linux/Mac OS X)
« on: 2009-09-27, 02:13:35 AM »
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.

Code: [Select]
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!

8
General Discussion / Re: SGDK2 on Mono (Linux/Mac OS X)
« on: 2009-09-26, 07:41:31 PM »
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.

9
General Discussion / Re: SGDK2 on Mono (Linux/Mac OS X)
« on: 2009-09-26, 03:11:51 PM »
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.

10
General Discussion / Re: SGDK2 on Mono (Linux/Mac OS X)
« on: 2009-09-25, 11:56:09 PM »
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

11
General Discussion / Re: SGDK2 on Mono (Linux/Mac OS X)
« on: 2009-09-22, 05:18:18 PM »
It looks something like this. (Screen shot from Virtual Box, though does the same non-virtualized.)

12
General Discussion / Re: SGDK2 on Mono (Linux/Mac OS X)
« on: 2009-09-21, 05:54:53 PM »
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!

Code: [Select]
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. :(

13
General Discussion / SGDK2 on Mono (Linux/Mac OS X)
« 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#.

Pages: [1]