• Log InLog In
  • Register
Liquid`
Team Liquid Liquipedia
EDT 01:05
CEST 07:05
KST 14:05
  • 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: Ascent8Maestros 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 Paris64Weekly 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 Sparkling Tuna Cup - Weekly Open Tournament RSL: Revival, a new crowdfunded tournament series Chzzk MurlocKing SC1 vs SC2 Cup Sea Duckling Open (Global, Bronze-Diamond)
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
ASL20 General Discussion BSL Polish World Championship 2025 20-21 September [ASL20] Ro16 Preview Pt1: Ascent BGH Auto Balance -> http://bghmmr.eu/ The Korean Terminology Thread
Tourneys
[ASL20] Ro16 Group A [IPSL] ISPL Season 1 Winter Qualis and Info! [Megathread] Daily Proleagues Is there English video for group selection for ASL
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 The Games Industry And ATVI Things Aren’t Peaceful in Palestine UK Politics Mega-thread 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: 1147 users

Student Game Dev Part Nine - Editor progress.

Blogs > Soan
Post a Reply
Soan
Profile Blog Joined August 2010
New Zealand194 Posts
January 24 2014 01:55 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


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 covered the work I'd done on the UI system, and the start of the editor. This week I'll be talking about the success with the editor so far, the performance problems I've run into and mostly fixed, some concerns I have for the future, and where I'm headed next.

Editor
The editor is in a position now where I can create and save levels that are filled with fixed platforms. Pretty pleased with how it works, I can hold down the left mouse button and essentially paint out some platforms, then release the mouse button to stop, and start painting somewhere else. I also have an algorithm in place that updates the art for each tile based on the tiles around it in real time. For this to work, each tile knows about all the tiles around it. Whenever a new tile is placed, each of the grid squares around that tile are checked for existing tiles. If an existing tile is placed, it is linked to the new tile, and the new tile updates what art it should be using. The new tile is then linked to that existing one, and the existing one updates its art.

So for example, I place Tile A, by itself, so it uses a piece of art with an edge on all sides. I then place Tile B to the left of it. Tile B discovers that Tile A is to the right, and so updates its art to use a piece with an edge on the top, bottom, and the left side, leaving the right side open. Tile A is informed about Tile B, and updates its art to a piece with an edge on the top, bottom, and right side, leaving the left side open. The two pieces are now connected, and display as a single piece. A video showing this off should be coming some time in the near future, as showing is probably easier than explaining!

All of this meant I was able to lay out what I currently have planned for the first level, and successfully loaded it into the game! I felt really good once I had this, as it felt like a really big step for the game. I still feel pretty good about it, and where I am with the game overall.

Scrolling
Once I had a full level loaded into the game, I had to get the side scrolling working, as up until this point it wasn't needed, and you could simply move off the edge of the screen and disappear. It was relatively easy to do and didn't pose any problems, which was nice. There is a camera that's based on the player position, and just follows you around. When you hit the edge of a level, it stops. The player is also prevented from moving past this point. The player is also blocked from moving past the height of the level, although I did think about allowing this, to potentially allow players to just go over the top of everything and get through the level faster. I'm going to think about this some more and see how other levels play out, although I think I might end up changing my mind and allowing it.

I have noticed some vertical jittering once the camera starts to move up the screen, the player doesn't appear to move, but everything else appears to very quickly move up and down in small increments. Given that the camera is based on the players position, I'm assuming that it's the player actually doing the jittering. It also doesn't appear to happen while the player is in the air, so I'm think it's probably got to do with the collision detection and reaction to the player standing on a platform. Gravity is still being applied, so the player is probably being pushed down into the platform, and then back up in the collision reaction. I'll be investigating and confirming whether or not this is it next week, and then fixing it.

Problems, and the Future
I ran into a performance issue with rendering and processing so many tiles this week. I did kind of expect it occur though, as I was lazy and wasn't checking whether an object was actually visible on the screen before it was processed or rendered. Once I actually started doing this performance was much better. The number of physics actors I have, that are all being processed when they're visible on the screen, will also be giving me a performance hit, as each tile is its own physics actor. Ideally, rather than having every individual tile be its own rectangular physics actor, I'd be linking tiles that are next to each other to create a single polygon. Individual rectangles is certainly easier, as it allows me to take advantage of SDLs built in rectangle functions, but is giving me an obvious performance hit. Changing it would require a rewrite of the collision detection, as that is based around rectangles, but I'm not sure I'll have time.

Performance of the release build, and the debug build with no debug text is still perfectly fine, but the hit that I've taken since adding so many more tiles has me slightly concerned for the future. The release build used to run at over 4000 FPS, now it runs at around 1000 or less. In debug, without debug text it's sitting around 200-300, with debug text we're around 50. What will happen when I add enemies, coins, background art, get parallax working, etc. Will it still be fine? The machine I'm working on is fairly high end, how will it run on lesser machines? Is it going to get rather difficult to play with debug text on once everything else is added? These are the kinds of questions I'm wondering about for the future, that I won't really know the answer to until I get there.

This problem isn't entirely unexpected, as I did wonder if I would run into it down the line, given that I'm using SDLs built in 2D renderer, rather than OpenGL or DirectX. The code is set up in such a way that I should be able to swap out the rendering code for something using OpenGL and have everything still work as expected. I'm going to continue with what I have at the moment, and see how things go once the game is closer to being finished.

Because of this, I don't think it'll be ready for a commercial release when I finish. Depending on where it's at, I think I will need to change the rendering in order to accomplish a product that can smoothly run on as many machines as possible. This isn't really that disappointing, as I know that having a commercially ready product is a pretty ambitious goal for one programmer. Maybe I'll look at doing a small Kickstarter campaign, or be lucky enough to find a publisher willing to fund me for the rest. Who knows!? I'll see where things stand in a few months.

Regardless of these problems, I still feel like I’ve made pretty good progress this week.

What's next?
The last alpha milestone is due in a couple of weeks, so in that time I'll be working on perfecting/fixing the physics and movement, trying to remove things like the aforementioned jittering and making sure the player character moves around appropriately. I still need to add more debug console commands and document them as well, I've been a bit slack on that and still haven't done it. Having those extra debug commands will be useful, and it will give the tutors something extra to play around with I hand in the milestone.

I also want to look at doing a couple videos showing off what I have so far, both in the editor and the game. I have Fraps, but I don't know what good and free video editing software exists, so if you know what's good and free to use, let me know if any of you guys know one please.

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!

*
CecilSunkure
Profile Blog Joined May 2010
United States2829 Posts
January 24 2014 02:08 GMT
#2
Editor blog and no screenshot!?
BisuDagger
Profile Blog Joined October 2009
Bisutopia19250 Posts
January 24 2014 16:29 GMT
#3
I think you'll enjoy this. It's my blogs about making my first video game. Keep up the hard work.

Parts 1-3:
http://www.teamliquid.net/forum/viewmessage.php?topic_id=189098
http://www.teamliquid.net/forum/viewmessage.php?topic_id=204134
http://www.teamliquid.net/forum/viewmessage.php?topic_id=214369
ModeratorFormer Afreeca Starleague Caster: http://afreeca.tv/ASL2ENG2
FFGenerations
Profile Blog Joined April 2011
7088 Posts
January 24 2014 17:24 GMT
#4
cool , i missed this, i'll be starting my project soon aswell!
Cool BW Music Vid - youtube.com/watch?v=W54nlqJ-Nx8 ~~~~~ ᕤ OYSTERS ᕤ CLAMS ᕤ AND ᕤ CUCKOLDS ᕤ ~~~~~~ ༼ ᕤ◕◡◕ ༽ᕤ PUNCH HIM ༼ ᕤ◕◡◕ ༽ᕤ
Soan
Profile Blog Joined August 2010
New Zealand194 Posts
January 27 2014 02:11 GMT
#5
On January 24 2014 11:08 CecilSunkure wrote:
Editor blog and no screenshot!?


I'm going to do a couple of videos! Still running on temporary art that I did, so videos will show it better than taking a couple screenshots.

On January 25 2014 01:29 BisuDagger wrote:
I think you'll enjoy this. It's my blogs about making my first video game. Keep up the hard work.

Parts 1-3:
http://www.teamliquid.net/forum/viewmessage.php?topic_id=189098
http://www.teamliquid.net/forum/viewmessage.php?topic_id=204134
http://www.teamliquid.net/forum/viewmessage.php?topic_id=214369


Cool. I've heard of Full Sail before, how was studying there?

Tried running game on my laptop today, 0 FPS in debug mode, hooray! Guess I don't have any choice but to switch to opengl asap if I want to do any work at home.
Please log in or register to reply.
Live Events Refresh
Next event in 4h 55m
[ Submit Event ]
Live Streams
Refresh
StarCraft 2
WinterStarcraft624
Nina 130
NeuroSwarm 114
ProTech73
StarCraft: Brood War
sSak 268
Bale 79
Icarus 12
Movie 11
yabsab 7
Dota 2
LuMiX1
League of Legends
JimRising 740
Counter-Strike
Stewie2K838
semphis_59
Super Smash Bros
Mew2King81
Other Games
summit1g8455
shahzam902
C9.Mang0393
Maynarde146
Organizations
Other Games
gamesdonequick1322
StarCraft 2
Blizzard YouTube
StarCraft: Brood War
BSLTrovo
sctven
[ Show 13 non-featured ]
StarCraft 2
• davetesta45
• AfreecaTV YouTube
• intothetv
• Kozan
• IndyKCrew
• LaughNgamezSOOP
• Migwel
• sooper7s
StarCraft: Brood War
• Diggity5
• BSLYoutube
• STPLYoutube
• ZZZeroYoutube
League of Legends
• Rush1808
Upcoming Events
Sparkling Tuna Cup
4h 55m
Afreeca Starleague
4h 55m
Soulkey vs Barracks
EffOrt vs Rush
Monday Night Weeklies
10h 55m
Afreeca Starleague
1d 4h
BeSt vs Alone
Queen vs Bisu
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
[ Show More ]
RSL Revival
5 days
Maestros of the Game
5 days
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

Copa Latinoamericana 4
SEL Season 2 Championship
HCC Europe

Ongoing

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.