Skip to content

Commit e5c73e9

Browse files
committed
give unique names to all portraits so that portrait name can be used to identify sprite position
1 parent 5e57141 commit e5c73e9

File tree

1 file changed

+14
-25
lines changed

1 file changed

+14
-25
lines changed

lib/bnet_scraper/starcraft2.rb

Lines changed: 14 additions & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -31,50 +31,39 @@ module Starcraft2
3131
# 6x6 grid. We'll simply use the portrait names, left to right, top to
3232
# bottom.
3333
#
34-
# Note: I couldn't identify the exact names of some of these and instead of
35-
# guessing, I didn't name them. Some appear in multiple files too, which
36-
# is odd.
34+
# Some names found from http://starcraft.wikia.com/wiki/Portraits
35+
#
36+
# All the portraits must have unique names, so that someone who
37+
# has only the name can reverse this list to get the portrait
38+
# coordinates.
3739
#
38-
# I decided th pad the arrays even if there are no images to make various
39-
# helping functionality (e.g. retrieving position for a name) easier.
40-
# I've also kept them in 6x6 here for better overview.
4140
PORTRAITS = [
4241
# http://eu.battle.net/sc2/static/local-common/images/sc2/portraits/0-75.jpg?v42
4342
['Kachinsky', 'Cade', 'Thatcher', 'Hall', 'Tiger Marine', 'Panda Marine',
4443
'General Warfield', 'Jim Raynor', 'Arcturus Mengsk', 'Sarah Kerrigan', 'Kate Lockwell', 'Rory Swann',
4544
'Egon Stetmann', 'Hill', 'Adjutant', 'Dr. Ariel Hanson', 'Gabriel Tosh', 'Matt Horner',
46-
# Could not identify in order: Raynor in a Suit? Bullmarine? Nova?
47-
# Fiery Marine?
48-
'Tychus Findlay', 'Zeratul', 'Valerian Mengsk', 'Spectre', '?', '?',
49-
'?', '?', 'SCV', 'Firebat', 'Vulture', 'Hellion',
45+
'Tychus Findlay', 'Zeratul', 'Valerian Mengsk', 'Spectre', 'Jim Raynor Marine', 'Tauren Marine',
46+
'Night Elf Banshee', 'Diablo Marine', 'SCV', 'Firebat', 'Vulture', 'Hellion',
5047
'Medic', 'Spartan Company', 'Wraith', 'Diamondback', 'Probe', 'Scout'],
5148

5249
# http://eu.battle.net/sc2/static/local-common/images/sc2/portraits/1-75.jpg?v42
53-
# Special Rewards - couldn't identify most of these.
54-
['?', '?', '?', '?', '?', 'PanTerran Marine',
55-
'?', '?', '?', '?', '', '',
56-
'', '', '', '', '', '',
57-
'', '', '', '', '', '',
58-
'', '', '', '', '', '',
59-
'', '', '', '', '', ''],
50+
['Korea Tauren Marine', 'Korea Night Elf Banshee', 'Korea Diablo Marine', 'Korea Worgen Marine', 'Korea Goblin Marine', 'PanTerran Marine',
51+
'Wizard Templar', 'Tyrael Marine', 'Witch Doctor Zergling', 'Unknown1', 'Night Elf Templar', 'Infested Orc'] +
52+
(2..25).collect{|x| "Unknown#{x}"},
6053

6154
# http://eu.battle.net/sc2/static/local-common/images/sc2/portraits/2-75.jpg?v42
6255
['Ghost', 'Thor', 'Battlecruiser', 'Nova', 'Zealot', 'Stalker',
6356
'Phoenix', 'Immortal', 'Void Ray', 'Colossus', 'Carrier', 'Tassadar',
6457
'Reaper', 'Sentry', 'Overseer', 'Viking', 'High Templar', 'Mutalisk',
65-
# Unidentified: Bird? Dog? Robot?
66-
'Banshee', 'Hybrid Destroyer', 'Dark Voice', '?', '?', '?',
67-
# Unidentified: Worgen? Goblin? Chef?
68-
'Orian', 'Wolf Marine', 'Murloc Marine', '?', '?', 'Zealot Chef',
69-
# Unidentified: KISS Marine? Dragon Marine? Dragon? Another Raynor?
70-
'Stank', 'Ornatus', '?', '?', '?', '?'],
58+
'Banshee', 'Hybrid Destroyer', 'Dark Voice', 'Unknown26', 'Unknown27', 'Unknown28',
59+
'Orian', 'Wolf Marine', 'Murloc Marine', 'Unknown29', 'Unknown30', 'Zealot Chef',
60+
'Stank', 'Ornatus', 'China Facebook Corps Members', 'China Lion Marines', 'China Dragons', 'Korea Raynor Marine'],
7161

7262
# http://eu.battle.net/sc2/static/local-common/images/sc2/portraits/3-75.jpg?v42
7363
['Urun', 'Nyon', 'Executor', 'Mohandar', 'Selendis', 'Artanis',
7464
'Drone', 'Infested Colonist', 'Infested Marine', 'Corruptor', 'Aberration', 'Broodlord',
7565
'Overmind', 'Leviathan', 'Overlord', 'Hydralisk Marine', "Zer'atai Dark Templar", 'Goliath',
76-
# Unidentified: Satan Marine?
77-
'Lenassa Dark Templar', 'Mira Han', 'Archon', 'Hybrid Reaver', 'Predator', '?',
66+
'Lenassa Dark Templar', 'Mira Han', 'Archon', 'Hybrid Reaver', 'Predator', 'Unknown29',
7867
'Zergling', 'Roach', 'Baneling', 'Hydralisk', 'Queen', 'Infestor',
7968
'Ultralisk', 'Queen of Blades', 'Marine', 'Marauder', 'Medivac', 'Siege Tank']
8069
]

0 commit comments

Comments
 (0)