Welcome, Guest. Please login or register. Did you miss your activation email?

Author Topic: moonman  (Read 24114 times)

0 Members and 2 Guests are viewing this topic.

eigenbom

  • Full Member
  • ***
  • Posts: 228
    • View Profile
Re: moonman
« Reply #15 on: September 13, 2012, 12:33:34 am »
Thx, haha, no it's not a feature. My next milestone is to rewrite a lot of the physics stuff to make it nice and solid.

eigenbom

  • Full Member
  • ***
  • Posts: 228
    • View Profile
Re: moonman
« Reply #16 on: November 06, 2012, 04:56:41 am »
But it's still possible, for instance if you take image above and just walk to the left into the water and then as far left as possible. The moonman's head will then be stuck in the wall and if you jump it's sometimes possible to fall down.

So I spent the last few weeks integrating Box2D into moonman, so now all tiles are completely impenetrable. ;)

Here's a pic!


There's a test build here (windows) but nothing's really changed on the surface, and I've disabled animation. But if you're interested in seeing a SFML/Box2D/tile-based platformer in action then give it a go.

F1: profiler
F8: show physics bodies



CHANGELOG

0.21 06/11/2012
Refactored physics to use Box2D
added glm lib
added variable jump height and jump after fall delay
fixed ascent control
added platforms
Use a smaller fixed timestep with proper accumulator
Renderer interpolated for smoother results
Added basic ladder support in physics (not yet in-game)
Added physics debug drawing (f8)
Smoothed camera a bit
Sped up physics by ~400% with a simple 4x4 tile grouping optimisation
increased platform height, added contact normal check, and decreased foot height
Stackable blocks now act properly, can't have stackable slopes unless upside down
Upside down slopes behave properly now
moved physics sim() to execute phase, added fluid manager toprofiler
basic support in physics for multiple chunks
incremented version number, disabled animation
mm accelerates faster up slopes to give fluidity
extended platform length
platforms only collide if normal has a small x component, which fixes hitting the sides of the platforms
tuned some constants in physics
Made logging more verbose, but still needs to be verboser


The Terminator

  • Full Member
  • ***
  • Posts: 224
  • Windows and Mac C++ Developer
    • View Profile
Re: moonman
« Reply #17 on: November 06, 2012, 02:39:05 pm »
Moon man looks cool! I'm on my iPhone at the moment so I can't try it but it looks pretty fun. I like the water update :)
Current Projects:
Technoport

FRex

  • Hero Member
  • *****
  • Posts: 1845
  • Back to C++ gamedev with SFML in May 2023
    • View Profile
    • Email
Re: moonman
« Reply #18 on: November 06, 2012, 04:02:54 pm »
Cool. :) Did you make own box2d debug drawer or..? ;)
Also, what did you use for tiles? Chain shapes? I ask cus the physics seem a bit jiterry. But since every tile is removeable it has to be own shape.. :|
Also may I ask why choose cegui instead of certain other gui dedicated for sfml? ;D
« Last Edit: November 06, 2012, 05:19:59 pm by FRex »
Back to C++ gamedev with SFML in May 2023

Nexus

  • SFML Team
  • Hero Member
  • *****
  • Posts: 6286
  • Thor Developer
    • View Profile
    • Bromeon
Re: moonman
« Reply #19 on: November 06, 2012, 05:40:21 pm »
Cool, looks already quite nice :)

The first time, the game crashed at starting with 1024x768, now it works.

The collision detection is not very fluent, one changes the height while walking. When you stand still, the character trembles for a short time. I don't know what you can do on Box2D side, but I'm sure you find a possibility ;)
Zloxx II: action platformer
Thor Library: particle systems, animations, dot products, ...
SFML Game Development:

eigenbom

  • Full Member
  • ***
  • Posts: 228
    • View Profile
Re: moonman
« Reply #20 on: November 06, 2012, 10:30:43 pm »
thx guys, yeh the jittery-ness is because of both the camera movement and box2d, and to be honest i hadn't really noticed it, but i do now! :)

for the debug drawer i just hacked apart the box2d one, i basically just do an AABB query of the screen rectangle to get all the visible fixtures then use slightly hacked versions of the debug drawing routines in b2World, just copied and pasted into my own classes. ;)

the tiles are all just separate polygon shapes, grouped into bodies of 4x4 tiles to speed up the broadphase. i'm actually super-stoked to see it running at under 2ms/frame on my comp, but i'll have to address that jitteriness, most likely just in the renderer.

hmm cegui, yeh ... you know i think I tried tgui and sfgui a while back , as well as other gui libs like gwen etc., but i think i settled on cegui mainly because it has been used successfully in commercial projects, although it is quite a beast to use, considering my gui requirements are quite low! ;)


eigenbom

  • Full Member
  • ***
  • Posts: 228
    • View Profile
Re: moonman
« Reply #21 on: November 06, 2012, 10:32:01 pm »
The first time, the game crashed at starting with 1024x768, now it works.

Hmm, could you try crashing it again and checking/posting the log.txt? Is your screen resolution less than 1024x768?

