Chaos Project

Game Development => Projects => Topic started by: G_G on November 19, 2010, 02:39:05 pm

Title: [C#] Project GreGoR
Post by: G_G on November 19, 2010, 02:39:05 pm
GreGoR PG Engine
Version: N/A



Info
Alright, I promised King Munkey we would at least attempt to make an RPG from scratch using XNA. Well due to my well first losing my laptop and my main computer breaking down, I haven't done anything to contribute to this project. And now that I do have a computer at home, its just a lack of internet and now I'm relying on school computers to put out info.

Well I've been working on the engine now for about a week. I have accomplished some nice features and I would like to share them with you along with a demo. However I cannot get a demo out yet, until I put it on my flash drive and bring it to school. (Will do so tomorrow) Anyways below is some basic features and info about the engine.


Features
Alright so I've been working on some key main features we'd need for a basic engine like this. I basically setup the project to go off of what RMXP does. The main file that gets processed Game1.cs acts as the "Main" script in RMXP. I think I came up with a nice genius way to make this as easy as possible.

Heres what I have now.



Basic Structure
Alright so my basic structure is quite simple actually. Maybe its not the "right" way to do it, but its making it a lot easier for me anyways. I've made it so easy to create windows and scenes it takes a matter of minutes just to recreate Scene_Title from RMXP.

So basically I have a class called "Scenes.Base"
This Base has every method any scene needs for updating, drawing, loading and unloading content.
Scenes.Base also has two important variables for scene changing.
Scenes.Base scene;
bool scene_change = false;

The main process checks to see if scene_change is true, if so, change the scene to the one thats defined within the scene itself. Basically Scenes.Base is structured like this.
Spoiler: ShowHide
class Scenes.Base : GameComponent
{
Scenes.Base scene;
bool scene_change = false;
ContentManager content;
public Main(Game game) // cant remember the real method name
{
   content = new ContentManager(game.Services, "Content");
}
public virtual void Update(GameTime gameTime)
{
}

public virtual void Draw(SpriteBatch spriteBatch)
{

}

public virtual void LoadContent()
{

}
}


I created an item template, so when I add a New Item I can click Scene.cs and it'll add all methods and stuff I need. Now in my "Main" script you could call it, which is the actual Game class itself, it acts basically as Main does. Its basically like this.
Spoiler: ShowHide
class Game1 : Game
{
Scenes.Base scene;
public override void Update(GameTime gameTime)
{
   if (scene.scene_change)
   {
    scene.UnloadContent();
    scene = scene.scene;
   }
   scene.Update(gameTime);
}
public override void Draw(GameTime gameTime)
{
   spriteBatch.Begin();
   scene.Draw(spriteBatch);
   spriteBatch.End();
}
}


Now any class that inherits Scenes.Base will be labeled as a Scenes.Base class. It may be inefficent maybe but its making it a lot easier on my part. So recreating the Title scene is quite simple too. However can't create that unless I have a Window base. Which I also have.


Window Structure
This is setup practically like Scenes.Base. The only difference is its Windows.Base now. And it has methods in the Draw method that actually creates the window. Now it doesn't use RMXP's windowskins. For now it just uses a simple window graphic and stretches it to the windows size. Later, we'll have our own custom window skin template.

So now you can also create windows using Windows.Base. For example here could be a simple window displaying "Hello World". However when creating a window, you'll need a second argument when calling the base.Main method. Also note I cannot exactly recall how the method looks, I'm just using Main as a place holder.
The second argument is the location and size. Basically when creating a new window in RGSS
super(x, y, width, height) except we're using a Rectangle class as the argument.
Spoiler: ShowHide
class Windows.Info : Windows.Base
{
SpriteFont font;
public Main(Game game, new Rectangle(0, 0, 128, 64))
{

}
public override void LoadContent()
{
   font = base.content.Load<SpriteFont>("spritefont");
   base.LoadContent();
}
public override void Update(GameTime gameTime)
{
   base.Update(gameTime);
}
public override void Draw(spriteBatch)
{
   base.Draw(spriteBatch);
   base.DrawText("Hello World", new Vector2(4, 4), Color.Black, font);
}
}


Now in an actual scene, we can call the window.


Scene Creation
Now we can actually create a test scene. Basically the scene will handle some input and draw the window.
Spoiler: ShowHide

class Scenes.Test : Scenes.Base
{
Windows.Info info;
KeyboardState input;
public Main(Game game) : base(game) // again just placeholder, don't recall actuall method setup
{
   info = new Windows.Info(game);
}
public override void Update(GameTime gameTime)
{
   info.Update(gameTime);
   base.Update(gameTime);
}
public void UpdateInput()
{
   if (input.IsKeyDown(Keys.Escape))
   {
    Game.Exit();
   }
   input = Keyboard.GetState();
}
public override void Draw(SpriteBatch spriteBatch)
{
   info.Draw(spriteBatch);
   base.Draw(spriteBatch);
}
}


    Now we run that and it'll draw the window that says "Hello World" and when we press Escape it'll close the game.


    Whats in the Demo
    So whats in the demo exactly? Well it consists of 3 different scenes.
    Scene_Map
    Scene_Test
    Scene_Title
    It contains 4 different windows
    Window_Text
    Window_MapControls
    Window_Test
    Window_Command[/li][/list]

    The scene title is basically replicated as the one from RMXP. It displays a nice background image for the title screen and its got a command window with 3 different options.
    "Tilemap"
    "Test"
    "Exit"

    The scene detects input as the actual one from RMXP and detects actual command window's index like in RMXP. It uses a case statement and under each index it'll do a process.

    The Tilemap option calls Scene_Map and Scene_Map calls the Tilemap class and draws out the map. Its also cool as well because I made a little program that converts RMXP maps into data for my engine. The Scene_Map containts Window_MapControls which basically all you can do in Scene_Map is scroll around the map. I finally got around to making my engine support maps larger than 20x15. And the fact that I have scrolling is a huge improvement compared to my last engine. You can press Escape to return to the Title.

    The Test option which calls Scene_Test contains 4 windows. Window_Test, Window_Text, and 2 Window_Commands. The command windows have the options to be active or not. If a command window is not active, the cursor will not be displayed. Here you can choose 1 of 4 options from the first window. Each option will change the text displayed in Window_Text. The fourth option will disable command window 1 and activated command window 2. command 2 has 4 options as well. 4th one will return to the title screen, the 3rd one will reactivate the first window.

    Thats whats basically in the demo. I think I've done a pretty good job at it, now all I have to do is get it to you guys.


    Demo
    Scenes Test (http://www.mediafire.com/?q1ws7qj7dyj1oqy) - This is a demo that shows the changing of scenes.
    Tilemap Demo (http://www.mediafire.com/?bdotcu3dxweu053) - This displays 5 different maps you can scroll around.
    Zombie Swarms Topic (http://forum.chaos-project.com/index.php/topic,7842.msg126628.html#new)

    Scenes Demo Video (http://www.youtube.com/watch?v=hO-_2WVHc8M)

    You need the Microsoft XNA 3.1 Redistributable in order to run the demo. So please download and install wto play the demo.
    XNA 3.1 Redist (http://www.microsoft.com/downloads/en/details.aspx?FamilyID=53867a2a-e249-4560-8011-98eb3e799ef2)


    Notes and Stuff

    I'll have the demo up soon. I'll get some screenshots and try and upload a video from somewhere. I can't go to youtube from my school so... and every proxy I found is blocked. Cya guys.
    Title: Re: [C#] GGP RPG Engine
    Post by: Magus on November 19, 2010, 02:56:01 pm
    I can't wait to try this. I'm really eager to compare it to rmxp. What battle system will you use as it's default? (hopefully its not like rmxp's) Maybe switch it up a little with sideview.  But it's the author's decision, not mine, so good luck with this. I'm pretty sure this thing will be epic :]
    Title: Re: [C#] GGP RPG Engine
    Post by: winkio on November 19, 2010, 06:13:39 pm
    So this is all code right now, there's no GUI yet, right?
    Title: Re: [C#] GGP RPG Engine
    Post by: Spaceman McConaughey on November 21, 2010, 07:15:52 pm
    Quote from: game_guy over the phoneIt is not a game maker, it is an engine I plan on using for a game.


    @winkio: game_guy wants to know what you mean.
    Title: Re: [C#] GGP RPG Engine
    Post by: winkio on November 21, 2010, 07:30:53 pm
    I'm asking (well, assuming actually) if the engine is just a code library (a DLL), or if there is also a visual editor for things such as maps, windows, etc.
    Title: Re: [C#] GGP RPG Engine
    Post by: G_G on November 23, 2010, 11:50:15 am
    its all code right now, not sure if I mentioned but its coded in xna anyways I have 3 demos up =D its not really a library its a full project, i plan on making a visual editor because I dont want to code the entire game data.

    Alright so 3 demos. Read about them in the first post.
    Title: Re: [C#] GGP RPG Engine
    Post by: winkio on November 23, 2010, 03:34:33 pm
    The scenes demo looks good, but the zombie demo thing didn't work.  I pressed enter to start a wave, but nothing happened.
    Title: Re: [C#] GGP RPG Engine
    Post by: G_G on November 25, 2010, 04:46:02 pm
    Yea I know about that. I thought I said I didn't finish that part quite yet. I've actually got a working demo of it. However its still glitchy as hell.

    Though I'm working on a nice collision system. See the zombies can go right through each other, I think I wanna make a nice bumping system. And plus once they go through each other you can't tell how many zombies are in one group or not. Plus once they collide with the player your health drains instantly in like 2-4 seconds.

    If you guys want to check out the wave system I'll put up an updated demo. I honestly thought that the wave generation was gonna be tricky. Not hard actually. Quite genius the way I pulled it off.

    Plus the game doesn't allow more then 15 zombies on screen at one time. So its kind of a nice feature once you get to higher waves that once you kill a zombie, another appears right away. I thought it was pretty cool anyways.

    Btw, I'm at my grandmas house for a few days so I'll be updating quite a bit up until sunday or monday.
    Title: Re: [C#] GGP RPG Engine
    Post by: winkio on November 25, 2010, 04:54:27 pm
    Oh, my bad, you did say it wasn't finished yet.  Well, keep us posted, I want to see how this turns out.
    Title: Re: [C#] GGP RPG Engine
    Post by: G_G on November 25, 2010, 06:27:35 pm
    Well I'm glad you're liking it, I actually have some I guess methods maybe or structures to show you to see if its structured well I guess. I dunno how to word it. But its just a couple of ideas about tile grabbing from tilesets, collision and any other structures I add.
    Title: Re: [C#] Project GreGoR
    Post by: G_G on November 28, 2010, 03:43:40 pm
    Legal double post.

    Alright so I've changed the name. I'm going to call it Project GreGoR or GreGoR or whatever. But its full name is GreGoR PG Engine which only the caps stand for something.
    Game re Guys o Role Playing Game Engine

    I'm also working on putting some videos up and hopefully some screenshots too. Another thing I'm also using my engine as a base to make a simple maze game which you navigate through. Find keys and get to the end basically. I'm planning the maze game to have only about 5 levels and again its just for showing off some of the engine.

    EDIT: Heres a video http://www.youtube.com/watch?v=hO-_2WVHc8M
    Title: Re: [C#] Project GreGoR
    Post by: ForeverZer0 on November 28, 2010, 04:21:43 pm
    Looking good.
    I see you implemented your sprite animator into it. That's a nice touch.
    Title: Re: [C#] Project GreGoR
    Post by: Blizzard on November 28, 2010, 04:28:00 pm
    Tilemap doesn't work for me and I can't start the Zombie Game because when I press ENTER like told, nothing happens. ._.
    Title: Re: [C#] Project GreGoR
    Post by: G_G on November 28, 2010, 04:39:58 pm
    I dont have that part released yet. Sorry it'll be up soon with its own project topic. If tilemap isn't working try the Scenes Test unless thats what you were referring to.

    Thanks F0 and sorry Blizz :3
    Title: Re: [C#] Project GreGoR
    Post by: Blizzard on November 28, 2010, 05:00:07 pm
    Don't sweat it. I just had some time to kill so I figured I could try it out. xD
    Title: Re: [C#] Project GreGoR
    Post by: Kett Shee on November 28, 2010, 05:21:44 pm
    I watched the video, looks like you're making good progress.

    As you know I can't play the demos, fucking outdated graphics cards.....
    Title: Re: [C#] Project GreGoR
    Post by: G_G on November 28, 2010, 05:46:19 pm
    I posted the topic for zombie swarms. Check it out guys.
    http://forum.chaos-project.com/index.php/topic,7842.msg126628.html#new

    Thanks for the support everyone :3 It really does help me. It makes me keep going. This is one project I don't want to abandon. So thanks guys. It means a lot.
    Title: Re: [C#] Project GreGoR
    Post by: G_G on December 08, 2010, 12:05:24 pm
    I dont have time to update the main post as of right now but I have a nice demo of my new tilemap engine. I merged mine and winkios methods together. Virtually I have setup my map structure to have any amount of layers and any width or height. But its not recommended to have these properties large.

    My tilemap engine also allows any size tileset with any tile width or height. This allows for nice pixel movement and check for collision. I'll have a demo up as soon as I can. I almost have player movement done completely where the screen follows the player.

    Thanks guys!
    Title: Re: [C#] Project GreGoR
    Post by: G_G on March 09, 2011, 10:31:35 pm
    Wooow! Major bumperino. I've altered my tilemap to be as simple as possible and as fast as possible. It now only draws 22x17 tiles. This allows 1 tile to border around the actual visual area which makes sure you can't see any blank spots. This also ensures speed!
    Title: Re: [C#] Project GreGoR
    Post by: Blizzard on March 10, 2011, 02:12:04 am
    Are you going to continue working on this actually? I mean, we have ARC now, for all our RPG Maker making needs. ._.
    Title: Re: [C#] Project GreGoR
    Post by: G_G on March 10, 2011, 08:30:07 am
    Of course I am. ARC is a creator and an RPG engine. This may just be an engine but I promised myself I'd finish it. I know its pointless (lol I said point?) but I feel compelled to work on it still. Don't worry though I won't let it get in the way of ARC. I promise, in fact I'll even sign a contract saying so.