Re: Potential tutorial series

You're right. I did some vehicle physics on a previous project, so it's something I would be interested in doing at some point, but for now, you're right, it's too specific for the beginning of my tutorial series tongue

Now you've mentioned it, I think I can maybe start working on something quite simple, but hopefully quite interesting. Starting with "stage 2" I think I will begin working on a sort of FPS game thing. How does firing spherical projectiles sound to you? Can build up a physics world with barrels to shoot them against. Later on we can maybe specify some kind of world collision where we can leave decals... There shouldn't be _that_ much to do, but enough variety for a pretty decent tutorial stage.

EDIT: Maratis Paintball! Stage 3 can be to add vehicle sections wink

Last edited by Nistur (2012-02-12 14:01:40)

Re: Potential tutorial series

Cool! That would be perfect, thank you very much. smile

Re: Potential tutorial series

In unity engine, they have a FPS tutorial for beginners. Which shows everything to make a FPS game with unity. At least provides the starting game framework. Why not make a FPS game like that. Just a hall/godown like room with 2/3 enemy and sentry guns etc. It will cover everything and give Maratis user a framework. And ofcourse it will help me too smile.

Thanks for the tutorial.

Regards.

Re: Potential tutorial series

Oof, if you're going to want enemies, it will take a little longer. I should be able to get things shooting roughly in your direction, but I haven't got a clue yet how to do pathfinding. I've used recast a little before, but that would require a considerable amount more work. Hmmm.

I think one of the main issues here is that Unity has a load of premade behaviours, whereas Maratis hasn't. The amount of enemies is pretty trivial really, most of the time, once you have 1, you can duplicate pretty easily. I think the best thing for "stage 2" would be to get something playable but not aim too high. Then further tutorial stages can focus on things like AI or vehicles, depending on what is requested.

It's a bit of a shame that I can't make a very simple FPS example, but hopefully we can get some more behaviours added to Maratis to make it easier.

Last edited by Nistur (2012-02-12 16:53:20)

Re: Potential tutorial series

I just had a thought, I haven't uploaded the tutorial project anywhere yet, but I have got a private git repository for it and, as of Tutorial 5, I've started branching each tutorial when I've finished it. I've put it up on Github, as I think it's probably the easiest way for people to see it, and maybe even contribute at a later date!
https://github.com/nistur/MaratisTutorial

Last edited by Nistur (2012-02-12 21:25:26)

Re: Potential tutorial series

Woo, another tutorial done. No new functionality this time, but the next few won't do a lot for functionality, just some helper framework stuff. But it should make work a loooooot easier in a bit. Just need to get some things set up though. Anyway, here it is.

Re: Potential tutorial series

A simple input manager wrapper is now added to the tutorial series. Will hopefully begin the game soon tongue

Re: Potential tutorial series

Cool, I'm really waiting to see a little game moving smile

Re: Potential tutorial series

Unfortunately, I've been quite busy recently and haven't been able to push forward with this, but I should be able to get back on top of it soon. If anyone wants to donate a gun model for upcoming tutorials, I would be very thankful, otherwise I'll scour for something free and suitable.

Re: Potential tutorial series

Nistur wrote:

If anyone wants to donate a gun model for upcoming tutorials, I would be very thankful

I don't have a gun model but I have a great linksmile

Re: Potential tutorial series

Thanks dodosoft. That's great smile I'm sure I can find something there I can throw in smile I'll quickly spec out stage 2 and see what people think about that. I think there's also no decision that has to be made about which gun to use.

One quick question, what do people think about the actual movement. We have access to Bullet in Maratis, it's probably the quickest and easiest way to get something reasonable moving around a 3D world, but has the problem that things like going up stairs will cause the player to slow down. I've fiddled with some numbers already and found it awkward to do in a nice and easy way. Another option is to ignore physics and move around the world manually using a 3D mesh, possibly an invisible lower poly one. I believe it will get better results quicker, but also be more prone to miscalculations... gah. Well, if someone has thoughts, please shout. I'll look into it a bit more and see what I can do quickly otherwise.

