• Log InLog In
  • Register
Liquid`
Team Liquid Liquipedia
EDT 07:35
CEST 13:35
KST 20:35
  • 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: Ascent9Maestros 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
Weekly Cups (Sept 1-7): MaxPax rebounds & Clem saga continues14LiuLi 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 Paris75
StarCraft 2
General
Weekly Cups (Sept 1-7): MaxPax rebounds & Clem saga continues #1: Maru - Greatest Players of All Time SpeCial on The Tasteless Podcast Team Liquid Map Contest #21 - Presented by Monster Energy What happened to Singapore/Brazil servers?
Tourneys
WardiTV Mondays 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
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] Ro16 Preview Pt1: Ascent FlaSh on ACS Winners being in ASL ASL20 General Discussion BGH Auto Balance -> http://bghmmr.eu/ BSL Polish World Championship 2025 20-21 September
Tourneys
[ASL20] Ro16 Group B BWCL Season 63 Announcement [ASL20] Ro16 Group A [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 General RTS Discussion Thread Warcraft III: The Frozen Throne Nintendo Switch Thread Path of Exile
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
Community
General
The Games Industry And ATVI Things Aren’t Peaceful in Palestine US Politics Mega-thread 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
2024 - 2026 Football Thread Formula 1 Discussion MLB/Baseball 2023 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: 1423 users

Student Game Dev Part 13 - Context menu + enemies

Blogs > Soan
Post a Reply
Soan
Profile Blog Joined August 2010
New Zealand194 Posts
February 21 2014 02:08 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
Part Eleven - Fixing the Physics
Part Twelve - Unproductive


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 creating the context menu, this week I'll be talking about further work on that, and the work I've done on the editor. Saw a few pencil sketches of character concept art from an artist earlier in the week as well, and I liked what he'd done, so with any luck I will have some character art to show off relatively soonish.

Editor Progress
Context menus now feature buttons, all added and removed dynamically, rather than having to edit code every time I want to change it. Right now, the only functionality in the menu is buttons, but given that I've only got about 12 weeks left, that's probably how it will stay. I would like to add other elements, like drop down, check boxes, etc, but that'll possibly be something for the future after I graduate.

Each context menu is created from an initialization file, containing information on what buttons are there, all the related art, heights of the buttons, width of the menu etc. The height is automatically worked out based on the combined height of all the buttons. The display order of the buttons is done by the order they are created in, so if I want to change the order they're displayed in, I just change the order of creation. When I create other elements that can be added to a context menu, I'll probably have to change how this is done. I'll likely just add a sorting value or something to each object, so they can be sorted in order from highest to lowest, or vice versa.

The editor can now also remove existing tiles, which was something I probably should have done just after being able to add tiles, but never got around to implementing it. The next step is to be able to alter the players start position in the level, which is currently hard coded. This will be relatively simple, and I might work on it after I finish writing this blog post!

Basic Enemies
Part of my work in the editor this week was being able to place the basic zombie pirate enemy, which I can now do. They get saved out to file with the rest of the levels information, and are being loaded into the game in the correct positions. They don't do anything, and are using the same temporary art as seen in this video, so I don't have any videos or screenshots this week! Maybe next week I'll have a new editor video to show the context menu and placing enemies etc.

The current plan for the basic enemy in game, is for it to just walk back and forth. They'll be checking the next grid square in front of them to see if there's anything there, either by using a ray cast, or directly checking that position, and if there is, they'll turn around and walk the other direction until they hit a wall or ledge. As for killing the player when they are nearby, I've got a couple thoughts on how to detect that.

One option, is for the zombie pirates bounding box to be wider than necessary. Then when the player enters that area, it is shrunk to a smaller size, the zombie pirate start attacking, and then I do collision detection from there. The other option I'm thinking of involves checking in a radius around the enemy for the player, and if found, start attacking. It's the same end result, but the first one seems like it might be slightly more efficient, as it's making use of existing physics code, whereas the second option requires adding extra code to the zombie pirate to scan the area around it.

One other consideration for player/enemy interaction, is what if they're both attacking? Which one takes priority? Enemies will probably always be attacking if the player is in range, so perhaps the player should take priority and kill the zombie pirate. Unless of course, enemies have a delay between attacks, and the player can only kill them during that delay. I think I like the second option better, as it could make killing enemies slightly more about skill. Instead of just mashing the attack button as you run through zombie pirates, you have to time it for the delay between their attacks.

I also need to think about whether or not the zombie pirates should follow the player when they are close, or simply walk their paths and attack when the player is in the way. During our Artificial Intelligence player we wrote the AI for a game, where the AI units could detect the player and chase them until they player went out of range. I think it would be interesting to implement something similar here. Give all enemy units a sight range, and have them chase the player for as long as the player is in sight range. The grid nature of each level means I could use a path finding algorithm such as Djikstras or A* so that they can jump up and down platforms, before finding their way back to their area. It's probably a bit much to implement before I graduate in May, so I'll probably stick to something simple and just have them go back and forth, but I think I'll definitely look into chasing and path finding for enemies in the future.

What's next?
Over the next week I'll be implementing enemy functionality, their movement and interaction with the human player. I also need to look at some of the in game menu stuff, as currently there's no way to get back from the game to the title screen in order to start a new game, which is functionality I'll probably need in order to conduct play testing in a couple of weeks. I'll also be poking my artists to see what they've come up with and hopefully have some new pretty pictures to show.

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! You can also check out the blog, previous posts, screenshots and videos over at my site.

*****
WarSame
Profile Blog Joined February 2010
Canada1950 Posts
February 21 2014 07:46 GMT
#2
Thanks for these posts.
Can it be I stayed away too long? Did you miss these rhymes while I was gone?
Please log in or register to reply.
Live Events Refresh
Afreeca Starleague
10:00
Ro16 Group B
BeSt vs Alone
Queen vs Bisu
Afreeca ASL 15564
Liquipedia
[ Submit Event ]
Live Streams
Refresh
StarCraft 2
Harstem 254
Lowko193
StarCraft: Brood War
Calm 11437
Sea 10873
Flash 6981
Rain 5260
Jaedong 4006
Shuttle 915
EffOrt 888
Mini 758
Hyuk 554
Pusan 503
[ Show more ]
actioN 359
Soulkey 352
Stork 299
Larva 275
Leta 217
Zeus 203
Barracks 193
sSak 180
Killer 170
ggaemo 140
hero 112
Mind 93
Hyun 75
ToSsGirL 64
Sharp 47
PianO 35
Backho 34
Aegong 24
JYJ18
Terrorterran 17
Bale 16
soO 14
scan(afreeca) 11
Noble 10
Sacsri 9
Shine 9
HiyA 6
Icarus 3
Light 0
Dota 2
Dendi709
BananaSlamJamma438
XcaliburYe237
qojqva52
Counter-Strike
olofmeister1448
shoxiejesuss654
x6flipin469
zeus240
allub73
oskar1
Other Games
singsing1617
B2W.Neo542
crisheroes364
DeMusliM205
Organizations
Other Games
gamesdonequick529
StarCraft: Brood War
UltimateBattle 348
lovetv 146
StarCraft 2
Blizzard YouTube
StarCraft: Brood War
BSLTrovo
sctven
[ Show 11 non-featured ]
StarCraft 2
• AfreecaTV YouTube
• intothetv
• Kozan
• IndyKCrew
• LaughNgamezSOOP
• Migwel
• sooper7s
StarCraft: Brood War
• BSLYoutube
• STPLYoutube
• ZZZeroYoutube
Dota 2
• WagamamaTV406
Upcoming Events
Kung Fu Cup
25m
TaeJa vs Classic
Creator vs SHIN
Rogue vs MaxPax
PiGosaur Monday
12h 25m
Kung Fu Cup
1d
ByuN vs HeRoMaRinE
OSC
1d 4h
OSC
1d 12h
RSL Revival
1d 22h
Cure vs SHIN
Reynor vs Zoun
Kung Fu Cup
2 days
The PondCast
2 days
RSL Revival
2 days
Classic vs TriGGeR
ByuN vs Maru
Online Event
3 days
[ Show More ]
Kung Fu Cup
3 days
BSL Team Wars
3 days
Team Bonyth vs Team Dewalt
BSL Team Wars
3 days
RSL Revival
3 days
Maestros of the Game
4 days
ShoWTimE vs Classic
Clem vs herO
Serral vs Bunny
Reynor vs Zoun
Cosmonarchy
4 days
Bonyth vs Dewalt
[BSL 2025] Weekly
4 days
RSL Revival
4 days
Maestros of the Game
5 days
BSL Team Wars
5 days
Afreeca Starleague
5 days
Snow vs Sharp
Jaedong vs Mini
Sparkling Tuna Cup
6 days
Afreeca Starleague
6 days
Light vs Speed
Larva vs Soma
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
MESA Nomadic Masters Fall
Thunderpick World Champ.
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.