• Log InLog In
  • Register
Liquid`
Team Liquid Liquipedia
EDT 18:54
CEST 00:54
KST 07:54
  • 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
Team TLMC #5 - Finalists & Open Tournaments0[ASL20] Ro16 Preview Pt2: Turbulence5Classic Games #3: Rogue vs Serral at BlizzCon9[ASL20] Ro16 Preview Pt1: Ascent10Maestros of the Game: Week 1/Play-in Preview12
Community News
Weekly Cups (Sept 8-14): herO & MaxPax split cups3WardiTV TL Team Map Contest #5 Tournaments1SC4ALL $6,000 Open LAN in Philadelphia7Weekly Cups (Sept 1-7): MaxPax rebounds & Clem saga continues29LiuLi Cup - September 2025 Tournaments3
StarCraft 2
General
#1: Maru - Greatest Players of All Time Weekly Cups (Sept 8-14): herO & MaxPax split cups SpeCial on The Tasteless Podcast Team TLMC #5 - Finalists & Open Tournaments Weekly Cups (Sept 1-7): MaxPax rebounds & Clem saga continues
Tourneys
WardiTV TL Team Map Contest #5 Tournaments Maestros of The Game—$20k event w/ live finals in Paris RSL: Revival, a new crowdfunded tournament series Sparkling Tuna Cup - Weekly Open Tournament SC4ALL $6,000 Open LAN in Philadelphia
Strategy
Custom Maps
External Content
Mutation # 491 Night Drive Mutation # 490 Masters of Midnight Mutation # 489 Bannable Offense Mutation # 488 What Goes Around
Brood War
General
[ASL20] Ro16 Preview Pt2: Turbulence BW General Discussion BGH Auto Balance -> http://bghmmr.eu/ ASL20 General Discussion Playing StarCraft as 2 people on the same network
Tourneys
[ASL20] Ro16 Group C Is there English video for group selection for ASL [ASL20] Ro16 Group B [IPSL] ISPL Season 1 Winter Qualis and Info!
Strategy
Simple Questions, Simple Answers Muta micro map competition Fighting Spirit mining rates [G] Mineral Boosting
Other Games
General Games
Stormgate/Frost Giant Megathread Path of Exile General RTS Discussion Thread Nintendo Switch Thread Borderlands 3
Dota 2
Official 'what is Dota anymore' discussion LiquidDota to reintegrate into TL.net
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
Community
General
US Politics Mega-thread Things Aren’t Peaceful in Palestine Canadian Politics Mega-thread Russo-Ukrainian War Thread The Big Programming Thread
Fan Clubs
The Happy Fan Club!
Media & Entertainment
Movie Discussion! [Manga] One Piece Anime Discussion Thread
Sports
2024 - 2026 Football Thread Formula 1 Discussion MLB/Baseball 2023
World Cup 2022
Tech Support
Linksys AE2500 USB WIFI keeps disconnecting Computer Build, Upgrade & Buying Resource Thread High temperatures on bridge(s)
TL Community
BarCraft in Tokyo Japan for ASL Season5 Final The Automated Ban List
Blogs
The Personality of a Spender…
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
Customize Sidebar...

Website Feedback

Closed Threads



Active: 1400 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
Next event in 1h 6m
[ Submit Event ]
Live Streams
Refresh
StarCraft 2
NeuroSwarm 282
CosmosSc2 24
ROOTCatZ 1
StarCraft: Brood War
Artosis 576
ggaemo 29
sSak 20
ajuk12(nOOB) 13
Counter-Strike
Stewie2K479
fl0m464
Super Smash Bros
Liquid`Ken46
Other Games
summit1g4531
Grubby3779
FrodaN2432
shahzam726
ToD193
C9.Mang0133
SortOf74
Maynarde65
Trikslyr54
Nathanias23
fpsfer 2
Organizations
Other Games
gamesdonequick58
StarCraft 2
Blizzard YouTube
StarCraft: Brood War
BSLTrovo
sctven
[ Show 19 non-featured ]
StarCraft 2
• RyuSc2 68
• davetesta39
• IndyKCrew
• sooper7s
• AfreecaTV YouTube
• Migwel
• intothetv
• LaughNgamezSOOP
• Kozan
StarCraft: Brood War
• blackmanpl 17
• STPLYoutube
• ZZZeroYoutube
• BSLYoutube
Dota 2
• masondota22347
• WagamamaTV320
• Ler69
League of Legends
• TFBlade680
Other Games
• Scarra1140
• imaqtpie967
Upcoming Events
OSC
1h 6m
Sparkling Tuna Cup
11h 6m
Afreeca Starleague
11h 6m
Light vs Speed
Larva vs Soma
2v2
12h 6m
PiGosaur Monday
1d 1h
LiuLi Cup
1d 12h
RSL Revival
2 days
Maru vs Reynor
Cure vs TriGGeR
The PondCast
2 days
RSL Revival
3 days
Zoun vs Classic
Korean StarCraft League
4 days
[ Show More ]
BSL Open LAN 2025 - War…
4 days
RSL Revival
4 days
BSL Open LAN 2025 - War…
5 days
RSL Revival
5 days
Online Event
5 days
Wardi Open
6 days
Liquipedia Results

Completed

BSL 20 Team Wars
Chzzk MurlocKing SC1 vs SC2 Cup #2
HCC Europe

Ongoing

KCM Race Survival 2025 Season 3
BSL 21 Points
ASL Season 20
CSL 2025 AUTUMN (S18)
LASL Season 20
RSL Revival: Season 2
Maestros of the Game
FISSURE Playground #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
IPSL Winter 2025-26
BSL Season 21
SC4ALL: Brood War
BSL 21 Team A
Stellar Fest
SC4ALL: StarCraft II
EC S1
ESL Impact League Season 8
SL Budapest Major 2025
BLAST Rivals Fall 2025
IEM Chengdu 2025
PGL Masters Bucharest 2025
MESA Nomadic Masters Fall
Thunderpick World Champ.
CS Asia Championships 2025
ESL Pro League S22
StarSeries Fall 2025
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.