Search found 303 matches

by superLED
Sun Feb 09, 2014 5:44 pm
Forum: Game Development
Topic: BrainCollect (Free Android game)
Replies: 10
Views: 5923

Re: BrainCollect (Free Android game)

Congratulations on the release :)! I wish I could give it a spin but awhile ago I made the (bad) choice to get an apple phone and over the years it has proven to be quite a resilient fucker. Thanks a lot! Really appreciate it. I've decided to rewrite the game with AndEngine. I believe this is the a...
by superLED
Wed Feb 05, 2014 9:51 am
Forum: Game Development
Topic: BrainCollect (Free Android game)
Replies: 10
Views: 5923

Re: BrainCollect (Free Android game)

Thanks a lot for testing out the game! I've made an update, and tried to tweak around with some variables. I know the collision boxes may be a little too big, but I think the game should look somewhat OK now (text placement is still a bit off). Here's what the two scenes look like on my Nexus 5 (192...
by superLED
Tue Feb 04, 2014 5:49 pm
Forum: Programming Discussion
Topic: [Solved]My Android app crashes at exit (and screen rotation)
Replies: 3
Views: 2899

Re: [Solved]My Android app crashes at exit (and screen rotat

0x0000000 wrote:Good to hear you solved it!

Looking forward to this game of yours.
Send me a link so I can check it out, thanks!
Check out This post to download, and read further about this project of mine :D
I would be really grateful if you'd give it a try ^^
by superLED
Tue Feb 04, 2014 5:47 pm
Forum: Game Development
Topic: BrainCollect (Free Android game)
Replies: 10
Views: 5923

BrainCollect (Free Android game)

Hello guys! I have just released my first game for the Android platform. It's called BrainCollect, and you can find it here: BrainCollect . Or by searching for "BrainCollect", and it will be the only result (in my experience). Logo: (Click to go to the Google Play store) http://www.nechrol...
by superLED
Sun Feb 02, 2014 6:16 pm
Forum: Programming Discussion
Topic: [Solved]My Android app crashes at exit (and screen rotation)
Replies: 3
Views: 2899

Re: My Android app crashes at exit (and screen rotation)

I posted the same question at stackoverflow.com, and got an answer pretty quick. Here's the answer that solved my problem: Look what you need when you close the Activity you need to stop your thread from my code implemented before see it : GameView gameView ; @Override protected void onCreate(Bundle...
by superLED
Sun Feb 02, 2014 4:53 pm
Forum: Programming Discussion
Topic: [Solved]My Android app crashes at exit (and screen rotation)
Replies: 3
Views: 2899

[Solved]My Android app crashes at exit (and screen rotation)

Hi there! I've struggled with this for some months now. I've just been ignoring it, because it hasn't been to much of a problem to me, but now I'm ready for release, and would like to fix it up. The problem is that when I'm in the game, and click the Home button, the gameLoop thread (I guess) fucks ...
by superLED
Thu Dec 26, 2013 5:07 pm
Forum: Programming Discussion
Topic: Pointers, seriously.
Replies: 12
Views: 5993

Re: Pointers, seriously.

An easy example where pointers can be neat to have: void handleCollision(Rect *a) { Rect newPos; // do collision calculation stuff... a->x = newPos->x; a->y = newPos->y; } Now you can alter the variables itself, instead of having the function return the "newPos" struct/class and assign you...
by superLED
Mon Dec 16, 2013 5:35 pm
Forum: Programming Discussion
Topic: Start with Java? [SOLVED]
Replies: 20
Views: 7848

Re: Start with Java?

"Can somebody give me some advice?" "Learn LUA" "No. I will learn C++" Anyway, I would too check out LUA first. You can jump right into game development with LUA using "LOVE" ( link ) It is really easy to use. If you jump right into C++, I promise you that it ...
by superLED
Sun Dec 15, 2013 3:43 pm
Forum: General Gaming
Topic: Post every time you beat a game.
Replies: 629
Views: 854294

Re: Post every time you beat a game.

I just beat the Angry Video Game Nerd game. Took me about 2.5 hours.
Was a fun game. I'd recommend it.
by superLED
Sun Oct 06, 2013 10:53 am
Forum: Game Development
Topic: Project Prototype - Requesting Feedback
Replies: 4
Views: 3618

Re: Project Prototype - Requesting Feedback

I like the concept. It was a fun game :) Played through all of the levels, and thought I should give you some tips on what you could do to improve the game. (I'm just trying to help, not nag on your game. I like the game, and would like to see you make it even better ^^) - It is too slow and easy. W...
by superLED
Tue Sep 24, 2013 5:30 pm
Forum: Programming Discussion
Topic: SDL Event Shenanigans
Replies: 15
Views: 8397

Re: SDL Event Shenanigans

You could either share your whole code so people could look at it and test out different solutions,
or maybe share the executable so we could see if it has something to do with your computer.
by superLED
Fri Sep 20, 2013 6:31 pm
Forum: General/Off-Topic
Topic: Where did it all begin for you?
Replies: 45
Views: 23585

Re: Where did it all begin for you?

For a long time I always wondered about how games was made, and if it would be possible for me to make something really simple on my own. It was back when Game Maker was young, and I got my hands on the free version (and cracked it + got virus), and I used hours just to understand the most basic thi...
by superLED
Mon Jul 08, 2013 7:36 pm
Forum: Programming Discussion
Topic: To use GL or not to use GL ( and which GL to use )
Replies: 4
Views: 3439

Re: To use GL or not to use GL ( and which GL to use )

I would go with Option 3, if you want to make the best game you can make. Then you don't need to focus on this problem and rather focus on the game itself.
by superLED
Sun Apr 07, 2013 5:52 pm
Forum: General/Off-Topic
Topic: The latest in advertising (Hulu)
Replies: 5
Views: 2628

Re: The latest in advertising (Hulu)

Does it work if it says "Advertisement 2 of 1. Your video will resume shortly"?
by superLED
Sat Mar 09, 2013 7:45 pm
Forum: Programming Discussion
Topic: Server Side Practice
Replies: 20
Views: 6439

Re: Server Side Practice

Where I work, we use XAMPP (Windows) and LAMPP (Linux) all the time in early development. I do it from home as well, while working on personal projects. I have never ever been affected by outsiders. If you are dumb and port-forward a port (so your can access your localhost from elsewhere) &&...