• Log InLog In
  • Register
Liquid`
Team Liquid Liquipedia
EST 03:42
CET 09:42
KST 17:42
  • 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
Intel X Team Liquid Seoul event: Showmatches and Meet the Pros10[ASL20] Finals Preview: Arrival13TL.net Map Contest #21: Voting12[ASL20] Ro4 Preview: Descent11Team TLMC #5: Winners Announced!3
Community News
[BSL21] RO32 Group Stage1Weekly Cups (Oct 26-Nov 2): Liquid, Clem, Solar win; LAN in Philly2Weekly Cups (Oct 20-26): MaxPax, Clem, Creator win62025 RSL Offline Finals Dates + Ticket Sales!10BSL21 Open Qualifiers Week & CONFIRM PARTICIPATION3
StarCraft 2
General
RotterdaM "Serral is the GOAT, and it's not close" TL.net Map Contest #21: Voting RSL S3 Round of 16 [TLCH] Mission 7: Last Stand Weekly Cups (Oct 26-Nov 2): Liquid, Clem, Solar win; LAN in Philly
Tourneys
$5,000+ WardiTV 2025 Championship $3,500 WardiTV Korean Royale S4 WardiTV Mondays Sparkling Tuna Cup - Weekly Open Tournament Monday Nights Weeklies
Strategy
Custom Maps
Map Editor closed ?
External Content
Mutation # 498 Wheel of Misfortune|Cradle of Death Mutation # 497 Battle Haredened Mutation # 496 Endless Infection Mutation # 495 Rest In Peace
Brood War
General
SnOw's ASL S20 Finals Review [ASL20] Ask the mapmakers — Drop your questions [BSL21] RO32 Group Stage BGH Auto Balance -> http://bghmmr.eu/ RSL S3 ro16
Tourneys
BSL21 Open Qualifiers Week & CONFIRM PARTICIPATION [ASL20] Grand Finals Small VOD Thread 2.0 The Casual Games of the Week Thread
Strategy
Current Meta How to stay on top of macro? PvZ map balance Soma's 9 hatch build from ASL Game 2
Other Games
General Games
Nintendo Switch Thread Dawn of War IV Stormgate/Frost Giant Megathread ZeroSpace Megathread General RTS Discussion Thread
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
Deck construction bug Heroes of StarCraft mini-set
TL Mafia
TL Mafia Community Thread SPIRED by.ASL Mafia {211640}
Community
General
US Politics Mega-thread Russo-Ukrainian War Thread Things Aren’t Peaceful in Palestine Dating: How's your luck? Canadian Politics Mega-thread
Fan Clubs
White-Ra Fan Club The herO Fan Club!
Media & Entertainment
Anime Discussion Thread [Manga] One Piece Movie Discussion! Korean Music Discussion Series you have seen recently...
Sports
2024 - 2026 Football Thread MLB/Baseball 2023 TeamLiquid Health and Fitness Initiative For 2023 Formula 1 Discussion
World Cup 2022
Tech Support
SC2 Client Relocalization [Change SC2 Language] Linksys AE2500 USB WIFI keeps disconnecting Computer Build, Upgrade & Buying Resource Thread
TL Community
The Automated Ban List Recent Gifted Posts
Blogs
Why we need SC3
Hildegard
Career Paths and Skills for …
TrAiDoS
Reality "theory" prov…
perfectspheres
Our Last Hope in th…
KrillinFromwales
Customize Sidebar...

Website Feedback

Closed Threads



Active: 1662 users

Game making progress

Blogs > shannn
Post a Reply
shannn
Profile Blog Joined May 2010
Netherlands2891 Posts
February 03 2012 15:51 GMT
#1
Hello to everyone reading, this is going to be an update on my previous blog (here).

After spending about 24 hours the past 30 hours on my game making skills I finally managed to do it!

I got my characters to animate movements and attack on my iPhone, calculate the damage and show it on an enemy which also will flicker to show it's receiving damage :D

All of the above basically gets triggered when you choose to do a physical attack on an enemy.
So it's basically just 1 turn (WTF I know xD).

The hardest part was to actually show that my characters were doing something.
Now an artist can basically fill my placeholders and the result should be clear on screen right away without editing anything (maybe the time for each little animation).

Right now I have 12 image placeholders in a sprite sheet which has a character moving to the left, right, attacking, cast magic, use an item.

What's left now is a magic attack animation when choosing the option Magic and an animation for using an item on themselves/party.

If I can do that then I basically have my battle system complete and I can go on to make my levels and an artist can make my characters with their animations without interfering with each other.

I'm so relieved I managed to get it to work. It felt like trying to destroy a wall by smashing your head against the wall :d :p

*
http://www.teamliquid.net/forum/viewpost.php?post_id=6321864 Epic post.
MrShankly
Profile Blog Joined October 2009
United Kingdom371 Posts
February 03 2012 16:27 GMT
#2
AH congrats :D. I am doing game development at university and Iphone dev is bar FAR my favourite so far!!!
Also how did you improve the performance from the 30-60 if you don't mind me asking? I did alot of research into speeding up iphone 2D gfx just for my own....i guess you could say enjoyment, but i'm always eager to learn more :D!


At the moment i am trying to work on accelerating model skinning on the iphone CPU!
DONATE SC2 BETA KEY TO ME PLEASE
shannn
Profile Blog Joined May 2010
Netherlands2891 Posts
February 03 2012 17:01 GMT
#3
On February 04 2012 01:27 MrShankly wrote:
AH congrats :D. I am doing game development at university and Iphone dev is bar FAR my favourite so far!!!
Also how did you improve the performance from the 30-60 if you don't mind me asking? I did alot of research into speeding up iphone 2D gfx just for my own....i guess you could say enjoyment, but i'm always eager to learn more :D!


At the moment i am trying to work on accelerating model skinning on the iphone CPU!

Hey man.
One of the things I noticed in my previous game is that I stacked a lot of objects on the stack unnecessary (thank god for my Algorithms and Datastructures book I read) and doing a lot of calls on Open GL (didn't use sprite sheets before :p) and a few design patterns which I didn't use in the other game.

I came across this when I was profiling my project. Profiling helps a lot I tell ya :D It really helps with looking where to optimize your code.
http://www.teamliquid.net/forum/viewpost.php?post_id=6321864 Epic post.
MrShankly
Profile Blog Joined October 2009
United Kingdom371 Posts
February 03 2012 17:58 GMT
#4
Ye the thing that sped up my program the most was combining all of the vertices into a massive interleaved array and submitting that to OpenGL using spritesheets aswell, also using static vbo's for static geometry helped a TON aswell.

At the moment i'm doing NEON stuff, which is a vector processor thing that allows you to do some calculations in parallel using assembly, so just trying to get my head round that.

I keep meaning to read an Algorithms and Data structures book, but havent yet... . Are you using the build in Instruments profiler to use your code? I couldn't find a section that tells you how many ms a function takes to run on average. Just a percentage of how much time is spent in a certain function which isn't as useful when you want to know how much faster a function has gotten!

I take it you are not using objective C?

DONATE SC2 BETA KEY TO ME PLEASE
shannn
Profile Blog Joined May 2010
Netherlands2891 Posts
February 03 2012 22:03 GMT
#5
On February 04 2012 02:58 MrShankly wrote:
Ye the thing that sped up my program the most was combining all of the vertices into a massive interleaved array and submitting that to OpenGL using spritesheets aswell, also using static vbo's for static geometry helped a TON aswell.

At the moment i'm doing NEON stuff, which is a vector processor thing that allows you to do some calculations in parallel using assembly, so just trying to get my head round that.

I keep meaning to read an Algorithms and Data structures book, but havent yet... . Are you using the build in Instruments profiler to use your code? I couldn't find a section that tells you how many ms a function takes to run on average. Just a percentage of how much time is spent in a certain function which isn't as useful when you want to know how much faster a function has gotten!

I take it you are not using objective C?


I had to look some stuff up to understand a bit what you just said there with the NEON stuff :p

And I am using the build in profiler ya. I actually log everything with a timestamp in each method with a timestamp and that way to tell the difference of how long it takes each method. I use the profiler mainly to check methods where I spent most time at and then start optimizing from there.

I don't think there is a function (I think I tried finding as well some while ago) that measures the time it takes for each method (unless I'm blind which does happen sometimes LOL).

I am programming in Objective-C I might go c++ which is more handy for multiple platforms (but not right now).
http://www.teamliquid.net/forum/viewpost.php?post_id=6321864 Epic post.
MrShankly
Profile Blog Joined October 2009
United Kingdom371 Posts
February 03 2012 22:34 GMT
#6
Ah ok, i was already more familiar with C++ syntax, so ive been making my games in C++, i cant stand the obj C syntax .

I use some Objective-C stuff though.... you can mix both in the same file, but it just kinda looks ugly at times so i try not to. The NSString class is just awesome !
DONATE SC2 BETA KEY TO ME PLEASE
Please log in or register to reply.
Live Events Refresh
PiGosaur Monday
01:00
#56
Liquipedia
[ Submit Event ]
Live Streams
Refresh
StarCraft 2
ProTech137
StarCraft: Brood War
Rain 9204
Bisu 600
Pusan 411
Stork 276
Tasteless 264
Leta 131
ToSsGirL 84
Barracks 65
zelot 38
Aegong 36
[ Show more ]
JulyZerg 22
Sharp 10
League of Legends
Reynor61
Counter-Strike
m0e_tv210
Super Smash Bros
Mew2King84
Other Games
summit1g10899
WinterStarcraft435
ceh9324
C9.Mang0201
XaKoH 121
SortOf57
Organizations
Other Games
gamesdonequick656
Counter-Strike
PGL110
StarCraft: Brood War
lovetv 9
StarCraft 2
Blizzard YouTube
StarCraft: Brood War
BSLTrovo
sctven
[ Show 14 non-featured ]
StarCraft 2
• Berry_CruncH158
• LUISG 24
• AfreecaTV YouTube
• intothetv
• Kozan
• IndyKCrew
• LaughNgamezSOOP
• Migwel
• sooper7s
StarCraft: Brood War
• BSLYoutube
• STPLYoutube
• ZZZeroYoutube
League of Legends
• Lourlo1390
• Stunt727
Upcoming Events
Replay Cast
18m
WardiTV Korean Royale
3h 18m
LAN Event
6h 18m
OSC
14h 18m
The PondCast
1d 1h
LAN Event
1d 6h
Replay Cast
1d 14h
LAN Event
2 days
Korean StarCraft League
2 days
CranKy Ducklings
3 days
[ Show More ]
WardiTV Korean Royale
3 days
LAN Event
3 days
IPSL
3 days
dxtr13 vs OldBoy
Napoleon vs Doodle
Replay Cast
3 days
Sparkling Tuna Cup
4 days
WardiTV Korean Royale
4 days
LAN Event
4 days
IPSL
4 days
JDConan vs WIZARD
WolFix vs Cross
Replay Cast
5 days
Wardi Open
5 days
WardiTV Korean Royale
6 days
Liquipedia Results

Completed

BSL 21 Points
SC4ALL: StarCraft II
Eternal Conflict S1

Ongoing

C-Race Season 1
IPSL Winter 2025-26
KCM Race Survival 2025 Season 4
SOOP Univ League 2025
YSL S2
IEM Chengdu 2025
PGL Masters Bucharest 2025
Thunderpick World Champ.
CS Asia Championships 2025
ESL Pro League S22
StarSeries Fall 2025
FISSURE Playground #2
BLAST Open Fall 2025
BLAST Open Fall Qual
Esports World Cup 2025

Upcoming

BSL Season 21
SLON Tour Season 2
BSL 21 Non-Korean Championship
Acropolis #4
HSC XXVIII
RSL Offline Finals
WardiTV 2025
RSL Revival: Season 3
Stellar Fest
META Madness #9
BLAST Bounty Winter 2026: Closed Qualifier
eXTREMESLAND 2025
ESL Impact League Season 8
SL Budapest Major 2025
BLAST Rivals 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.