Monday, October 7, 2013

Our Games

Don't forget to try some of our FREE games.

They are currently available only on Google Play. But soon you will have them on your IOS device :)


"Some time ago an old professor travelled around the world searching for the most amazing enigmas. He solved and wrote all of them in an old book: the Book of Enigmas. But, we don’t know how, he lost his book. And now, you found it! Are you ready to open it and try to solve all his enigmas?"


"Doodle Reverse Free is a puzzle game with a single logic: just reverse the board and reproduce the given pattern. Simple, isn't it? I don't think so. Doodle Reverse Free is incredibly fun and addictive. Don't get angry if you fail at first sight. Just run for it an try again! Soon you will master it.
Check it out and exercise your brain!"

"Combine the elements of the 3 sides of the board and reproduce the given figure. Clear the board and keep playing to beat your friends records. Can you beat us? And your friends? Beat them and make them angry. Just download it and begin to practice!"


"Everybody likes to pop things. So, join us and come pop as many bubbles as you can. :)
But be careful!!! Evil bubbles are all around the place!"

There are more games waiting for you... what are you waiting for?

And don't forget to visit and like our facebook page to keep updated with new releases and tutorials.

https://www.facebook.com/balofogames

Have fun!

Friday, October 4, 2013

Cocos2d-x: simple button effect

One of the great things about cocos2d-x is the easy way to create and animate objects.

Here is a simple example of:

1) create a button
2) create a feedback effect when the button is pressed (manualy) and call an action when the feedback is over

1) create a button

Add these to your scene .h.
virtual void  onMenuItemSelected( CCObject* item );
CCMenuItemSprite* createMenuButton( const char* img );

CCMenuItemSprite*   btEnter;

void actionEnter();
Now implement the funtions in your .cpp. The following function helps a lot when you need to create a lot of buttons...
CCMenuItemSprite* YourScene::createMenuButton( const char* img ) {

 CCSprite* spr = CCSprite::create( img );
 if( ! spr ) {
  return NULL;
 }

 CCMenuItemSprite* item = CCMenuItemSprite::create( spr,
                   NULL, NULL, this,
                   menu_selector( YourScene::onMenuItemSelected ) );

 return item;
}
... and instantiate your button on the init of your scene:
btEnter = CCSprite::create( "btEnter.png" );
2) create a feedback effect when the button is pressed and call an action when the feedback is over

This is the feedback for all the buttons. When pressed, the btEnter will run a scale animation and than call the function actionEnter.
void YourScene::onMenuItemSelected( CCObject* item ) {

    if( item == btEnter ){
        btEnter->runAction(
                CCSequence::create(
                        CCScaleTo::create( 0.1f, 1.2f ),
                        CCScaleTo::create( 0.1f, 1.0f ),
                        CCCallFunc::create( this, 
                      callfunc_selector( YourScene::actionEnter ) ),
                        NULL ) );
    }
}
Implement the actionEnter() with some action for this button.

Run your app and now you have a button with a simple feedback effect and some specific action!

That was simple but gold! :)

See ya...
Keep playing, keep touching!

New games coming soon!

Hello folks!

Long time we don't write here.

We have been so busy but great news are coming.

Soon we will be releasing some games (old Balofo games) on IOS and maybe Windows phone too!

Hmmmm, but I guess this is not enough for us.

We have 2 new games almost ready to be published!!! Yeap... 2!!!

We don't know when they will be live, but we are working hard for it! (game 1: 90% done; game 2: 70% done)

And we are preparing some tutorials and tips for programmers, artists or game lovers.

That's all for now.

Don't forget to check it out our games here!

Keep playing, keep touching!

Sunday, September 9, 2012

The Hangman

 
Do you have a great vocabulary?
Are you sure?
Do you want to test it?
This is the perfect game for you! The Hangman, the classic game, but with a lot of categories, thousands of words and some new features.





- over 1700 words... and more coming!
- lot of animations that makes your game more fun and cool
- lot of challenges... are you good enough for them?

Download it here:
https://play.google.com/store/apps/details?id=balofo.game.hangman

Sunday, July 8, 2012



Do you like to watch movies or go to the cinema?

Now you can test your memory and try to guess the name of the movies.

"What's the Movie?" is so easy to play. We will show you a movie and you have some seconds to guess it. Easy, isn't it?

Each correct answer gives you some points. Earn points and level up!

Can you have a higher level than your friends? Challenge them to beat your current level!


- 500 movies... and more coming!
- everybody can play it...young or old people
- share your current level and points with your friends
- warning: incredibly addictive and fun!

Download it here:


Or here:
Market link - https://play.google.com/store/apps/details?id=balofo.game.movie
Developer site - http://www.balofogames.com.br

... check it out, enjoy it and have fun!

Thursday, May 3, 2012

Combinations 1.0


Combinations is a simple puzzle game but so challenging. Combine the elements of the 3 sides of the board and reproduce the given figure. Clear the board and keep playing to beat your friends records.

Can you beat us? And your friends? Just download it and begin to practice!

Combinations is incredibly fun and addictive. Check it out and challenge your friends!


- 6 figure packs... and more coming!
- Facebook and Heyzap support!
- lot of achievements and hightscore supported via Scoreloop (you can find it in th bottom-left of main menu)
- warning: incredibly addictive and fun!

Download it here:

Or here:
Market link - https://market.android.com/details?id=balofo.game.combinations
Developer site - http://www.balofogames.com.br

... check it out, enjoy it and have fun!

Wednesday, March 21, 2012

Doodle Reverse Free update 1.7

New update 1.7:
- better interface
- +100 levels very easy
- ALL puzzles for FREE!
- Scoreloop support
- minor bugfixes

Download it here:
 Or here:
https://market.android.com/details?id=balofo.game.doodlereverse_free

Enjoy it and have fun!!!