More the editor
Here’s a another screenshot of the editor. This time with the Font editor plug-in in action. Note that this is very very very incomplete and may not look like this when everything is said and done.
In: Programming · Tagged with: .NET, 2D, Direct3D, Editor, fonts, Gorgon - My 2D graphics library, Graphics
The editor
So I’ve been busy working on building the editor for creating the content for Gorgon. I know I posted a screenshot of a very old initial version of the editor way back:
Ugly.
Anyway, I totally scrapped that old thing and restarted. And here’s a more up to date (but not even close to being done) screen shot:
A little better.
This new editor is going to be a replacement for all the tools in the previous version of Gorgon. It will handle file management duties (File System Editor in v1.x), sprite editing (Sprite Editor in v1.x) and atlasing (Atlas tool in v1.x). It will also add font editing. The big thing about this editor is that it’s entirely plug-in based. Meaning that the font editor, sprite editor, etc… are/will be DLLs that are loaded/unloaded as needed. What this means for you: You can write your own plug-in modules for it. Want to build a map editor and integrate it with the rest of your content? With the plug-in system in the editor, you can write your own map editor and host it right in the editor interface (if anything the minimized tedium of having to write UI code is worth it). Want to write out your content data as encrypted data? You can extend the file writing functionality to write out encrypted file data.
Unlike the sprite editor in the previous version, the files are no longer saved as loose files on your hard drive that require a separate utility (file system editor) to pack into a single compressed file. This editor now outputs data as a packed file (of course, this can be modified with a plug-in) so you don’t have to come up with a strategy to update your content, allowing you to edit directly. This is where it takes over from the file system editor and like the old file system editor this one is capable of importing files by either clicking on an Import menu item, or dragging and dropping directly from explorer. And, obviously, there’ll be a way to extract the files to your harddrive should you wish to do so.
I have several plans for plug-in modules for the editor including a sprite editor, image editor (a very very very very simple editor, use photoshop or paint.net if you want high detail stuff), a font editor and a shader editor (maybe).
FYI, the window will look like that in Windows 7 as well (i.e. no aero glass). I’ve modified it to look like the Zune window by including a new object in Gorgon.Common.Dll called ZuneForm. Basically you inherit this form instead of a System.Windows.Forms.Form and then you get a Zune-looking window.
In: Programming · Tagged with: .NET, 2D, File systems, Game Development, Gorgon - My 2D graphics library, gorPack, Graphics, Programming
DEATH TO D3DX!
FINALLY. I’VE FINALLY DONE IT! It took weeks of work, but I managed to exorcise D3DX from Gorgon. Behold my video playing an animated GIF using a 2D texture array:
I’ve provided extensive info after the jump thingy.
In: Programming · Tagged with: .NET, 2D, Direct3D, file associations, Gorgon - My 2D graphics library, Graphics, png
So I’ve been adding examples to the new version of Gorgon for the last week or so. The latest one shows how to use the new input system to use a Raw Input mouse, keyboard and joystick (if present, and is actually not using Raw Input as such). It’s a pretty silly example, but shows how to get the input plug-ins loaded, how to create an input factory and how to create the objects used to represent the various input devices.
You want pictures though. I have one. And it is here.
In: Programming · Tagged with: .NET, Examples, Gorgon - My 2D graphics library, Graphics, Input, Raw Input
Boing!
Well, it’s been a while. I’ve been busy. You’ve been busy.
Anyway, I actually took some time to test out a piece of functionality for the new version of Gorgon. This new version of Gorgon will have a graphics API separate from the 2D renderer (the 2D renderer uses the graphics API however). This is unlike the previous version where the renderer was pretty much all you had access to. I had a user ask me a long time ago if it were possible to access the underlying renderer to render 3D along with the 2D. At first, it did not, but I did hack in a way to access SlimDX directly through a plug-in and it was awful.
So, in this version I decided to give the developer access to the full graphics API under the renderer. This allows the user to switch between 2D graphics and whatever they want. And here’s the results of my intense labour pain:
Yep, it’s a clone of the old Amiga demo “Boing”. As you can see, there are 2D elements (the text and the logo) along with the 3D elements (which were all done manually I might add, Gorgon does NOT have a 3D renderer so don’t get too excited). I’ve decided to include the code as an example program for the new Gorgon.
Rejoice.
In: Programming · Tagged with: 2D, 3D, Direct3D, Gorgon - My 2D graphics library, Graphics, HLSL, SharpDX
.NET 4.5 – Visual Studio 2012
So, I got myself a copy of Visual Studio 2012 Pro. It’s pretty nice, except for the shitty all-caps menus (which you can turn off with the registry hack located here). I really didn’t have any plans on moving Gorgon v2.x to .NET 4.5/VS2012 until I saw this:
In: Idiocy, Programming · Tagged with: .NET, Gorgon - My 2D graphics library, Programming, Visual Studio
Gorgon in text mode…
Yep. Console window actually. Exciting. Just a silly example program showing how to use some of the functionality from the common library.
You can go back to sleep now.