Re: Potential tutorial series

Hi,
something simple for stairs is to put a flat plane on top of the stairs and set it invisible (I did it before it works pretty ok).

Re: Potential tutorial series

I had a go with something similar already and couldn't find numbers that would make it feel smooth uphill which didn't cause you to float down too slowly if you ran off the top. I'll have another fiddle and see what I can get working smile Thanks

Re: Potential tutorial series

I've been far busier than I anticipated. I finally managed to spec out a little of the next stage, I'd like to have some feedback on the plans I have so far, especially from anyone with any experience making an FPS in Maratis as to what features I'm likely to need. To be honest, much as my name is in the credits of an FPS game I wouldn't presume to know what might be needed in setting one up from scratch in Maratis.

I have, however, been trying to acquire an environment from my friend Umar, which would probably be licensed CC BY-NC-ND. So at least the game should look pretty tongue

Re: Potential tutorial series

I've, unfortunately, been pretty busy recently so I haven't had time to work on the tutorial series so much. I have, however, I think, come up with a full plan of the next stage of the series. Let me know what you think.

Still to do in Stage 1:
- Tutorial 8 - Game framework 4 - Interaction
    Some basic inter-behaviour framework stuff
- Tutorial 9 - Game framework 5 - Tidying up
    Branching the project and setting up for our game
- Tutorial 10 - Overview and planning
    Some scribbles about what we're planning on doing

Up and coming in Stage 2:
- Tutorial 11 - Revisiting our controller
    Making a simple player object which will listen to commands
- Tutorial 12 - Give me a place to stand
    Adding a world for us to explore and some physics-y stuff
- Tutorial 13 - Guns, guns, guns
    How we handle guns and shooting them
- Tutorial 14 - Pew pew. Bullets
    Making things fly around the world, possibly even visibly, depending how enthusiastic we get
- Tutorial 15 - Decals
    Bullet holes in the scenery. Nice.
- Tutorial 16 - Animations
    Setting up for reloading etc
- Tutorial 17 - Enemies are stupid
    A very basic AI. Don't expect much here apart from randomly walking around (maybe do an AI series later?)
- Tutorial 18 - Particles everywhere
    Fire. Smoke. Water. That kind of thing. They look pretty
- Tutorial 19 - Fun in the shade(r)
    I've been playing with post processing, so I may as well put some shader stuff up.
- Tutorial 20 - How gooey is a game?
    some GUI work, maybe a simple HUD, we'll see

There's really not a lot left in Stage 1, Stage 2, however, will get a lot more involved. I'm hoping to go into as much detail as possible when writing them, but at the same time, I don't have several weeks to write a particle system and tutorialise it. I think the plan for this is to use an existing system. With any luck, the plugin system will be up and running and I will write up a bit about integrating a particle system (possibly this one even though it's a bit old now) into a plugin, separate from the tutorial series, then use the tutorial to explain how to set up pretty looking particle systems. The same is true for the GUI stuff as I'm intending to integrate a GUI system into a plugin. Of course, if the plugin system isn't ready to go at this stage, I'll probably do the work in the game project, at the very least as a placeholder.

Anyway, what do people think? I should be able to scrape together some more time this week to hopefully finish off the last 3 tutorials in Stage 1 and start thinking about Stage 2. Are people finding this helpful?

Re: Potential tutorial series

Seems awesome. I personally can't try the tutorials (yet) so i can't give concrete feedback,
but i think step by step is pretty nice for tutorials cause there's no way to screw up while following them.
Anyway i think any infos/tutorials you write down will never be a waste, because many of these steps will be needed in many games genre.
The next steps of the tutorials seems very juicy, especially Decals, shaders and bullets steps, hope i can get my PC working back soon enough to try all these.

