Book Image

Panda3D 1.6 Game Engine Beginner's Guide

Book Image

Panda3D 1.6 Game Engine Beginner's Guide

Overview of this book

Panda3D is a game engine, a framework for 3D rendering and game development for Python and C++ programs. It includes graphics, audio, I/O, collision detection, and other abilities relevant to the creation of 3D games. Also, Panda3D is Open Source and free for any purpose, including commercial ventures. This book will enable you to create finished, marketable computer games using Panda3D and other entirely open-source tools and then sell those games without paying a cent for licensing. Panda3D 1.6 Game Engine Beginner's Guide follows a logical progression from a zero start through the game development process all the way to a finished, packaged installer. Packed with examples and detailed tutorials in every section, it teaches the reader through first-hand experience. These tutorials are followed by explanations that describe what happened in the tutorial and why. You will start by setting up a workspace, and then move on to the basics of starting up Panda3D. From there, you will begin adding objects like a level and a character to the world inside Panda3D. Then the book will teach you to put the game's player in control by adding change over time and response to user input. Then you will learn how to make it possible for objects in the world to interact with each other by using collision detection and beautify your game with Panda3D's built-in filters, shaders, and texturing. Finally, you will add an interface, audio, and package it all up for the customer.
Table of Contents (22 chapters)
Panda3D 1.6 Game Engine
Credits
About the Author
About the Reviewers
www.PacktPub.com
Preface
Index

Time for action – implementing acceleration


Our cycle needs to accelerate at a constant rate until it reaches the throttle setting, or decelerate to the throttle, if necessary. This will take two things to make happen, some new variables and two new methods.

  1. To start with, we're going to add some variable declarations at the beginning of our __init__ method. Place this code right below the line where we define the __init__ method.

        self.speed = 0
        self.throttle = 0
        self.maxSpeed = 200
        self.accel = 25
  2. We also want to add a new method to our World class. Add this code to the end of the World class, right above the line that sets w = World()

      def speedCheck(self, dt):
        tSetting = (self.maxSpeed * self.throttle)
        if(self.speed < tSetting):
          if((self.speed + (self.accel * dt)) > tSetting):
            self.speed = tSetting
          else:
            self.speed += (self.accel * dt)
        elif(self.speed > tSetting):
          if((self.speed - (self.accel * dt)) < tSetting):
     ...