Scrolling Game Development Kit Forum
SGDK Version 2 => General Discussion => Topic started by: TheLaw on 2009-07-02, 02:00:37 PM
-
Hey, I've a question. If I had a team of guys building a game with this, how would we do it? There's no way to load import/load maps into a project.
Cause I want other team members to frame in the maps and set objects, then I'd like to go in and be the one to make them come alive.
Sorry if I've missed something obvious here, I'm trying to get us up and running with something rather quickly, and I'm looking at a few API's/Kits/Engines. - so I haven't looked deep into it. If I could get this figured out I'd probably use SGDK2.
Also, just quickly, for me if you will, how customizeable is this kit?. Pretty easy to add your own AI for enemies and such thru script? We have a pretty elaborate battle system planned.
Thanks, and sorry to be kinda needy and pushy. I've had a rough day of failure with another kit I was settled on. Now I'm behind and have to find something good get back working fast!
-
Hi TheLaw,
There is no implemented "user friendly" way to import/export a layer, but since the SGDK2 project file is made in XML, it's very easy to just copy and paste the XML in another project file. As long as you know exactly what you need to transfer. I've done it a couple of times, it's not that hard, the XML tags are well identified.
About the "customizability" of this kit, it's impressive! Since all the source code is provided with the kit, you can modify anything you want. The current version (2.1) of SGDK2 is using OpenGL and C#. C# is easy to use and very reliable. When you generate the project, all your stuff is converted into C# classes and you can actually run and debug your project using Visual Studio for example. You can extend the kit as much as you want. I didn't try to open the project in Visual Studio, but some guys around here did. I didn't do it, because I never had a use for it, since the tools provided with the kit suited my needs until now. I have extended the kit and made some custom functions in my projects and it works like a charm. :)
If you want to create simple code for the elements of your game, there is a lot of predefined rules to make your life easier. But if you want something more complex, you can create custom rules with C# classes and it works fine. The AI in my game is implemented using only the preset rules. You can start out using the preset rules and when it becomes too complex to manage, you can convert your rules into C# code to make it easier. (durnurd in this forum could help you achieve that, you could ask him, it seems quite easy).
I hope it answers your questions. If you have other questions, don't hesitate to ask! :)
-
Thank-you sir! That's the best news I've heard all day!
I've been comparing this to Novashell, today. Since I'm fairly handy with C++ (not afraid to code) I figured this would be the best fit for us. Just have to get into c#, which is no big. What about a GUI, can you summon common windows dialogs (to open a file, etc), ...or even use the native GUI elements (esp. in full screen)? Thanks for the XML tip, I try to stay away from XML as much as I can, but it gives me hope!
Thanks!
-
My pleasure! :)
Absolutely possible to use common windows GUI. As I said, when you generate the project, everything is converted in C# classes. It is compiled in .Net framework, so anything available in the .NET framework can be used. The basic project has 3 windows forms. One for the game, one for customizing controls and one for the "about" information on your program. If you want to create new forms or dialogs, you can create them and add them into your project just like any other C# classes. If you want to extend the forms already provided with the project, it's very easy too! Most (if not all) of the C# classes that make the kit are partial classes. So you can extend the code without even touching the source files, which makes it easy to upgrade to the next versions of SGDK2: you don't need to modify your code.
If you plan to run the game in fullscreen (without windows form menu and such), you can still summun GUI elements using custom functions. You won't find native rules to do so, but if you are experienced in C++, you will find it very easy to do so in C#.
For the XML part, the project files can become quite big. If you want a easier time managing the XML project files, I recommend you give a look to XML Notepad 2007. It's from Microsoft, it's free, uses a graphic interface to manage the XML and very easy to use. Here's the link to download it:
http://www.microsoft.com/downloads/details.aspx?familyid=72d6aa49-787d-4118-ba5f-4f30fe913628&displaylang=en (http://www.microsoft.com/downloads/details.aspx?familyid=72d6aa49-787d-4118-ba5f-4f30fe913628&displaylang=en)
Again, feel free to ask any other questions! :)
-
Thanks and of course I have more questions!
First, I gather the purpose of the 2.1 release was to use OpenGL and go mult-iplatform. The 2.1 release is kinda flaky on my machine - it doesn't run in full screen for me. So is the older 2.0 the same minus OpenGL and multi-platform? I don't wanna miss out on any cool enhancements, but 2.0 works better for me and windows only is OK with us.
Second, The GUI bit has me concerned in full screen. You never see windows native GUI in full screen, so I wonder if a small example exists or some documentation exists somewhere that I've missed. Since we're making a RPG, a GUI is of great use to me. So any help in this area is valuable stuff to me! If you were to say that it's just way simpler in windowed mode I'd believe you, and stay away from full screen! The only thing I've seen for using windows native GUI in full screen is here:
http://www.tecgraf.puc-rio.br/iup/
Thank you so much for all your help so far today. I feel much calmer now!
-
The 2.1 release was pretty important... here's the release notes.
Version 2.1 of Scrolling Game Development Kit includes many large updates and enhancements. The biggest is perhaps the switch to OpenGL, which has already demonstrated promise for being able to port the program the the games created with it to Linux (although more friendly support for this is yet to come). For more detail, refer to this complete list of notable updates and features:1. Upgrade to .NET 2.0: SGDK2 and the projects it generates now rely on .NET Framework version 2.0 and take advantage of new features added in this version. The SGDK2 Project itself requires Visual C# 2008 or .NET 3.0 to compile, but can run on any system that has .NET Framework 2.0. It also knows how to compile game projects on any system with .NET 2.0.2. OpenGL Framework: Version 2.0 was based on Managed DirectX. SGDK 2.1 uses the OpenTK library to access the OpenGL interface to video hardware, allowing SGDK2 and the projects created with it to potentially be more easily ported to other platforms. This also provided an apparent significant performance boost.3. Improved Message Functions: Displaying messages is now an integrated function in SGDK2 instead of a custom object. Furthermore, it now uses a tileset as the font instead of using the font support provided by the system. This means that you can use graphics and animated tiles/characters in your messages. A new message preview window is provided to assist in laying out the message at design time.4. Frame Rate Limit: If your game runs too fast on some systems, you can now use the LimitFrameRate function to control the speed.5. Cut Rules: It's now possible to cut a group of rules when using a rule editor. This can also be used to delete hierarchies of rules.6. Upgrade Documentation: This help file is now being built with Sandcastle and Sandcastle Help File Builder instead of NDOC because NDOC did not support .NET 2.0. As a result the build process is somewhat simplified and the content is better linked, among other improvements.7. Implement ability to convert rules to functions: Sprite Rules and Plan rules can now be converted to functions in custom code objects that can be called with a single rule and edited in the code editor.8. Implement ability to create sprites from templates using a pop-up menu from the new command (based on templates in the library, which you're free to expand and share by exporting your own templates).9. Implement ability to call sprite functions from plan rules.10. Upgrade to FMOD stable release 4.20.06.
-
Thanks Jam0864, I knew such a release note existed, I'd seen it before! Sorry, I couldn't locate it today. Just wish it would run full screen for me! Guess I'm left with another decision to make! I'm still waiting on a response about the native GUI in full screen. If that's not possible/easy enough, then I suppose that 2.1 - windowed - is the clear winner for me.
Anyone interested in joining our team? We've put together a crude website with a bit of what we're up to;
http://malachi-rpg.weebly.com/
You can ignore all the Playgound/PlayFirst stuff that is on the site. That's not going over too good for me! We're almost set on attempting
our game with SGDK. Were still on the hunt for a sprite artist. Still lots of programming to do I'm sure. ...Also, if anyone can say our goals are set
too high for this kit to handle, or predict any stones in our road, I'd like to hear about them!
-
hey man, if you need music or high end polished 2D animated sprites, im your guy {unless you already have one} For music, i need the FL studio patch... but if its in sgdk2, ive got it covered!
-
Yes sir, we really do need 2d sprites for our game! Music too, but, perhaps not if we get permission to use some of the music we have from the net. (got one so far!) We'd love to have some more help with level design too. Nobody in our team has an artists touch!
If we make it with SGDK, our chances of publishing with PlayFirst may go out the window! ...But we're still hopeful that someone will pick us up. Hope you read the "How we pay!" section of our site tho!
I still have to have a good sit down with this kit, 'cause I'm not so sure we can accomplish all of our goals with it.
So, as far as the game goes, we have the story, and we've settled on what we want, but as the programmer I'm still looking for a place
to happen (makin' stops along the way!)
If you're still interested, you can write me an email or add me to your msn at porkchop__2@hotmail.com From there it'd be nice to have you on msn messenger with the rest of the talent. The other guys can get you excited about what our story has to offer. They have some real meat and potatoes lined up!
Great to hear from you,
Thanks,
Lawrence.
-
Well, it would seem that I was a little overenthusiastic... :-[
I could not get to make a GUI dialog in a fullscreen mode with SGDK 2.0. :(
But I've got a GUI example in window mode if you want. I'm attaching the project file to this post. It's ugly, but it is not a bad example. Could be simplified a lot, but I've got little time to spend on this. Maybe Bluemonkmn or Durnurd could pull this off in fullscreen mode.
But, if fullscreen mode is not a necessity, I would definitely go with SGDK2.1 rather than SGDK2.0. :)
-
Hahha. Yeah, Vincent - I thought so! You don't see windows native GUI very often in full screen, it's usually custom and I've written a few. They take some time to do properly, and I was wondering if there was a get outta jail free card with this kit, but I highly doubt it.
Thank you so much for your example tho. Windowed mode could be alright I suppose.
Geesh, this a great community here!
-
Hey, Vincent, would your example be for the old 2.0? I get a bunch of:
c:\Documents and Settings\ME\Desktop\SGDK\Library\Projects\GUIdemo\LayerBase.cs(7,17) : error CS0234: The type or namespace name 'DirectX' does not exist in the namespace 'Microsoft' (are you missing an assembly reference?)
I see DirectX in there, and I know 2.1 is all OpenGL...
-
Yes, I made the example with 2.0 since you said you were not planning to use the 2.1 version.
If you want, I can translate it to 2.1 when I get the time. :)
-
Thanks for making it! Yeah, I've decided to go 2.1 windowed and use windows GUI. I was able to look around your example (with our running if of course) and It looked to me like you had some sort of custom job going on. I didn't see you using the windows gui anywhere (which is what I'm interested in) So if I'm right and you did a custom jobbie, then I think I have a rough idea of what you're up to. But if there is a call to some native windows gui in there I'd love to be able to see it work and learn from it. If I was to see a line or two of c# code that makes some kinda "hello world" box pop up and get an idea where I'd put this code I'd be well on my way I think. So, no, I don't want you to spend anymore of your time on it, if I can help it!
Thanks. I appreciate you taking time to help me!
P.S Man those .XML files are ugly! Any details/tips on that? I want 3 guys banging off levels all day, and I'm going to have to merge all this work in at the end of the day. So I'm gonna have to get good at it! I'm not lost completely! I can see the tags, I just don't know what would go where.
-
You could write a quick program to automatically copy XML data across to your main project if you're going to be doing it often.
-
About the demo, look into the source code folder of the project (if you open it with SGDK2.0) or in the last sourcecode tag of the project (if you open it with XML Notepad). The source code name is CustomFunctions.cs. Open it and you will see the code I wrote to open up the dialog.
Here is the C# code that you will find:
using System.Windows.Forms;
using System.ComponentModel;
namespace CustomObjects
{
public class CustomFunctions
{
[Description("Ask a question")]
public static int AskQuestion(string message, string title)
{
//
// Dialog box with two buttons: yes and no.
//
if(MessageBox.Show(message,
title,
MessageBoxButtons.YesNo) == DialogResult.Yes)
{
return 2;
}
else
{
return 1;
}
}
}
}
When you add a custom function like this, it appears in the list of preset rules.
About managing the XML, I would suggest to create the structure of the project first. Make your project template with nothing in it (create graphic sheets, Framesets, Tilesets, Maps and give them proper names but don't fill them with pictures, etc). When all the elements are created (or enough of them to get your 3 level designers started), give them a copy of the template and tell them with which elements you want them to work (just to make sure they won't work using the same parts so they don't overwrite one another work). When they are finished with a map, you open your template project and you simply replace your empty (but properly named) tags with their filled tags. This way, it's easier to make sure you don't duplicate / overwrite stuff, etc.
Writing a little program to replace tags in the project file, like Jam0864 suggested, is a good idea too. :)
-
Haha. thanks guys, you read my mind! I was thinking this XML pasting would be a good job for a computer program! (or for bluemonkmn to add in!)
I think I can see my way to the finish line now! Thank-you all!
-
Please keep us informed of your progress! :)
-
Yes, will do! I'm still deciding between this and Novashell. It's a tough decision! But the fact that this is compiled c# makes it hard to walk away from. But Novashell has much better map editing. Tough call. This is a great community here too.
Hope I can stay!
-
Hey, wow... miss one evening and I miss all the excitement! This all looks great, and I'm interested in participating to contribute to your project's success. Let's see if I can remember everything I want to respond to.
I can certainly think of nice ways to help manage/merge the project files. They are .NET DataSets serialized as XML files, and I agree that dealing with the DataSets in raw XML form is not as nice as dealing with your average XML file. But I could probably come up with a program (or maybe enhance SGDK 2.1) to help in migrating map content from one project file to another, and it should be relatively easy with the .NET DataSet Framework in there to help manage it. The trick is to remember what other content in the project the map content depends on. You can't have your level editors adding or editing graphics, frames or tiles and expect the merge to work out well. It gets a little more tricky when you get to sprites. I assume they will also be adding sprite instances to the maps and you want to be able to import those instances along with the map. I don't think that will be a big deal, as long as they're not editing or creating new sprite types. As long as your map editor folks stick to the map editor, I think you'll be safe. I'll try to remember to investigate possibilities for an easier transfer of map content between projects soon.
On the topic of OpenGL. I am using OpenTK to access OpenGL from managed code, which is another open source project currently in development. If you find problems with it (full screen issues or GUI issues) I suggest you discuss it in the OpenTK forums (http://www.opentk.com/forum) to see if you can help get your/our issues with OpenTK resolved in SGDK 2.1. You can use the project files generated by SGDK 2.1 (since they are general-purpose Visual Studio Solutions) as sample code to demonstrate the problems you are having to others and see if they have suggestions. If you turn up anything interesting that could be improved in the SGDK 2.1 framework, I'd like to fix it.
-
What features from NovaShell would you like to see in SGDK 2.1? Do you think it'd be possible to make SGDK 2.1 or some utility capable of importing NovaShell maps into SGDK 2.1? (I haven't seen NovaShell myself.)
-
Humm, Importing Nova's maps'd be a slight tower of Babel in my estimation. Because one of my favorite features of it is it's "tile free" - "cut and paste" entire buildings and other map objects straight in. It's very clever and has to be seen to be believed/understood properly. Here's a link to it:
http://www.rtsoft.com/novashell/
Check up on it! If you'd like to discuss converting it's maps I'd be all ears. Also I like that it's using Box2D physics, they have some cool little demos packed in with it. But, it's all Lua script (unless you wanna try to mod and recompile his engine source code), which worries me 'cause I have battle scenes to write with custom synthetic intelligence. I'm hoping to be able to hack my way down into the swamps of your kit and get some fine grain control over game objects. I feel better hacking in real c# code than lua script! This may mean you'll see me on here begging for help often!!!
-
Seth Robinson Eh? Funny that that name rang a bell with me. He created Legend of the Red Dragon -- I used to play that in the old BBS days. I clicked on his name and confirmed it, he was the same guy. Looks like he does a lot of stuff that interests me. But his map editor is probably a bit too far beyond SGDK2 to practically try to merge the functionality of the two in any way. If it's not tile based, there's not much of a starting point.
-
HA! Legend of the Red Dragon - I'd forgotten all about that game! I think I used to play that back on Renegade in my teens! Cool! Humm, yeah I went snooping in Seth's source code, and he's up to something quite strange. Think we best leave that one alone!
As far the GUI goes, I opened up the project solution in c# express, and there was everything I ever wanted to see. This is awesome! Man, you picked up so much free power by working with c# like this. You've chosen wisely! It seems I have many important c# vegetables to eat before I can have my RPG turkey...!
Fullscreen's working for me now!!! Must have been some poltergeist in my computer last night! :scared:
I've added you to MSN, to see if you'd like to take our discussion on Multi-map/Multi-user away from here so we don't put people to sleep!
Thanks!
-
There's so little else going on in SGDK 2.1 right now, I think people will hungrily "eat up" our discussion, so I think keeping it visible in the forums will probably be good. Once it becomes more project-specific, though, you may want to create a thread in the "Projects" forum to discuss your project.
-
I'd be happy to have knowledge of this discussion. :)
-
...Sorry now that I've had some sleep, I wake up and realize that there's not so much to discuss here! Haha. I can hack away until bluemonkmn has something better for us!?
Still looking for team mates! I'd love to come up with a great game to help push this kit. It's time more people got to know SGDK!!!
Thanks for all your help here. I've decided to stay!
-
Well, I created a project to migrate components of SGDK2 projects. It lets you copy objects (and automatically all child objects) from one SGDK2 file (or any .NET dataset exported as XML for that matter) to another assuming that the target file has the same parents objects already existing in it. It's small enough to attach to this message (including source code) so I'll just attach it here. To use it:
1) Open a source project (containing the map you want to import). Its data will appear on the left side
2) Open a target project (containing the old version of the map or only the framework of the same project). Its data will appear on the right side.
3) Select "Map" from the dropdown list assuming you want to copy a map from the source to the target.
4) Select the map in the right-hand list and press the delete key to delete the old map.
5) Select the map to copy in the left-hand list.
6) Press Ctrl-A or select "Append Source to Target List" from the edit menu to copy the updated map into the target project.
7) Select "Save Target" from the file menu to save the merged target file.
Keep in mind this project has been only very lightly tested. If you use this program, you should probably keep backups of both files and perform some further testing to see that it performs as you need it to for your circumstances before relying on it.
-
I thought I'd put out my two cents real quick. I clicked on the NovaShell website and saw some of the images from the Lost Garden website (found here (http://lostgarden.com/2007/12/how-to-bootstrap-your-indie-art-needs.html)). Incidentally, I happened to have seen that same graphic set and done the same thing in SGDK2, which you can see here (http://gamedev.enigmadream.com/index.php?topic=1079).
-
TheLaw, are you still around -- still looking into SGDK2?
-
OK i havent been here for decades, someonev411 me, sorry law for not being here
-
LOL Pizzaman. No big - I haven't been around as much either!
Yeah, bluemonkmn, I still have SGDK2 on my computer, but my current project has evolved into something rather ...demanding (and 3D!)! So, while I still talk highly of SGDK and do plan to still write a game with it, this project is being developed with a commercial 3D IDE. (
...If anyone would be willing to donate some 3D modeling/animating talent, I'd sure appreciate it! (I suck!)
Thanks,
Lawrence
-
Ever heard of a freeware program called 'Anim8or'? It does 3D modeling, animation, has a large community, and its easy to use. You might be able to make something good with it. Or maybe find someone there that would be interested in your project.
Can you tell us anything about the game you're making? Or is it still too early to say?
-
Yeah, I had a go at Anim8or... Thing is I'm the only programmer on the team, and I've got too darn much work to do to spend time learning about 3D modeling and animating. (plus all the training in the world won't change the fact that I don't enjoy it and suck badly at it!!!)
Briefly:
Our game is a 2D RPG game. The game world will be navigated via the traditional overhead view. Then for fights, caves and towns, we're switching to side view and running a live action battle system. We have a great writer on board who has a giant awesome story to enjoy. It was because of the view switching that the decision was made to build the game with a 3D engine. This way we can model our characters once and change views all we want. As for the leveling up system, we're stealing one from the pages of Elder Scrolls, where everything you can do is governed by a skill. So, if you wanna be able to jump higher, you just need to practice by jumping around everywhere you go, and you'll get better in time. We do have all the details fleshed out and I've documented them and made a to-do list as well, so we're good to go!
Thanks, Rubix Cube, I'll head on over there and bug those Anim8or guys for some help! I'm sorry to bluemonkmn and everyone here for being off topic and needy here. And like I said, I'm not ditching or dissing SGDK, in fact I'm very fond of it, just it's not well suited for this particular project (ie the view changes).