There's also one thing from your first post that was really interesting :
"- Save Data (Hmmm, this might be a good use for protobuf)"
And i'm suggesting :
- Pause game
- Replays

But well i'm speaking about things that are beyond my understanding >.>

Anyway, Thank you for all this smile
(And sorry for my noob english)

Re: Potential tutorial series

No worries. I'm actually planning on using the majority of the tutorial stuff for my own game project, even though it's not an FPS, so I'm trying to write most of it nice and generally wink

What I've been trying to do until now is give a solid idea as to the concepts I use when coding. For that I've been going pretty slowly. In order to cover the topics I have planned for the next stage, I'm going to have to change to either writing considerably more per tutorial, or go over the stuff at a greater speed, relying on the reader to understand techniques from earlier on. I'm not sure which I will choose yet, but yes, it should be a bit juicier tongue

I've been playing with the idea of the save system, but I've decided to drop it for now. The reason being that the game we're making will be incredibly minimal from a functionality point of view, there won't be much at all to save. There are arguments for both implementing a save system early and leaving it until later, I think I'd prefer, especially with the tutorial series, to leave it until there's something worthwhile saving.

Pausing can be (hopefully) done pretty quickly and easily. I can try and work it into the existing tutorial layout, maybe enlarge stage 2 to maybe 25 tutorials tongue Replays are another matter however as it requires keeping track of everything which happened  up until the point you want to play to. That means a whole load of extra information to store, the exact animations every entity was playing for a set period of time. It's definitely not something for this tutorial series at this stage.

Thanks for the feedback. I'll try to keep working on them this weekend, I've been trying to get a particle system plugin sorted though to let us all make nice effects smile Also wondering whether I should invest time in integrating it with bullet, or maybe putting it on GPU. Oh the possibilities. So much to do, so little time tongue

Re: Potential tutorial series

I've not yet finished writing up the next tutorial, but I've made a start. And I've done all the code (minus the comments) If anyone's interested, the code is up on Github and I've started writing the introduction.

Just some tidying up to do, then we're practically done with stage 1.

Apologies to all for this going so slowly.

Re: Potential tutorial series

Gah, it's taken me so long to get this one finished, and it was a very simple tutorial actually. Sorry again, it's finally online for people to see. I wouldn't expect anything very impressive or revolutionary, it's still just framework code, but we're getting to the end of that finally. I have 2 more tutorials to tie everything up, then we're onto making a game!

As always, look forward to any feedback. The sourcecode is all on Github as usual.

Last edited by Nistur (2012-04-01 21:05:13)

Re: Potential tutorial series

No code in this one, just an overview of how to go about tidying the code and making a more pleasant development environment, along with instructions of how to start a debugging session simply.
Tutorial 9 is up.

Re: Potential tutorial series

Can i ask a question i am just starting in c++ and maratis 3d and i started your tutorials
in tutorial #3 Creating the plugin , in  Tutorial plugin.cpp , in the start plugin i saw you adding "-&gt" after the pointers/object of MEngine and MBehaviorManager  can you pls explain  why and what  it is  ?
btw thanks for the tutorials

Last edited by Crucio777 (2012-11-02 18:22:25)

Re: Potential tutorial series

Hi, I'm sorry about the delay, I've been pretty busy.

The -> is the crappy web formatting. I thought I managed to fix it all, it's meant to be ->. It's replacing > with >. If you notice any of these, can you please let me know which tutorials it's on and I will fix it.

In other news, I've started working on this stuff again, so I might have another tutorial up soon. I think I'm going to leave the video tutorials for a bit though tongue

Re: Potential tutorial series

I'm trying to work with one of your tutorial:

http://nistur.com/projects/maratis-3d/t … atis-tut6/

I can't get your source compiled. I need messages for communicate to MyGame.cpp that an Entities with a particular behavior exists without looking each entity. May I have any tip?