Difference between revisions of "Bachelor-Praktikum: Game Physics - Summer 16"
Line 69: | Line 69: | ||
= Worksheets = | = Worksheets = | ||
− | Most worksheets have to be completed within a week (except if stated otherwise). Solutions have to be uploaded via Moodle. Create an archive called worksheet?.tar.gz (where ? is the worksheet number) and insert the complete code tree without object files or binaries. | + | Most worksheets have to be completed within a week (except if stated otherwise). Solutions have to be uploaded via [https://www.moodle.tum.de/course/view.php?id=27063 Moodle]. Create an archive called worksheet?.tar.gz (where ? is the worksheet number) and insert the complete code tree without object files or binaries. |
Note: The submitted code will be graded only, if it compiles without errors. So please take care, that the code works and test it at least once before submission. | Note: The submitted code will be graded only, if it compiles without errors. So please take care, that the code works and test it at least once before submission. |
Revision as of 15:52, 5 April 2016
- Term
- SS 16
- Lecturer
- Univ.-Prof. Dr. Hans-Joachim Bungartz,
Sebastian Rettenberger,
Roland Wittmann - Time and Place
- TBD
- Audience
- Studenten der Informatik (Bachelor)
- Tutorials
- -
- Exam
- -
- Semesterwochenstunden / ECTS Credits
- 6 SWS (6P) / 10 Credits
- TUMonline
- https://campus.tum.de/tumonline/wblv.wbShowLvDetail?pStpSpNr=950240443
Course is held in German, the slides are in English.
Contents
Contents
A simple game physics engine is developed in this lab. Starting with simple time steps for moving rigid body objects you will successively extend your developments by collision detection, rotations, friction, etc. to obtain a game physics engine.
Topics:
- Introduction to game engines (Visualization, physics, scripting, ...)
- Game-Physics (Force, momentum, torque, ...)
- Game-Math (Numerical approximations, accuracy, time-steps, ...)
- Modelling of springs, Ropes
- Collision detection
- Resolving of interpenetrations
- Friction
- ...
Prerequisites
- Preliminary knowledge in C++ is advantageous, but it's no prerequisite. However, you should have experiences in object-oriented programming - e.g. Java programming.
- No prior knowledge about visualization is necessary: A framework for visualization, interactivity and the interface for the physics is given. Thus you'll only have to implement the physics part.
- Also no prior knowledge about physics is necessary. We'll give a short introduction to physics.
- The existing code base is designed to work with Linux + Eclipse. You are allowed to use Windows/Mac OS but we will not provide any support.
Timetable
Preliminary meeting: Monday 01.02.16 16:00, room 02.07.023
The class takes place every Friday 10:00-12:00 in room 02.07.023.
Number | Topic | Worksheet | Presentation Slides | Date |
---|
Worksheets
Most worksheets have to be completed within a week (except if stated otherwise). Solutions have to be uploaded via Moodle. Create an archive called worksheet?.tar.gz (where ? is the worksheet number) and insert the complete code tree without object files or binaries.
Note: The submitted code will be graded only, if it compiles without errors. So please take care, that the code works and test it at least once before submission.
Groups
Frequently Asked Questions (FAQs)
If you have a question, first take a look at our FAQ Website: PSE Game Physics - Summer 16 - FAQs
Recommended Literature
- Game Physics Engine Development, Ian Millington
- Real-Time Collision Detection, Christer Ericson
- Game Physics, David E. Eberly
Material
The Engine Skeleton is available for download:
When compiling SBNDEngine, don't forget to install freeglut3-dev, libpng-dev and libjpeg-dev
SBND Engine
The following keysettings are preset by our engine. The keys which are for debugging should be the most important for you to hunt bugs ;-)
- Default mode:
Key | Function |
---|---|
[a] | Go left |
[s] | Go back |
[w] | Go forward |
[d] | Go right |
[g/G] | activate/deactivate gravity |
[space] | Switch between '1st person mode' and 'free mouse mode' |
[1]-[0], [F1]-[F12] | Switch to other scene and reset |
[r] | Total reset |
[e] | Reset objects only |
- Debug mode:
You can use this mode to get some information about objects. An output is created for object which is currently under the mouse cursor.
Key | Function |
---|---|
[backspace] | Activate/Deactivate Debug mode |
[mouse wheel up],[+] | Go one timestep forward + record current state |
[mouse wheel down],[-] | Go one timestep back (restore recorded state) |
Preview
- Hanging Bridge simulated with ropes:
- Falling objects (Cubes, Spheres):
- Many boxes: