Me and My Shadow is looking for help. Especially art.

Me and My Shadow is looking for help. Especially art.

Postby gordebak » 03 Feb 2011, 22:11

Me and My Shadow is a GPLv3 licensed 2d puzzle/platform game, originally developed by Luka Horvat as a prototype. He gave me permission to gpl the code and maintain the project. It's a puzzle/platform game.

We're two people on this project right now, and looking for C++ and SDL developers and/or artists to work with. I'm planning to develop the gameplay further, add new levels and puzzles.

Project website is here:
http://meandmyshadow.sourceforge.net

Here is a video by Luka showing the game in action:
http://www.youtube.com/watch?v=aSdyQE-aMVs

Short term goals:
* Organize and comment the code better.
* Use cmake.
* Replace the graphics with better and color ones.
* Player shouldn't be in record mode normally. Fix this. (This is fixed in svn)
Attachments
meandmyshadow.png
And this is a screenshot of the game on Ubuntu 10.10
Last edited by gordebak on 05 Feb 2011, 20:56, edited 4 times in total.
User avatar
gordebak
MnMS Moderator
 
Posts: 50
Joined: 28 Jan 2011, 04:52
Location: Ankara, Turkey

Re: Me and My Shadow is looking for help. Especially art.

Postby MCMic » 04 Feb 2011, 15:25

It is really ugly!
But the gameplay seems real fun! I never saw that kind of system. (And I just finished braid :-D )

I'll look into it further later, but it seems promising!
User avatar
MCMic
 
Posts: 723
Joined: 05 Jan 2010, 17:40

Re: Me and My Shadow is looking for help. Especially art.

Postby gordebak » 04 Feb 2011, 15:29

Yeah, that's what attracted me to the game. It's a rather unique gameplay.

You're right about it being ugly. I will do my best in a few days, if I can't find an artist to work with.
User avatar
gordebak
MnMS Moderator
 
Posts: 50
Joined: 28 Jan 2011, 04:52
Location: Ankara, Turkey

Re: Me and My Shadow is looking for help. Especially art.

Postby TheAncientGoat » 04 Feb 2011, 16:10

Hmm, I wouldn't call it ugly, the art style is rather unique :)
User avatar
TheAncientGoat
Community Moderator
 
Posts: 518
Joined: 27 Dec 2009, 19:06

Re: Me and My Shadow is looking for help. Especially art.

Postby MCMic » 04 Feb 2011, 16:50

gordebak {l Wrote}:Yeah, that's what attracted me to the game. It's a rather unique gameplay.

You're right about it being ugly. I will do my best in a few days, if I can't find an artist to work with.

I can help about the C++ code.
The code is weird organized :
-Source files are at the root of the repo, an src folder would be good
-I personnaly recommend cmake instead of a manual makefile
-All classes are in "Classes.h" instead of having Player.h, Shadow.h, Game.h… that is uncommon
-There are a lot of external global objects, that's not recommended either
-It's not well commented, that would help to understand what each part of the code does.

I tested the game, the game record when I don't move, and then make my shadow do it, so I wait a lot. I think a better gameplay would be : first press to start recording a move, second press to end the record and third to make the shadow do it.
Maybe second and third could be only on press. (it end the move and play it)
And after the last press, the player is in a "no record" mode where he can move without recording it. (which correspond to move and then double tap in the actual state)
User avatar
MCMic
 
Posts: 723
Joined: 05 Jan 2010, 17:40

Re: Me and My Shadow is looking for help. Especially art.

Postby gordebak » 04 Feb 2011, 16:58

-Source files are at the root of the repo, an src folder would be good
-I personnaly recommend cmake instead of a manual makefile
-All classes are in "Classes.h" instead of having Player.h, Shadow.h, Game.h… that is uncommon
-There are a lot of external global objects, that's not recommended either
-It's not well commented, that would help to understand what each part of the code does.


Yeah, I didn't write the code. It was a prototype. I will organize it a bit. Thanks for the suggestions.

I tested the game, the game record when I don't move, and then make my shadow do it, so I wait a lot. I think a better gameplay would be : first press to start recording a move, second press to end the record and third to make the shadow do it.
Maybe second and third could be only on press. (it end the move and play it)
And after the last press, the player is in a "no record" mode where he can move without recording it. (which correspond to move and then double tap in the actual state)


Yeah, I noticed that. I'm thinking about it also. Normally player shouldn't be in record mode. I agree.
User avatar
gordebak
MnMS Moderator
 
Posts: 50
Joined: 28 Jan 2011, 04:52
Location: Ankara, Turkey

Re: Me and My Shadow is looking for help. Especially art.

Postby Edward_Lii » 04 Feb 2011, 17:16

Hello all,

MCMic {l Wrote}:-Source files are at the root of the repo, an src folder would be good

I'm planning to move the files inside a src folder, but this would require a change in the Makefile.
Since I'm new to C/C++ programming what should be changed.

Here's the current makefile:
{l Code}: {l Select All Code}
CC=g++

all: meandmyshadow

