pouët.net

Go to bottom

Looking for physics docs

category: general [glöplog]
 
Hi people,
I am looking for docs about physics, explaining theory of objects collisions. With algo examples if possible.
I don't want to use existing libraries as my target is oldschool platforms.
Can you help me please? Did any scener already write something about the subject?
added on the 2019-06-07 17:30:26 by cutter cutter
I can't remember one not-boring demo with physics.
added on the 2019-06-07 18:52:24 by friol friol
If it's for an oldschool platform, you'll probably have to use a solution that's very specific to what you ant to do, because simulating full rigid body dynamics might be a bit too taxing. (Though if you want to learn about the theory, you should look up that term.)

Either way, you should know what the following are:
* Analytic geometry and calculating intersections
* Vectors, dot product and wedge product (the cross product is a lie!)
* Newton's laws of motion
* Numeric integration of differential equations (see eg. this)
added on the 2019-06-07 18:58:21 by porocyon porocyon
friol: iguana's "rubber poly"-part springs (pun intended) to mind. i think you can even look that code up somewhere on the intarwebs these days
added on the 2019-06-07 19:33:24 by maali maali
For me the Chris Hecker tutorials were a good starting point.
added on the 2019-06-08 09:31:17 by axis^oxy axis^oxy
What hfr said. Realtime collision detection is probably on of the best books on the topic.
It contains a very good math primer chapter and a lot of code examples for everything.
It's very well illustrated and can often be found in paper form at university libraries (which are under certain circumstances also accessible for the general public).

The focus of the book are obviously not implementations on oldschool platforms but the underlying principles and algorithms - you will have to extrapolate from there for your specific platform.

That book is _really_ good.
added on the 2019-06-08 09:49:24 by las las
Thanks for the links! I'm going to have some interesting reading.

About the oldschool platform question, I watched We were @ on Atari STe, and it includes some physics (at 3:09 in the video).

Do you think the datas used by the physics are precomputed during the demo (just before the part), or it just loads some tables?
added on the 2019-06-08 18:18:27 by cutter cutter
Looks like a Box 2D animation to me.
added on the 2019-06-08 18:30:09 by noname noname
especially when targeting oldschool platforms you have to be aware that demo programming has more in common with illusion and magic tricks than with real simulation and physics ... although it often looks like fancy physics stuff it's not just math ..
added on the 2019-06-08 19:11:24 by Asato Asato
Any sufficiently advanced technology is indistinguishable from precalc.
added on the 2019-06-08 20:44:49 by rloaderro rloaderro
Smoke & mirrors. That's all the physics you need.
added on the 2019-06-08 21:29:31 by ham ham
not enough if you want to play in the Copperfield league ;)
added on the 2019-06-08 23:22:29 by Asato Asato
yes. please read about newtons laws of physics, the simple ones. and then try and emulate particles behaving that by just using binary numbers...
added on the 2019-06-09 01:26:35 by rudi rudi
under models: go to particles, collision and bouncing here; https://web.archive.org/web/20160521081256/http://freespace.virgin.net/hugo.elias/ as a start.
added on the 2019-06-09 01:30:18 by rudi rudi
Quote:

I can't remember one not-boring demo with physics.


https://www.pouet.net/prod.php?which=30237
added on the 2019-06-09 22:13:51 by farfar farfar

login

Go to top