Book Image

Cocos2d for iPhone 1 Game Development Cookbook

By : Nathan Burba
Book Image

Cocos2d for iPhone 1 Game Development Cookbook

By: Nathan Burba

Overview of this book

Cocos2d for iPhone is a robust but simple-to-use 2D game framework for iPhone. It is easy to use, fast, flexible, free, and Appstore approved. More than 2500 AppStore games already use it, including many best-seller games. Do you want to take your cocos2d game development skills to the next level and become more professional in cocos2d game design? Cocos2d for iPhone 1 Game Development Cookbook will help you reach that next level. You will find over 100 recipes here that explain everything from the drawing of a single sprite to AI pathfinding and advanced networking. Full working examples are emphasized. Starting with the first chapter, Graphics, you will be taken through every major topic of game development. You will find both simple and complex recipes in the book. Each recipe is either a solution to a common problem (playing video files, accelerometer steering) or a cool advanced technique (3D rendering, textured polygons). This cookbook will have you creating professional quality iOS games quickly with its breadth of working example code.
Table of Contents (15 chapters)
Cocos2d for iPhone 1 Game Development Cookbook
Credits
About the Author
About the Reviewers
www.PacktPub.com
Preface
Index

AI line of sight


Human beings employ five distinct senses to interact with the environment. One of these, vision, is its own branch of Computer Science entitled Computer Vision. In this example, we implement basic vision testing in a Box2D environment using a Ray Cast to see if there is another object in-between the player and an enemy AI actor.

Getting ready

Please refer to the project RecipeCollection03 for full working code of this recipe.

How to do it...

Execute the following code:

class RayCastAnyCallback : public b2RayCastCallback
{
public:
  RayCastAnyCallback()
  {
    m_hit = false;
  }

  float32 ReportFixture(	b2Fixture* fixture, const b2Vec2& point,
    const b2Vec2& normal, float32 fraction)
  {
    b2Body* body = fixture->GetBody();
    void* userData = body->GetUserData();
    if (userData)
    {
      int32 index = *(int32*)userData;
      if (index == 0)
      {
        // filter
        return -1.0f;
      }
    }

    m_hit = true;
    m_point = point;
    m_normal...