updatet items from halloween update

This commit is contained in:
Nick Loose 2010-11-02 14:41:56 +01:00
parent a80b393d5a
commit 2fede2ecc6
5 changed files with 49 additions and 9 deletions

34
.gitignore vendored
View File

@ -1,4 +1,34 @@
build
# Mac OS X Finder and whatnot
.DS_Store
# Sparkle distribution Private Key (Don't check me in!)
dsa_priv.pem
# XCode (and ancestors) per-user config (very noisy, and not relevant)
*.mode1
*.mode1v3
*.mode2v3
*.perspective
*.perspectivev3
*.pbxuser
tmp
# Generated files
VersionX-revision.h
# build products
build/
*.[oa]
# Other source repository archive directories (protects when importing)
.hg
.svn
CVS
# automatic backup files
*~.nib
*.swp
*~
*(Autosaved).rtfd/
Backup[ ]of[ ]*.pages/
Backup[ ]of[ ]*.key/
Backup[ ]of[ ]*.numbers/

View File

@ -65,7 +65,7 @@
int index = 0;
if (itemId <= 85)
if (itemId <= 91)
{
if (itemId <= 20)
index = itemId - 1; // first item is 1
@ -75,7 +75,7 @@
index = itemId - (37 - 21);
atlasOffset = NSMakePoint(36, 75);
}
else if (itemId >= 256 && itemId <= 346)
else if (itemId >= 256 && itemId <= 350)
{
index = itemId - 256;
atlasOffset = NSMakePoint(445, 23+52);
@ -83,25 +83,25 @@
else if (itemId == 2256)
{
index = 0;
atlasOffset = NSMakePoint(445+pixelsPerColumn + 4, 23+52 + 10 * pixelsPerRow);
atlasOffset = NSMakePoint(445+pixelsPerColumn + 147, 23+52 + 10 * pixelsPerRow);
}
else if (itemId == 2257)
{
index = 0;
atlasOffset = NSMakePoint(445+pixelsPerColumn + 49, 23+52 + 10 * pixelsPerRow);
atlasOffset = NSMakePoint(445+pixelsPerColumn + 192, 23+52 + 10 * pixelsPerRow);
}
else
{
NSLog(@"%s error: unrecognized item id %d", __PRETTY_FUNCTION__, itemId);
return nil;
}
atlasOffset.x += pixelsPerColumn * (index % itemsPerRow);
atlasOffset.y += pixelsPerRow * (index / itemsPerRow);
NSRect atlasRect = NSMakeRect(atlasOffset.x, atlasOffset.y, itemImageSize.width, itemImageSize.height);
NSImage *atlas = [NSImage imageNamed:@"DataValuesV110Transparent.png"];
NSImage *output = [[NSImage alloc] initWithSize:itemImageSize];

Binary file not shown.

Before

Width:  |  Height:  |  Size: 82 KiB

After

Width:  |  Height:  |  Size: 70 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 71 KiB

After

Width:  |  Height:  |  Size: 200 KiB

View File

@ -68,6 +68,12 @@
83,Reed
84,Jukebox
85,Fence
86,Pumpkin
87,Hellstone
88,Slow Sand
89,Lightstone Ore
90,Portal
91,Jack-O-Lantern
256,Iron Spade
257,Iron Pickaxe
258,Iron Axe
@ -159,5 +165,9 @@
344,Egg
345,Compass
346,Fishing Rod
347,Watch
348,Lightstone Dust
349,Raw Fish
350,Cooked Fish
2256,Gold Record
2257,Green Record
2257,Green Record
1 1 Stone
68 83 Reed
69 84 Jukebox
70 85 Fence
71 86 Pumpkin
72 87 Hellstone
73 88 Slow Sand
74 89 Lightstone Ore
75 90 Portal
76 91 Jack-O-Lantern
77 256 Iron Spade
78 257 Iron Pickaxe
79 258 Iron Axe
165 344 Egg
166 345 Compass
167 346 Fishing Rod
168 347 Watch
169 348 Lightstone Dust
170 349 Raw Fish
171 350 Cooked Fish
172 2256 Gold Record
173 2257 Green Record