Text mode. Now you too can write state-of-the-art adventure games. N, E, LOOK, INV, instant death… good times.
In: Programming · Tagged with: Gorgon - My 2D graphics library
FYI… Logitech…
Is awesome. Seriously. You should buy their products whenever possible.
Best. Customer. Service. Ever.
In: Real life · Tagged with: customer service, g9 mouse, logitech
Windows 8
So I’m trying out Windows 8 (yes, it’s not released to the public, and yes I have it legally).
Dear God, what a mess this whole Metro/desktop thing is. Someone over at Microsoft must have split personality disorder or something. How in hell did they think that was a good idea??
Anyway, the OS does have some really nice improvements and it’s very responsive (except when it’s not… I get random freezes once in a while, apparently it’s something to do with my Intel SSD). And more importantly, after installing VS2010, and the June 2010 DirectX SDK, the new (and presumably old since I haven’t tried it yet) Gorgon works fine. What I knew, and was hoping I was wrong, is that they took out the D3DX library for the new DirectX, and as such things broke horribly under Gorgon because SharpDX uses the D3DX libraries to load/save textures. After installing the June 2010 DXSDK, everything worked again, so there’s that.
I really really really don’t like this metro thing. It’s just horrible with a mouse/keyboard and while I was ambivalent towards the Start Menu in previous versions, I really miss that I can’t group my applications (and I have a lot) under folders. This made everything really horrible to organize, especially with how obsessive I am about organization on my machine.
That said, the desktop is real nice. Love the new task manager, love the new copy/delete dialogs. I even like the new look they put in (they got rid of Aero, or probably more likely, the glass effect).
Sadly, I now have to figure out how in hell I’m going to make Gorgon work without relying on D3DX (yes, I know, I could keep with developing for the June 2010 SDK, but at some point you know they’re going to drop that). Apparently I can use WIC (Windows Imaging Component), but it looks pretty convoluted and I need something that’ll give me AnyCPU support.
All in all, the awfulness of Windows 8 outweighs its benefits in my opinion. Someone really needs to kick Ballmer (I blame him wholeheartedly for this mess) out of that company and install someone with a fucking clue (i.e. we don’t all use/want a tablet, nor do we all want to develop for them).
Anyway, I am not dropping support for Windows 7/Vista from Gorgon. So don’t ask about it.
That’s all for now. Gorgon is still being worked on, a little, here and there. It’ll be ready by 2213.
In: Programming, Real life · Tagged with: Direct3D, Gorgon - My 2D graphics library, SharpDX, Windows 8
Dual monitor stuff
So here’s a screenshot of the dual monitor code in action:
It’s not much to look at, but it was a major pain in the ass to get working, and does indeed work. Basically you create 2 forms, and 2 swap chains and set both swap chains to full screen and then add some special code to handle cases where focus is lost/restored on the primary form.
Gorgon would normally handle focus loss to reset your full screen mode for you when focus is returned (this is due to a bug in WinForms and DXGI). And that’s all well and good, but this code really doesn’t work well with multiple monitor situations. So, there’s a flag to tell Gorgon to turn off the automatic mode reset on focus, and that will let you, the user, handle the transition when dealing with multiple monitors. It’s not an ideal situation, but it works
It’s a bit complicated to set up, but there’ll be an example included with Gorgon on how to use dual monitor setups that’ll guide you through the process.
In: Programming · Tagged with: 2D, Animation, Direct3D, Gorgon - My 2D graphics library, Graphics, Programming, SharpDX
Look at my balls
So, I’ve been quite busy lately with a new job and such. And as a consequence I haven’t had any time for Gorgon recently. But I finally sat down this evening and did a little work (not much mind you, and certainly nothing of note) on Gorgon 2.x.
I’ve uploaded the Ball Demo to the site so people can have a look at it. I’d appreciate any feedback (please post the feedback to the forums, thank you).
Please note the following before running it:
- It’ll probably crash. It’s in development after all.
- You NEED Windows Vista Service Pack 2, or Windows 7 (Windows 8 -might- work, but don’t count on it).
- It will run on Direct 3D 9 capable video devices. However, it requires Direct X 11 be installed on the system (hence the OS requirements).
To run it, just run the BallDemo.exe and pray (oh, and ensure that the zip file isn’t ‘blocked’ by Windows, .NET assemblies hate that shit). It defaults to windowed mode with a resolution of 1280×800 although you can modify the BallDemo.config file to change to a resolution you like.
Let me know what your performance is like.
In: Programming · Tagged with: .NET, 2D, Animation, Direct3D, Game Development, Gorgon - My 2D graphics library, HLSL, Programming, SharpDX
Issues with installing SlimDX Mar 2009 (2.0.7.41)
Apparently there’s an issue with Gorgon installing SlimDX. When the installer runs, it is supposed to detect whether the March 2009 SP1 (v2.0.7.41) SlimDX assemblies are installed. If they are not, then it will install SlimDX for you. However, it has come to my attention that the Gorgon install has not been installing SlimDX.
The issue is with the March 2009 SP1 SlimDX end user runtime installer (Gorgon runs this when it installs). Apparently it’s not working, and even though I’ve tried to download it from the SlimDX site it still refuses to run (for me) and claims that the installer is invalid.
If you’re having issues running Gorgon applications because it can’t find the v2.0.7.41 SlimDX assemblies:
“Could not load file or assembly ‘SlimDX, Version=2.0.7.41, Culture=neutral, PublicKeyToken=b1b0c32fd1ffe4f9′ or one of its dependencies. The system cannot find the file specified.”
Then install the SlimDX March 2009 SP1 Developer SDK from here and all should be well again.
In: Programming · Tagged with: DirectX, Gorgon - My 2D graphics library, SlimDX
Gorgon – 1.1.4529.31450
There’s a new version of Gorgon uploaded. There’s not a huge amount in this release regarding the actual graphics library, just a few bug fixes.
However, there are two important changes:
- The project/solution files for the library source code were converted to Visual Studio 2010. This means that in order to compile the Gorgon library, you will need Visual Studio 2010. The library still uses .NET 3.5 SP1, so Visual Studio 2008 will continue to work when using the library assembly.
- Most important of all: There’s been a new library added called GSound (Gorgon Sound). Written by ShadowDust702. New forums have been added to reflect this new addition.
You can download Gorgon from here.
In: Programming · Tagged with: .NET, 2D, Direct3D, Game Development, Gorgon - My 2D graphics library, Graphics, Programming, SlimDX
Font editor
So the font editor is nearly complete. Here’s a few screen shots:
- The new font dialog.
- The main font editor window.
- A new color picker.
- Text editor to test your font.
In: Programming · Tagged with: .NET, 2D, Gorgon - My 2D graphics library, Graphics, Kerning, SharpDX
Editors
I decided to take a break from writing the library, and have been working on the editor. Here’s a screen shot of the font editor in semi-action. Please note that this is very preliminary and there’s not a lot going on here.
In: Programming · Tagged with: 2D, C#, Direct3D, Editor, Gorgon - My 2D graphics library, Graphics, Kerning








