• Log InLog In
  • Register
Liquid`
Team Liquid Liquipedia
EDT 16:50
CEST 22:50
KST 05:50
  • Home
  • Forum
  • Calendar
  • Streams
  • Liquipedia
  • Features
  • Store
  • EPT
  • TL+
  • StarCraft 2
  • Brood War
  • Smash
  • Heroes
  • Counter-Strike
  • Overwatch
  • Liquibet
  • Fantasy StarCraft
  • TLPD
  • StarCraft 2
  • Brood War
  • Blogs
Forum Sidebar
Events/Features
News
Featured News
[ASL20] Ro16 Preview Pt1: Ascent2Maestros of the Game: Week 1/Play-in Preview12[ASL20] Ro24 Preview Pt2: Take-Off7[ASL20] Ro24 Preview Pt1: Runway132v2 & SC: Evo Complete: Weekend Double Feature4
Community News
LiuLi Cup - September 2025 Tournaments2Weekly Cups (August 25-31): Clem's Last Straw?39Weekly Cups (Aug 18-24): herO dethrones MaxPax6Maestros of The Game—$20k event w/ live finals in Paris57Weekly Cups (Aug 11-17): MaxPax triples again!15
StarCraft 2
General
Production Quality - Maestros of the Game Vs RSL 2 #1: Maru - Greatest Players of All Time Team Liquid Map Contest #21 - Presented by Monster Energy Geoff 'iNcontroL' Robinson has passed away Heaven's Balance Suggestions (roast me)
Tourneys
Maestros of The Game—$20k event w/ live finals in Paris RSL: Revival, a new crowdfunded tournament series Chzzk MurlocKing SC1 vs SC2 Cup Sea Duckling Open (Global, Bronze-Diamond) LiuLi Cup - September 2025 Tournaments
Strategy
Custom Maps
External Content
Mutation # 490 Masters of Midnight Mutation # 489 Bannable Offense Mutation # 488 What Goes Around Mutation # 487 Think Fast
Brood War
General
BGH Auto Balance -> http://bghmmr.eu/ [ASL20] Ro16 Preview Pt1: Ascent The Korean Terminology Thread Pros React To: herO's Baffling Game ASL20 General Discussion
Tourneys
[Megathread] Daily Proleagues [IPSL] ISPL Season 1 Winter Qualis and Info! Is there English video for group selection for ASL Small VOD Thread 2.0
Strategy
Simple Questions, Simple Answers Muta micro map competition Fighting Spirit mining rates [G] Mineral Boosting
Other Games
General Games
Stormgate/Frost Giant Megathread General RTS Discussion Thread Nintendo Switch Thread Path of Exile Warcraft III: The Frozen Throne
Dota 2
Official 'what is Dota anymore' discussion
League of Legends
Heroes of the Storm
Simple Questions, Simple Answers Heroes of the Storm 2.0
Hearthstone
Heroes of StarCraft mini-set
TL Mafia
TL Mafia Community Thread Vanilla Mini Mafia
Community
General
US Politics Mega-thread Things Aren’t Peaceful in Palestine UK Politics Mega-thread The Games Industry And ATVI Russo-Ukrainian War Thread
Fan Clubs
The Happy Fan Club!
Media & Entertainment
[Manga] One Piece Anime Discussion Thread Movie Discussion! [\m/] Heavy Metal Thread
Sports
Formula 1 Discussion MLB/Baseball 2023 2024 - 2026 Football Thread TeamLiquid Health and Fitness Initiative For 2023
World Cup 2022
Tech Support
Computer Build, Upgrade & Buying Resource Thread High temperatures on bridge(s)
TL Community
The Automated Ban List TeamLiquid Team Shirt On Sale
Blogs
Collective Intelligence: Tea…
TrAiDoS
A very expensive lesson on ma…
Garnet
hello world
radishsoup
Lemme tell you a thing o…
JoinTheRain
RTS Design in Hypercoven
a11
Evil Gacha Games and the…
ffswowsucks
INDEPENDIENTE LA CTM
XenOsky
Customize Sidebar...

Website Feedback

Closed Threads



Active: 1425 users

Student Game Dev Part Eleven - Fixing the Physics

Blogs > Soan
Post a Reply
Soan
Profile Blog Joined August 2010
New Zealand194 Posts
February 07 2014 00:43 GMT
#1
+ Show Spoiler [Previous parts] +
Part One - It begins
Part Two - Technical Foundation
Part Three - Game Design
Part Four - Input and Physics
Part Five - More Physics Things
Part Six - Even More Physics
Part Seven - User Interface
Part Eight - UI and the Editor
Part Nine - Editor Progress
Part Ten - Progress, and videos


This Week
Hello again TeamLiquid! Welcome back to my blog about the development of The Adventures of Sam the Pirate, the 2D platformer I'm creating as the final game project for my Bachelor of Software Engineering degree. Last week I talked about the progress I'd made, and talked a bit about performance issues again. This week I'll be talking about the fixes I've made to the physics, and talking about performance again. Also finally got around to adding a couple of debug console commands, namely loading a level from file and toggling physics debugging rendering on and off.

Fixed Physics
I managed to successfully improve the movement, and fix a couple of physics bugs this week. At the start of the week, I had been a little worried about managing to fix it by the end of the week, when the last alpha milestone is due, but it was successfully done by the end of Wednesday. Having it fixed by then has allowed me to relax a little for the last couple of days, and take care of some smaller things, as I don't want to work on anything major in case I irrevocably break things before the milestone.

Most of the fixing for the physics came from adjusting what happened in collision reactions. The SDL function I'm using to detect collision between two rectangles returns another rectangle that contains the position, width, and height of the intersection. Originally I had been using this to determine how far to correct the players position, as I already knew what direction the player was, whether it be left/right, or above/below. Now, the players position is corrected by a fixed amount, with this amount being determined by the size of the tile, and the size of the players sprite.

When I first started writing the physics code, each physics actor had a single flag for whether or not they had collided with another actor. I changed this to having separate flags for vertical and horizontal collisions, and then wondered why I had ever done it with the single flag in the first place, as two made much more sense given that the physics is based around rectangles. So if the player is above/below a tile, that is a vertical collision, to the left/right is a horizontal collision. I also adjusted the collision response in such a way that on a vertical collision, when the players position is corrected, they are still colliding, but only just. Visibly they player does not look like he is colliding with anything. Both of these changes allowed me to fix the jittering, as that was being caused by the player colliding, being moved up, not colliding anymore and being forced down by gravity, colliding again, moving up again, etc. Now, as long as the player stands on a platform, they are always in state of vertically colliding and so gravity will not take effect.

There are still a few bugs, but they are relatively minor and not particularly game breaking. The first involves trying to run into a wall, you get the same kind of jittering on the player that used to happen when the player was on a platform, but more pronounced. The second involves corner tiles, depending on how you hit the corner tile, you could end up inside it, or teleported to the top of it. If you end up inside it you can still move out of it however, so a player wouldn't get stuck. These are all fixable, and will be fixed at some point.

The third bug, might end up remaining unfixed as a feature. When the player falls, say they ran off the edge of a platform, they can jump while in mid air. You can't double jump in Sam the Pirate, so while a jumping animation is being run hitting jump again will not do anything. However hitting a tile from below changes the players animation to a running animation, so it's possible to chain jumps for some distance, as long as you're hitting the bottom of a tile. This bug/feature has also made me realise I don't have a falling animation, although maybe the jump animation that plays while you're in the air is also a falling animation, in which case fixing this bug/feature will disable being able to jump while falling. Maybe I could fix it and keep this effect, as it could be interesting. You can see it in the new gameplay video below:



What do you guys think? Fix or keep jumping while falling?

Performance
I tested the game on my laptop at home again, this time I managed to get around 20 fps when in debug mode, which is a nice improvement. Still not 100% sure what I did to improve this, but it must have something to do with the changes I've made in the physics code I guess? I dunno. I did play around with some of the code in the physics, what order things were being processed etc, so that must be where it came from.

I've also possibly come up with a method of rendering all the static tiles in the level at once, rather than individually like I currently am. I haven't been too sure how to do this in SDL until now, but I think that I can probably render each static tile into an SDL surface, generate an SDL texture from this surface, and then use that texture to render into the main rendering surface. This would certainly save a lot of time on the rendering side, but would increase the initial load time for a level.

At some point soon, I should also look at doing some profiling, and finding out where the bottleneck actually is. Right now I think it is the rendering, but it could also be on the processing side, as there are quite a large number of tiles. I need to start timing things and finding out how long each takes.

What's next?
Over the next week, I'll look at changing the static tile rendering as I mentioned earlier, and work on the editor further, as it's the next important piece of the puzzle I need. The next step for the editor is being able to place other level elements, like enemies and moving platforms etc. I've also got a demonstration on Monday to the schools games faculty, but I feel pretty good about that as I think I'm mostly on track.

Keep up to date!
Be sure to follow me on Twitter, and like the Facebook page to stay up to date on future content and blog posts when they happen. If you have any questions don't hesitate to ask, either through Twitter or Facebook!

****
Please log in or register to reply.
Live Events Refresh
BSL Team Wars
19:00
Round 6
Team Hawk vs Team Sziky
LiquipediaDiscussion
Maestros of the Game
17:00
Group Stage - Group D
Lambo vs herO
Maru vs TBD
ComeBackTV 1307
SteadfastSC451
CranKy Ducklings336
IndyStarCraft 278
BRAT_OK 165
CosmosSc2 101
EnkiAlexander 97
Rex69
LiquipediaDiscussion
[ Submit Event ]
Live Streams
Refresh
StarCraft 2
SteadfastSC 424
IndyStarCraft 278
BRAT_OK 148
CosmosSc2 96
Rex 69
JuggernautJason67
Vindicta 27
StarCraft: Brood War
sSak 44
sas.Sziky 28
yabsab 20
NaDa 5
Dota 2
The International79788
Gorgc15244
Dendi635
KheZu50
League of Legends
JimRising 471
Counter-Strike
Stewie2K96
kRYSTAL_19
Super Smash Bros
C9.Mang02433
Mew2King97
Other Games
summit1g4313
Grubby3665
FrodaN2081
fl0m1129
B2W.Neo828
Hui .196
Organizations
Other Games
gamesdonequick2483
StarCraft 2
Blizzard YouTube
StarCraft: Brood War
BSLTrovo
sctven
[ Show 20 non-featured ]
StarCraft 2
• musti20045 61
• Adnapsc2 14
• intothetv
• IndyKCrew
• sooper7s
• AfreecaTV YouTube
• Migwel
• LaughNgamezSOOP
• Kozan
StarCraft: Brood War
• Azhi_Dahaki23
• FirePhoenix12
• blackmanpl 9
• STPLYoutube
• ZZZeroYoutube
• BSLYoutube
Dota 2
• C_a_k_e 2069
• masondota21002
League of Legends
• Doublelift6326
Other Games
• imaqtpie1508
• Shiphtur177
Upcoming Events
Sparkling Tuna Cup
13h 10m
Monday Night Weeklies
19h 10m
The PondCast
3 days
RSL Revival
3 days
Cure vs SHIN
Reynor vs Zoun
RSL Revival
4 days
Classic vs TriGGeR
ByuN vs Maru
Online Event
4 days
BSL Team Wars
4 days
Team Bonyth vs Team Dewalt
BSL Team Wars
4 days
RSL Revival
5 days
Maestros of the Game
5 days
[ Show More ]
Cosmonarchy
5 days
Bonyth vs Dewalt
[BSL 2025] Weekly
5 days
RSL Revival
6 days
Maestros of the Game
6 days
BSL Team Wars
6 days
Liquipedia Results

Completed

Ultimate Battle Special: Larva vs Mini
SEL Season 2 Championship
HCC Europe

Ongoing

Copa Latinoamericana 4
BSL 20 Team Wars
KCM Race Survival 2025 Season 3
BSL 21: BSL Points
ASL Season 20
CSL 2025 AUTUMN (S18)
LASL Season 20
RSL Revival: Season 2
Maestros of the Game
Chzzk MurlocKing SC1 vs SC2 Cup #2
BLAST Open Fall 2025
BLAST Open Fall Qual
Esports World Cup 2025
BLAST Bounty Fall 2025
BLAST Bounty Fall Qual
IEM Cologne 2025
FISSURE Playground #1

Upcoming

2025 Chongqing Offline CUP
BSL Polish World Championship 2025
BSL Season 21
BSL 21 Team A
EC S1
BLAST Rivals Fall 2025
IEM Chengdu 2025
PGL Masters Bucharest 2025
Thunderpick World Champ.
MESA Nomadic Masters Fall
CS Asia Championships 2025
ESL Pro League S22
StarSeries Fall 2025
FISSURE Playground #2
TLPD

1. ByuN
2. TY
3. Dark
4. Solar
5. Stats
6. Nerchio
7. sOs
8. soO
9. INnoVation
10. Elazer
1. Rain
2. Flash
3. EffOrt
4. Last
5. Bisu
6. Soulkey
7. Mini
8. Sharp
Sidebar Settings...

Advertising | Privacy Policy | Terms Of Use | Contact Us

Original banner artwork: Jim Warren
The contents of this webpage are copyright © 2025 TLnet. All Rights Reserved.