logo资料库

Physics for Game Programmers.pdf

第1页 / 共458页
第2页 / 共458页
第3页 / 共458页
第4页 / 共458页
第5页 / 共458页
第6页 / 共458页
第7页 / 共458页
第8页 / 共458页
资料共458页,剩余部分请下载后查看
cover-image-large
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
Physics for Game Programmers GRANT PALMER
Physics for Game Programmers Copyright © 2005 by Grant Palmer All rights reserved. No part of this work may be reproduced or transmitted in any form or by any means, electronic or mechanical, including photocopying, recording, or by any information storage or retrieval system, without the prior written permission of the copyright owner and the publisher. ISBN (pbk): 1-59059-472-X Printed and bound in the United States of America 9 8 7 6 5 4 3 2 1 Trademarked names may appear in this book. Rather than use a trademark symbol with every occurrence of a trademarked name, we use the names only in an editorial fashion and to the benefit of the trademark owner, with no intention of infringement of the trademark. Lead Editor: Tony Davis Technical Reviewers: Alan McLeod, Jack Park Editorial Board: Steve Anglin, Dan Appleman, Ewan Buckingham, Gary Cornell, Tony Davis, Jason Gilmore, Jonathan Hassell, Chris Mills, Dominic Shakeshaft, Jim Sumser Assistant Publisher: Grace Wong Project Manager: Laura E. Brown Copy Manager: Nicole LeClerc Copy Editor: Ami Knox Production Manager: Kari Brooks-Copony Production Editor: Kelly Winquist Compositor: Susan Glinert Proofreader: Liz Welch Indexer: John Collin Artist: Kinetic Publishing Services, LLC Cover Designer: Kurt Krames Manufacturing Manager: Tom Debolski Distributed to the book trade in the United States by Springer-Verlag New York, Inc., 233 Spring Street, 6th Floor, New York, NY 10013, and outside the United States by Springer-Verlag GmbH & Co. KG, Tiergartenstr. 17, 69112 Heidelberg, Germany. In the United States: phone 1-800-SPRINGER, fax 201-348-4505, e-mail orders@springer-ny.com, or visit http://www.springer-ny.com. Outside the United States: fax +49 6221 345229, e-mail orders@springer.de, or visit http://www.springer.de. For information on translations, please contact Apress directly at 2560 Ninth Street, Suite 219, Berkeley, CA 94710. Phone 510-549-5930, fax 510-549-5939, e-mail info@apress.com, or visit http://www.apress.com. The information in this book is distributed on an “as is” basis, without warranty. Although every precaution has been taken in the preparation of this work, neither the author(s) nor Apress shall have any liability to any person or entity with respect to any loss or damage caused or alleged to be caused directly or indirectly by the information contained in this work. The source code for this book is available to readers at www.apress.com in the Downloads section.
This book is dedicated to my wonderful wife, Lisa.
Contents at a Glance About the Author . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . xvii About the Technical Reviewers . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . xix Acknowledgments . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . xxi Introduction . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . xxiii CHAPTER 1 CHAPTER 2 CHAPTER 3 CHAPTER 4 CHAPTER 5 CHAPTER 6 CHAPTER 7 CHAPTER 8 CHAPTER 9 CHAPTER 10 CHAPTER 11 CHAPTER 12 CHAPTER 13 CHAPTER 14 CHAPTER 15 Adding Realism to Your Games . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 1 Some Basic Concepts . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 5 Basic Newtonian Mechanics . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 21 Basic Kinematics . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 49 Projectiles . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 83 Collisions . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 139 Sports Simulations . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 167 Cars and Motorcycles . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 211 Boats and Things That Float . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 245 Airplanes . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 275 Rockets and Missiles . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 319 The Physics of Solids . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 351 Explosions . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 371 Lasers . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 385 Probabilistic and Monte Carlo Simulations . . . . . . . . . . . . . . . . . . . 403 ■INDEX . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 423 v
Contents Contents About the Author . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . xvii About the Technical Reviewers . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . xix Acknowledgments . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . xxi Introduction . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . xxiii ■CHAPTER 1 Adding Realism to Your Games . . . . . . . . . . . . . . . . . . . . . . . . . . . 1 Physics Will Keep Your Games from Looking Fake . . . . . . . . . . . . . . . . . . . 1 Adding Physics-Based Realism Is Easier Than You Might Think . . . . . . . . 2 Adding Physics Won’t Affect Game Performance . . . . . . . . . . . . . . . . . . . . 3 Knowing Some Physics Will Make You a Better Game Programmer . . . . 4 Let’s Add Some Realism to Your Games . . . . . . . . . . . . . . . . . . . . . . . . . . . 4 ■CHAPTER 2 Some Basic Concepts . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 5 Systems of Units . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 6 Scientific Notation . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 7 Summation Notation . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 8 Greek Letters . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 8 Coordinate Systems and Frames of Reference . . . . . . . . . . . . . . . . . . . . . . 9 Scalars and Vectors . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 10 Computing the Magnitude of a Vector . . . . . . . . . . . . . . . . . . . . . . . . 11 The Unit Vector . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 11 Vector Cross Product . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 12 Matrices . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 12 Matrix Multiplication . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 13 Rotation Matrices . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 13 Derivatives . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 15 Differential Equations . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 18 Summary . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 19 vii
viii ■C O N T E N T S ■CHAPTER 3 Basic Newtonian Mechanics . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 21 A Short Biography of Sir Isaac Newton . . . . . . . . . . . . . . . . . . . . . . . . . . . 22 Newton’s First Law of Motion: Inertia. . . . . . . . . . . . . . . . . . . . . . . . . 22 Newton’s Second Law of Motion: Force, Mass, and Acceleration . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 23 Newton’s Third Law of Motion: Equal and Opposite Forces . . . . . . 24 Force Vector . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 24 Types of Forces . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 25 Gravitational Force . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 25 Friction . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 31 Centripetal Force. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 38 Force Balances and Force Diagrams . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 39 Work . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 41 Energy . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 43 Kinetic Energy . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 43 Potential Energy . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 44 Other Forms of Energy . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 44 Conservation of Energy . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 45 Power . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 45 Summary . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 46 Answers to Exercises . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 46 ■CHAPTER 4 Basic Kinematics . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 49 Translational Motion . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 49 The Relationship Between Force, Acceleration, Velocity, and Location . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 50 Solving the Translational Equations of Motion . . . . . . . . . . . . . . . . . . . . . . 51 Beanbag Game . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 53 Solving Ordinary Differential Equations . . . . . . . . . . . . . . . . . . . . . . . 55 Rotational Motion . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 69 Torque . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 71 Torque and Angular Acceleration . . . . . . . . . . . . . . . . . . . . . . . . . . . . 72 Rigid Body Motion . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 73 Center of Mass . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 73 Rigid Body Motion Coordinate Axes . . . . . . . . . . . . . . . . . . . . . . . . . . 75 Rolling Motion . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 75 Bowling Ball Kinematics. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 77 Summary . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 79 Answers to Exercises . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 80
■CHAPTER 5 Projectiles . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 83 ■C O N T E N T S ix Basic Concepts . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 84 The Gravity-Only Model . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 84 Force and Acceleration Equations. . . . . . . . . . . . . . . . . . . . . . . . . . . . 85 Location Equations . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 86 Finding the Time for a Projectile to Reach the Trajectory Apex. . . . 88 The SimpleProjectile Class . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 88 The Golf Game. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 91 Summary: Gravity-Only Projectile Trajectory Model . . . . . . . . . . . . . 97 Aerodynamic Drag . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 98 Basic Concepts . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 98 Drag Coefficient . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 99 Altitude Effects on Density. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 103 Laminar and Turbulent Flow . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 103 Adding Drag Effects to the Equations of Motion . . . . . . . . . . . . . . . 104 Force and Acceleration Equations. . . . . . . . . . . . . . . . . . . . . . . . . . . 105 Velocity Equations. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 106 Location Equations . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 107 Terminal Velocity . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 108 Programming Drag Effects into the Projectile Trajectory Model . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 108 Golf Game Version 2. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 111 Summary: Adding Drag to the Projectile Trajectory Model . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 113 Wind Effects . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 114 Programming Wind Effects into the Projectile Trajectory Model . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 116 Golf Game Version 3. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 119 Summary: Adding Wind Effects to the Projectile Trajectory Model . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 122 Spin Effects . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 122 Magnus Force . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 123 Programming Spin Effects into the Projectile Trajectory Model . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 125 Golf Game Version 4. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 129 Summary: Adding Spin Effects to the Projectile Trajectory Model . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 133
分享到:
收藏