meandmyshadow:
   $(CC) -o meandmyshadow Levels.cpp Shadow.cpp Globals.cpp Functions.cpp GameObjects.cpp Block.cpp Game.cpp Main.cpp Player.cpp StartObjects.cpp Title_Menu.cpp Objects.cpp Timer.cpp LevelSelect.cpp -lSDL_image -lSDL_mixer -lSDL_ttf -lSDL

clean:
   rm -rf *o

Adding src/*.cpp works but I think there should be a different way of doing this.

Thanks in advance! ;)
From,
Edward_Lii
User avatar
Edward_Lii
MnMS Moderator
 
Posts: 777
Joined: 20 Dec 2010, 16:46

Re: Me and My Shadow is looking for help. Especially art.

Postby MCMic » 04 Feb 2011, 19:03

Edward_Lii {l Wrote}:Hello all,

MCMic {l Wrote}:-Source files are at the root of the repo, an src folder would be good

I'm planning to move the files inside a src folder, but this would require a change in the Makefile.
Since I'm new to C/C++ programming what should be changed.

Here's the current makefile:
{l Code}: {l Select All Code}
CC=g++

all: meandmyshadow

meandmyshadow:
   $(CC) -o meandmyshadow Levels.cpp Shadow.cpp Globals.cpp Functions.cpp GameObjects.cpp Block.cpp Game.cpp Main.cpp Player.cpp StartObjects.cpp Title_Menu.cpp Objects.cpp Timer.cpp LevelSelect.cpp -lSDL_image -lSDL_mixer -lSDL_ttf -lSDL

clean:
   rm -rf *o

Adding src/*.cpp works but I think there should be a different way of doing this.

Thanks in advance! ;)

You have to add src/ before every filename.
But you should use cmake so you don't have to do stuff like these :P
User avatar
MCMic
 
Posts: 723
Joined: 05 Jan 2010, 17:40

We're on track

Postby gordebak » 05 Feb 2011, 23:57

Yesterday I was a bit busy to work on the game. But Edward fixed some annoying things in the game. All changes can be checked out from the svn. Good job Edward.

Now the player isn't in record mode normally.

We have a MediaWiki on the project website now. You can edit the wiki if you want. And a little forum. I don't know if it will going to work.

All I want before v0.2 is changing the graphics and sounds to make it look more like a fun game. Like it already is.
User avatar
gordebak
MnMS Moderator
 
Posts: 50
Joined: 28 Jan 2011, 04:52
Location: Ankara, Turkey

Re: Me and My Shadow is looking for help. Especially art.

Postby charlie » 06 Feb 2011, 01:44

You can have a forum here if you'd prefer.
Free Gamer - it's the dogz
Vexi - web UI platform
User avatar
charlie
Global Moderator
 
Posts: 2131
Joined: 02 Dec 2009, 11:56
Location: Manchester, UK

Re: Me and My Shadow is looking for help. Especially art.

Postby gordebak » 06 Feb 2011, 01:49

Thank you, charlie.

I don't know if a forum is necessary actually. I thought it for bug reporting and such, but the project is very young yet, and there aren't much users.

Do you think it's a good idea to have a forum?

Edit: To avoid misunderstanding, let me ask like this: Do you recommend to have a forum?
User avatar
gordebak
MnMS Moderator
 
Posts: 50
Joined: 28 Jan 2011, 04:52
Location: Ankara, Turkey

Re: Me and My Shadow is looking for help. Especially art.

Postby KroArtem » 06 Feb 2011, 12:33

To my mind, it is not a good idea to have your _own_ forum, because, as you have already said, the project is very young yet, and there aren't much users.
So if I were you, I'd accept charlie's proposal (was it a proposal? :)) and have your forum here.
KroArtem
 
Posts: 375
Joined: 26 Aug 2010, 19:04

Re: Me and My Shadow is looking for help. Especially art.

Postby gordebak » 06 Feb 2011, 16:44

Thanks.

So charlie, if it was a proposal, can we have a forum then? :D
User avatar
gordebak
MnMS Moderator
 
Posts: 50
Joined: 28 Jan 2011, 04:52
Location: Ankara, Turkey

Re: Me and My Shadow is looking for help. Especially art.

Postby charlie » 07 Feb 2011, 02:04

Sure! I'll set it up tomorrow.
Free Gamer - it's the dogz
Vexi - web UI platform
User avatar
charlie
Global Moderator
 
Posts: 2131
Joined: 02 Dec 2009, 11:56
Location: Manchester, UK

Re: Me and My Shadow is looking for help. Especially art.

Postby charlie » 07 Feb 2011, 02:26

OK I did it straight away instead. :D
Free Gamer - it's the dogz
Vexi - web UI platform
User avatar
charlie
Global Moderator
 
Posts: 2131
Joined: 02 Dec 2009, 11:56
Location: Manchester, UK

Re: Me and My Shadow is looking for help. Especially art.

Postby gordebak » 07 Feb 2011, 04:28

Thank you.
User avatar
gordebak
MnMS Moderator
 
Posts: 50
Joined: 28 Jan 2011, 04:52
Location: Ankara, Turkey

Who is online

Users browsing this forum: No registered users and 1 guest