FRex

  • Hero Member
  • *****
  • Posts: 1845
  • Back to C++ gamedev with SFML in May 2023
    • View Profile
    • Email
Re: moonman
« Reply #22 on: November 06, 2012, 11:44:59 pm »
I think somewhere in the manual it's stated that you can have all static fixtures on one body. Also , the jitter can be caused by using 1 shape/ 1 tile, that's the reason edge chains exist(to fix problem with jitter movement over touching shapes).
Back to C++ gamedev with SFML in May 2023

eigenbom

  • Full Member
  • ***
  • Posts: 228
    • View Profile
Re: moonman
« Reply #23 on: November 06, 2012, 11:52:57 pm »
I think somewhere in the manual it's stated that you can have all static fixtures on one body.

Oh really? I'll have to check that out.

Quote
Also , the jitter can be caused by using 1 shape/ 1 tile, that's the reason edge chains exist(to fix problem with jitter movement over touching shapes).

Yeh I considered chain shapes, and they are still an option, but they require a more complex algo to setup. I solved earlier inter-tile issues by using a circle for moonman's feet, so if I can fix the small amount of jittering in the renderer then I'll be happy.

FRex

  • Hero Member
  • *****
  • Posts: 1845
  • Back to C++ gamedev with SFML in May 2023
    • View Profile
    • Email
Re: moonman
« Reply #24 on: November 07, 2012, 12:13:32 am »
Quote
Note that every fixture must have a parent body, even fixtures that are static. However, you can attach all static fixtures to a single static body.
http://www.box2d.org/manual.html in 2.2
I don't know what impact on performance would that have but probably none since density, mass, velocities and dampings don't apply to static bodies.
Back to C++ gamedev with SFML in May 2023

eigenbom

  • Full Member
  • ***
  • Posts: 228
    • View Profile
Re: moonman
« Reply #25 on: November 07, 2012, 12:24:03 am »
Quote
Note that every fixture must have a parent body, even fixtures that are static. However, you can attach all static fixtures to a single static body.
http://www.box2d.org/manual.html in 2.2
I don't know what impact on performance would that have but probably none since density, mass, velocities and dampings don't apply to static bodies.


Quote
Note that every fixture must have a parent body, even fixtures that are static. However, you can attach all static fixtures to a single static body.

Hmm .. yeh it says that you can do it, but doesn't say anything about whether its optimal to do so or anything. As far as I understand it, Box2D uses a body's AABB in its broadphase, so being smart about how you group your static fixtures into bodies should give a speed-up, which is basically what I've done.. but then again I have no idea what magic Box2D is doing underneath.. :D

FRex

  • Hero Member
  • *****
  • Posts: 1845
  • Back to C++ gamedev with SFML in May 2023
    • View Profile
    • Email
Re: moonman
« Reply #26 on: November 07, 2012, 12:35:34 am »
It's optimal. Trust me.  ;)
I know, you don't...well, suit yourself  :P :
Erin recommends it:
http://www.box2d.org/forum/viewtopic.php?f=3&t=7968

Quote
I recommend placing many fixtures on to a few static bodies. I would use one static body per 100 meters.

Box2D has some traversals of the body list that can be slow when the lists are huge.
Back to C++ gamedev with SFML in May 2023

eigenbom

  • Full Member
  • ***
  • Posts: 228
    • View Profile
Re: moonman
« Reply #27 on: November 07, 2012, 12:51:58 am »
It's optimal. Trust me.  ;)
I know, you don't...well, suit yourself  :P :
Erin recommends it:
http://www.box2d.org/forum/viewtopic.php?f=3&t=7968

Quote
I recommend placing many fixtures on to a few static bodies. I would use one static body per 100 meters.

Box2D has some traversals of the body list that can be slow when the lists are huge.

Ah cool, thx heaps for the link. It's not that I don't trust you, its just that its a complex problem, and I have no idea what your experience with tile-based box2d programs are.. :)

I don't think Erin is talking about terrain that can undergo lots of local changes like mine, but rather probably a single static body that is created at start-up and not changed afterwards. But if I get a chance I'll do a quick hack and test it out, only when I implement it and see the actual speed-up would I be convinced. And its currently working so fast anyway, I've already reduced it from like 40ms to 2ms per frame, which is approaching 'fast enough' for me. :)

FRex

  • Hero Member
  • *****
  • Posts: 1845
  • Back to C++ gamedev with SFML in May 2023
    • View Profile
    • Email
Re: moonman
« Reply #28 on: November 07, 2012, 01:00:54 am »
None really, but googling "<library name> forum <problem>"(ie "box2d forum many fixtures on one static body" top 5th result) is extremely effective. ;D
Back to C++ gamedev with SFML in May 2023

eigenbom

  • Full Member
  • ***
  • Posts: 228
    • View Profile
Re: moonman
« Reply #29 on: November 07, 2012, 01:14:39 am »
None really, but googling "<library name> forum <problem>"(ie "box2d forum many fixtures on one static body" top 5th result) is extremely effective. ;D

um, ok then, well thx ???

 

anything