Wednesday, September 4, 2013

Scrolling and Jumping... ish

The plan is I should have a git repository online tonight. I will post the link to that later.

But for now I made a quick run a scrolling the background and moving a little dude around the screen left and right with basic, basic jumping. The code is a mess though and it definitely doesn't do what I actually need it to yet but it's something.

//END OF LINE

Friday, August 30, 2013

Super Doctor Who Update 1

I got to work on it a little bit today. I don't have a link to the project yet because it's not quite up on any svn/git system yet... Hopefully it will be by early next week.

But I have decided to do my project in C# using XNA. I've used this before and I love it. Visual Studios is my favorite IDE. So I got the project started and I have a menu system set up. It just has a timed title screen that goes into what will be the menu which then goes into the "game screen" (it's just a placeholder image for now) and that one has a pause screen. I used these little things called enums.

   enum GameState
   {
      TitleScreen,
      MenuScreen,
      GameScreen,
      PauseScreen
   }

And then you can just use a simple switch case to differentiate in the Update and Draw methods. Pretty easy. I've started some designing of how I'm going to set up the game, I'll update on that when I have more to say.

//END OF LINE

Thursday, August 29, 2013

50th post

For my 50th post I'd thought I'd let everyone I'm still alive. And I know I always say this but I'm planning on posting more regularly... At least I'll put more effort into it.

So my last post I posted this picture:

I've finally decided to run with it. I really have nothing to lose but my valuable time that I seem to be wasting mostly on watching some really good TV shows and crochet projects.

I have a busy weekend ahead of me and I won't be able to do much. But my goal is to get a Menu system up and running by the end of next week. After that I'll start work on the core of the game and getting a level scrolling across and people/baddies moving around on it.

So a really tentative schedule:
Week 1: Menu System
Week 2: Basic Scrolling Level and Moving Dudes
Week 3: Physics such as jumping and moving around and falling
Week 4: Graphics and Music???
Week 5: Misc. Stuff

This will just start of being a single level game but I'm hoping that if I build it the right way it should be easy enough to continue on and add new levels and baddies and such. I'll try to remember to keep updating my problems and progress.

//END OF LINE

Tuesday, March 5, 2013

Full of Ideas.

I have a couple of ideas I've been throwing around but I haven't found one I'm enough in love with to actually start the project. The closest one is based off of this image:



Actually doing something with it is going to take some time and effort... both of which I'm lacking at the moment.

//END OF LINE

Saturday, January 19, 2013

Interesting Tutorial

I've been working through this tutorial here. We'll see how things go with it, if they go anywhere.
I'll update as soon as I have something more to show than the programs that have been installed!

//END OF LINE

Tuesday, January 15, 2013

I'm still breathing.

I just haven't found time to work on any exciting projects now that I have a full time job and have discovered the joys of British TV shows. Unfortunately, I've caught up on my Doctor Who and Sherlock and have to wait until April for anything new (curse you Moffat!!!). Hopefully I'll have some willpower and motivation to get something created and built to brag about in my small social circles.

//END OF LINE