]> git.saurik.com Git - winterboard.git/blobdiff - Library.mm
Fixed a stupid UIImages bug.
[winterboard.git] / Library.mm
index 45deecce91eb87aae58eb63419550c6c1096e503..244c0d38594c6958c503451476290cde2a361695 100644 (file)
 #define _trace() NSLog(@"WB:_trace(%u)", __LINE__);
 #define _transient
 
-#include <objc/runtime.h>
-#include <objc/message.h>
-
-extern "C" {
-    #include <mach-o/nlist.h>
-}
-
+#import <CoreFoundation/CoreFoundation.h>
 #import <Foundation/Foundation.h>
 #import <CoreGraphics/CoreGraphics.h>
 
+#include <substrate.h>
+
 #import <UIKit/UIColor.h>
 #import <UIKit/UIFont.h>
 #import <UIKit/UIImage.h>
 #import <UIKit/UIImageView.h>
+#import <UIKit/UINavigationBar.h>
 #import <UIKit/UINavigationBarBackground.h>
+#import <UIKit/UIToolbar.h>
 #import <UIKit/UIWebDocumentView.h>
 
 #import <UIKit/NSString-UIStringDrawing.h>
@@ -67,15 +65,27 @@ extern "C" {
 #import <SpringBoard/SBApplication.h>
 #import <SpringBoard/SBApplicationIcon.h>
 #import <SpringBoard/SBAppWindow.h>
+#import <SpringBoard/SBBookmarkIcon.h>
 #import <SpringBoard/SBButtonBar.h>
+#import <SpringBoard/SBCalendarIconContentsView.h>
 #import <SpringBoard/SBContentLayer.h>
+#import <SpringBoard/SBIconController.h>
 #import <SpringBoard/SBIconLabel.h>
+#import <SpringBoard/SBSlidingAlertDisplay.h>
 #import <SpringBoard/SBStatusBarContentsView.h>
+#import <SpringBoard/SBStatusBarController.h>
 #import <SpringBoard/SBStatusBarTimeView.h>
 #import <SpringBoard/SBUIController.h>
 
+#import <MediaPlayer/MPVideoView.h>
+#import <MediaPlayer/MPVideoView-PlaybackControl.h>
+
 #import <CoreGraphics/CGGeometry.h>
 
+extern "C" void __clear_cache (char *beg, char *end);
+
+Class $MPVideoView;
+
 @interface NSDictionary (WinterBoard)
 - (UIColor *) colorForKey:(NSString *)key;
 - (BOOL) boolForKey:(NSString *)key;
@@ -94,7 +104,7 @@ extern "C" {
 - (BOOL) boolForKey:(NSString *)key {
     if (NSString *value = [self objectForKey:key])
         return [value boolValue];
-    return NO;
+    return false;
 }
 
 @end
@@ -102,262 +112,462 @@ extern "C" {
 bool Debug_ = false;
 bool Engineer_ = false;
 
-/* WinterBoard Backend {{{ */
-#define WBPrefix "wb_"
+@protocol WinterBoard
+- (NSString *) wb$localizedStringForKey:(NSString *)key value:(NSString *)value table:(NSString *)table;
+- (id) wb$initWithBadge:(id)badge;
+- (void) wb$cacheImageForIcon:(SBIcon *)icon;
+- (UIImage *) wb$getCachedImagedForIcon:(SBIcon *)icon;
+- (CGSize) wb$renderedSizeOfNode:(id)node constrainedToWidth:(float)width;
+- (void *) _node;
+- (void) wb$updateDesktopImage:(UIImage *)image;
+- (UIImage *) wb$defaultDesktopImage;
+- (NSString *) wb$pathForIcon;
+- (NSString *) wb$pathForResource:(NSString *)resource ofType:(NSString *)type;
+- (id) wb$init;
+- (id) wb$layer;
+- (id) wb$initWithSize:(CGSize)size;
+- (id) wb$initWithSize:(CGSize)size label:(NSString *)label;
+- (id) wb$initWithFrame:(CGRect)frame;
+- (id) wb$initWithCoder:(NSCoder *)coder;
+- (void) wb$setFrame:(CGRect)frame;
+- (void) wb$drawRect:(CGRect)rect;
+- (void) wb$setBackgroundColor:(id)color;
+- (void) wb$setAlpha:(float)value;
+- (void) wb$setBarStyle:(int)style;
+- (id) wb$initWithFrame:(CGRect)frame withBarStyle:(int)style withTintColor:(UIColor *)color;
+- (void) wb$setOpaque:(BOOL)opaque;
+- (void) wb$setInDock:(BOOL)docked;
+- (void) wb$didMoveToSuperview;
++ (UIImage *) wb$imageNamed:(NSString *)name inBundle:(NSBundle *)bundle;
++ (UIImage *) wb$applicationImageNamed:(NSString *)name;
+- (NSDictionary *) wb$infoDictionary;
+- (UIImage *) wb$icon;
+- (void) wb$appendIconList:(SBIconList *)list;
+- (id) wb$initWithStatusBar:(id)bar mode:(int)mode;
+- (id) wb$initWithMode:(int)mode orientation:(int)orientation;
+- (id) wb$imageAtPath:(NSString *)path;
+- (id) wb$initWithContentsOfFile:(NSString *)file;
+- (id) wb$initWithContentsOfFile:(NSString *)file cache:(BOOL)cache;
+- (void) wb$setStatusBarMode:(int)mode orientation:(int)orientation duration:(float)duration fenceID:(int)id animation:(int)animation;
+@end
 
-void WBInject(const char *classname, const char *oldname, IMP newimp, const char *type) {
-    Class _class = objc_getClass(classname);
-    if (_class == nil)
-        return;
-    if (!class_addMethod(_class, sel_registerName(oldname), newimp, type))
-        NSLog(@"WB:Error: failed to inject [%s %s]", classname, oldname);
-}
+static NSMutableDictionary *UIImages_;
+static NSMutableDictionary *PathImages_;
 
-void WBRename(bool instance, const char *classname, const char *oldname, IMP newimp) {
-    Class _class = objc_getClass(classname);
-    if (_class == nil) {
-        if (Debug_)
-            NSLog(@"WB:Warning: cannot find class [%s]", classname);
-        return;
-    }
-    if (!instance)
-        _class = object_getClass(_class);
-    Method method = class_getInstanceMethod(_class, sel_getUid(oldname));
-    if (method == nil) {
-        if (Debug_)
-            NSLog(@"WB:Warning: cannot find method [%s %s]", classname, oldname);
-        return;
-    }
-    size_t namelen = strlen(oldname);
-    char newname[sizeof(WBPrefix) + namelen];
-    memcpy(newname, WBPrefix, sizeof(WBPrefix) - 1);
-    memcpy(newname + sizeof(WBPrefix) - 1, oldname, namelen + 1);
-    const char *type = method_getTypeEncoding(method);
-    if (!class_addMethod(_class, sel_registerName(newname), method_getImplementation(method), type))
-        NSLog(@"WB:Error: failed to rename [%s %s]", classname, oldname);
-    unsigned int count;
-    Method *methods = class_copyMethodList(_class, &count);
-    for (unsigned int index(0); index != count; ++index)
-        if (methods[index] == method)
-            goto found;
-    if (newimp != NULL)
-        if (!class_addMethod(_class, sel_getUid(oldname), newimp, type))
-            NSLog(@"WB:Error: failed to rename [%s %s]", classname, oldname);
-    goto done;
-  found:
-    if (newimp != NULL)
-        method_setImplementation(method, newimp);
-  done:
-    free(methods);
-}
-/* }}} */
+static NSFileManager *Manager_;
+static NSDictionary *English_;
+static NSMutableDictionary *Info_;
+static NSMutableArray *themes_;
 
-@protocol WinterBoard
-- (NSString *) wb_pathForIcon;
-- (NSString *) wb_pathForResource:(NSString *)resource ofType:(NSString *)type;
-- (id) wb_init;
-- (id) wb_layer;
-- (id) wb_initWithSize:(CGSize)size;
-- (id) wb_initWithSize:(CGSize)size label:(NSString *)label;
-- (id) wb_initWithFrame:(CGRect)frame;
-- (id) wb_initWithCoder:(NSCoder *)coder;
-- (void) wb_setFrame:(CGRect)frame;
-- (void) wb_drawRect:(CGRect)rect;
-- (void) wb_setBackgroundColor:(id)color;
-- (void) wb_setAlpha:(float)value;
-- (void) wb_setBarStyle:(int)style;
-- (id) wb_initWithFrame:(CGRect)frame withBarStyle:(int)style withTintColor:(UIColor *)color;
-- (void) wb_setOpaque:(BOOL)opaque;
-- (void) wb_setInDock:(BOOL)docked;
-- (void) wb_didMoveToSuperview;
-+ (UIImage *) wb_imageNamed:(NSString *)name inBundle:(NSBundle *)bundle;
-- (NSDictionary *) wb_infoDictionary;
-- (UIImage *) wb_icon;
-@end
+static NSString *$getTheme$(NSArray *files) {
+    if (Debug_)
+        NSLog(@"WB:Debug: %@", [files description]);
 
-NSMutableDictionary **ImageMap_;
+    for (NSString *theme in themes_)
+        for (NSString *file in files) {
+            NSString *path([NSString stringWithFormat:@"%@/%@", theme, file]);
+            if ([Manager_ fileExistsAtPath:path])
+                return path;
+        }
 
-NSFileManager *Manager_;
-NSDictionary *English_;
-NSDictionary *Info_;
-NSString *theme_;
+    return nil;
+}
 
-NSString *$pathForIcon$(SBApplication<WinterBoard> *self) {
+static NSString *$pathForIcon$(SBApplication<WinterBoard> *self) {
     NSString *identifier = [self bundleIdentifier];
+    NSString *path = [self path];
+    NSString *folder = [path lastPathComponent];
+    NSString *dname = [self displayName];
+    NSString *didentifier = [self displayIdentifier];
 
-    #define testForIcon(Name) \
-        if (NSString *name = Name) { \
-            NSString *path = [NSString stringWithFormat:@"%@/Icons/%@.png", theme_, name]; \
-            if ([Manager_ fileExistsAtPath:path]) \
-                return path; \
-        }
+    if (Debug_)
+        NSLog(@"WB:Debug: [SBApplication(%@:%@:%@:%@) pathForIcon]", identifier, folder, dname, didentifier);
 
-    if (identifier != nil) {
-        NSString *path = [NSString stringWithFormat:@"%@/Bundles/%@/icon.png", theme_, identifier];
-        if ([Manager_ fileExistsAtPath:path])
-            return path;
-    }
+    NSMutableArray *names = [NSMutableArray arrayWithCapacity:8];
 
-    if (NSString *folder = [[self path] lastPathComponent]) {
-        NSString *path = [NSString stringWithFormat:@"%@/Folders/%@/icon.png", theme_, folder];
-        if ([Manager_ fileExistsAtPath:path])
-            return path;
-    }
+    if (identifier != nil)
+        [names addObject:[NSString stringWithFormat:@"Bundles/%@/icon.png", identifier]];
+    if (folder != nil)
+        [names addObject:[NSString stringWithFormat:@"Folders/%@/icon.png", folder]];
+
+    #define testForIcon(Name) \
+        if (NSString *name = Name) \
+            [names addObject:[NSString stringWithFormat:@"Icons/%@.png", name]];
 
     testForIcon(identifier);
-    testForIcon([self displayName]);
+    testForIcon(dname);
 
-    if (NSString *display = [self displayIdentifier])
-        testForIcon([English_ objectForKey:display]);
+    if (didentifier != nil) {
+        testForIcon([English_ objectForKey:didentifier]);
 
-    return nil;
-}
+        NSArray *parts = [didentifier componentsSeparatedByString:@"-"];
+        if ([parts count] != 1)
+            if (NSDictionary *english = [[[NSDictionary alloc] initWithContentsOfFile:[path stringByAppendingString:@"/English.lproj/UIRoleDisplayNames.strings"]] autorelease])
+                testForIcon([english objectForKey:[parts lastObject]]);
+    }
 
-static UIImage *SBApplicationIcon$icon(SBApplicationIcon<WinterBoard> *self, SEL sel) {
-    if (Info_ == nil || ![Info_ boolForKey:@"ComposeStoreIcons"])
-        if (NSString *path = $pathForIcon$([self application]))
-            return [UIImage imageWithContentsOfFile:path];
-    return [self wb_icon];
+    if (NSString *path = $getTheme$(names))
+        return path;
+    return nil;
 }
 
-static NSString *SBApplication$pathForIcon(SBApplication<WinterBoard> *self, SEL sel) {
-    if (theme_ != nil)
-        if (NSString *path = $pathForIcon$(self))
-            return path;
+static NSMutableDictionary *Cache_;
 
-    return [self wb_pathForIcon];
-}
+static void SBIconModel$cacheImageForIcon$(SBIconModel<WinterBoard> *self, SEL sel, SBIcon *icon) {
+    [self wb$cacheImageForIcon:icon];
+    NSString *key([icon displayIdentifier]);
 
-static NSString *$pathForFile$inBundle$(NSString *file, NSBundle *bundle) {
-    if (theme_ != nil) {
-        NSString *identifier = [bundle bundleIdentifier];
+    if (UIImage *image = [icon icon]) {
+        CGColorSpaceRef space(CGColorSpaceCreateDeviceRGB());
+        CGRect rect = {CGPointMake(1, 1), [image size]};
+        CGSize size = {rect.size.width + 2, rect.size.height + 2};
 
-        if (identifier != nil) {
-            NSString *path = [NSString stringWithFormat:@"%@/Bundles/%@/%@", theme_, identifier, file];
-            if ([Manager_ fileExistsAtPath:path])
-                return path;
-        }
+        CGContextRef context(CGBitmapContextCreate(NULL, size.width, size.height, 8, 4 * size.width, space, kCGBitmapByteOrder32Little | kCGImageAlphaPremultipliedFirst));
+        CGColorSpaceRelease(space);
 
-        if (NSString *folder = [[bundle bundlePath] lastPathComponent]) {
-            NSString *path = [NSString stringWithFormat:@"%@/Folders/%@/%@", theme_, folder, file];
-            if ([Manager_ fileExistsAtPath:path])
-                return path;
-        }
+        CGContextDrawImage(context, rect, [image CGImage]);
+        CGImageRef ref(CGBitmapContextCreateImage(context));
+        CGContextRelease(context);
 
-        #define remapResourceName(oldname, newname) \
-            else if ([file isEqualToString:oldname]) { \
-                NSString *path = [NSString stringWithFormat:@"%@/%@.png", theme_, newname]; \
-                if ([Manager_ fileExistsAtPath:path]) \
-                    return path; \
-            }
+        UIImage *image([UIImage imageWithCGImage:ref]);
+        CGImageRelease(ref);
 
-        if (identifier == nil || ![identifier isEqualToString:@"com.apple.springboard"]);
-            remapResourceName(@"FSO_BG.png", @"StatusBar")
-            remapResourceName(@"SBDockBG.png", @"Dock")
-            remapResourceName(@"SBWeatherCelsius.png", @"Icons/Weather")
+        [Cache_ setObject:image forKey:key];
     }
+}
+
+static UIImage *SBIconModel$getCachedImagedForIcon$(SBIconModel<WinterBoard> *self, SEL sel, SBIcon *icon) {
+    NSString *key([icon displayIdentifier]);
+    if (UIImage *image = [Cache_ objectForKey:key])
+        return image;
+    else
+        return [self wb$getCachedImagedForIcon:icon];
+}
+
+static UIImage *SBApplicationIcon$icon(SBApplicationIcon<WinterBoard> *self, SEL sel) {
+    if (![Info_ boolForKey:@"ComposeStoreIcons"])
+        if (NSString *path = $pathForIcon$([self application]))
+            return [UIImage imageWithContentsOfFile:path];
+    return [self wb$icon];
+}
+
+static UIImage *SBBookmarkIcon$icon(SBBookmarkIcon<WinterBoard> *self, SEL sel) {
+    if (Debug_)
+        NSLog(@"WB:Debug:Bookmark(%@:%@)", [self displayIdentifier], [self displayName]);
+    if (NSString *path = $getTheme$([NSArray arrayWithObject:[NSString stringWithFormat:@"Icons/%@.png", [self displayName]]]))
+        return [UIImage imageWithContentsOfFile:path];
+    return [self wb$icon];
+}
 
+static NSString *SBApplication$pathForIcon(SBApplication<WinterBoard> *self, SEL sel) {
+    if (NSString *path = $pathForIcon$(self))
+        return path;
+    return [self wb$pathForIcon];
+}
+
+static NSString *$pathForFile$inBundle$(NSString *file, NSBundle<WinterBoard> *bundle, bool ui) {
+    NSString *identifier = [bundle bundleIdentifier];
+    NSMutableArray *names = [NSMutableArray arrayWithCapacity:8];
+
+    if (identifier != nil)
+        [names addObject:[NSString stringWithFormat:@"Bundles/%@/%@", identifier, file]];
+    if (NSString *folder = [[bundle bundlePath] lastPathComponent])
+        [names addObject:[NSString stringWithFormat:@"Folders/%@/%@", folder, file]];
+    if (ui)
+        [names addObject:[NSString stringWithFormat:@"UIImages/%@", file]];
+
+    #define remapResourceName(oldname, newname) \
+        else if ([file isEqualToString:oldname]) \
+            [names addObject:[NSString stringWithFormat:@"%@.png", newname]]; \
+
+    if (identifier == nil);
+    else if ([identifier isEqualToString:@"com.apple.calculator"])
+        [names addObject:[NSString stringWithFormat:@"Files/Applications/Calculator.app/%@", file]];
+    else if (![identifier isEqualToString:@"com.apple.springboard"]);
+        remapResourceName(@"FSO_BG.png", @"StatusBar")
+        remapResourceName(@"SBDockBG.png", @"Dock")
+        remapResourceName(@"SBWeatherCelsius.png", @"Icons/Weather")
+
+    if (NSString *path = $getTheme$(names))
+        return path;
     return nil;
 }
 
+static UIImage *CachedImageAtPath(NSString *path) {
+    UIImage *image = [PathImages_ objectForKey:path];
+    if (image != nil)
+        return reinterpret_cast<id>(image) == [NSNull null] ? nil : image;
+    image = [[UIImage alloc] wb$initWithContentsOfFile:path cache:true];
+    if (image != nil)
+        image = [image autorelease];
+    [PathImages_ setObject:(image == nil ? [NSNull null] : reinterpret_cast<id>(image)) forKey:path];
+    return image;
+}
+
 static UIImage *UIImage$imageNamed$inBundle$(Class<WinterBoard> self, SEL sel, NSString *name, NSBundle *bundle) {
+    NSString *key = [NSString stringWithFormat:@"B:%@/%@", [bundle bundleIdentifier], name];
+    UIImage *image = [PathImages_ objectForKey:key];
+    if (image != nil)
+        return reinterpret_cast<id>(image) == [NSNull null] ? nil : image;
     if (Debug_)
         NSLog(@"WB:Debug: [UIImage(%@) imageNamed:\"%@\"]", [bundle bundleIdentifier], name);
-    if (NSString *path = $pathForFile$inBundle$(name, bundle))
-        return [UIImage imageWithContentsOfFile:path];
-    return [self wb_imageNamed:name inBundle:bundle];
+    if (NSString *path = $pathForFile$inBundle$(name, bundle, false))
+        image = CachedImageAtPath(path);
+    if (image == nil)
+        image = [self wb$imageNamed:name inBundle:bundle];
+    [PathImages_ setObject:(image == nil ? [NSNull null] : reinterpret_cast<id>(image)) forKey:key];
+    return image;
 }
 
 static UIImage *UIImage$imageNamed$(Class<WinterBoard> self, SEL sel, NSString *name) {
     return UIImage$imageNamed$inBundle$(self, sel, name, [NSBundle mainBundle]);
 }
 
+static UIImage *UIImage$applicationImageNamed$(Class<WinterBoard> self, SEL sel, NSString *name) {
+    NSBundle *bundle = [NSBundle mainBundle];
+    if (Debug_)
+        NSLog(@"WB:Debug: [UIImage(%@) applicationImageNamed:\"%@\"]", [bundle bundleIdentifier], name);
+    if (NSString *path = $pathForFile$inBundle$(name, bundle, false))
+        return CachedImageAtPath(path);
+    return [self wb$applicationImageNamed:name];
+}
+
+@interface NSString (WinterBoard)
+- (NSString *) wb$themedPath;
+@end
+
+@implementation NSString (WinterBoard)
+
+- (NSString *) wb$themedPath {
+    if (Debug_)
+        NSLog(@"WB:Debug:Bypass(\"%@\")", self);
+
+    if (NSBundle *bundle = [NSBundle mainBundle]) {
+        NSString *prefix([bundle bundlePath]);
+        if ([self hasPrefix:prefix]) {
+            NSUInteger length([prefix length]);
+            if (length != [self length])
+                if (NSString *path = $pathForFile$inBundle$([self substringFromIndex:(length + 1)], bundle, false))
+                    return path;
+        }
+    }
+
+    return self;
+}
+
+@end
+
+#define WBDelegate(delegate) \
+    - (NSMethodSignature*) methodSignatureForSelector:(SEL)sel { \
+        if (Engineer_) \
+            NSLog(@"WB:MS:%s:(%s)", class_getName([self class]), sel_getName(sel)); \
+        if (NSMethodSignature *sig = [delegate methodSignatureForSelector:sel]) \
+            return sig; \
+        NSLog(@"WB:Error: [%s methodSignatureForSelector:(%s)]", class_getName([self class]), sel_getName(sel)); \
+        return nil; \
+    } \
+\
+    - (void) forwardInvocation:(NSInvocation*)inv { \
+        SEL sel = [inv selector]; \
+        if ([delegate respondsToSelector:sel]) \
+            [inv invokeWithTarget:delegate]; \
+        else \
+            NSLog(@"WB:Error: [%s forwardInvocation:(%s)]", class_getName([self class]), sel_getName(sel)); \
+    }
+
 static NSString *NSBundle$pathForResource$ofType$(NSBundle<WinterBoard> *self, SEL sel, NSString *resource, NSString *type) {
     NSString *file = type == nil ? resource : [NSString stringWithFormat:@"%@.%@", resource, type];
     if (Debug_)
         NSLog(@"WB:Debug: [NSBundle(%@) pathForResource:\"%@\"]", [self bundleIdentifier], file);
-    if (NSString *path = $pathForFile$inBundle$(file, self))
+    if (NSString *path = $pathForFile$inBundle$(file, self, false))
         return path;
-    return [self wb_pathForResource:resource ofType:type];
+    return [self wb$pathForResource:resource ofType:type];
 }
 
-bool UINavigationBar$setBarStyle$_(SBAppWindow<WinterBoard> *self) {
-    if (Info_ != nil) {
-        NSNumber *number = [Info_ objectForKey:@"NavigationBarStyle"];
-        if (number != nil) {
-            [self wb_setBarStyle:[number intValue]];
-            return true;
-        }
+static bool $setBarStyle$_(NSString *name, UIView<WinterBoard> *self, int style) {
+    if (Debug_)
+        NSLog(@"WB:Debug:%@Style:%d", name, style);
+    NSNumber *number = nil;
+    if (number == nil)
+        number = [Info_ objectForKey:[NSString stringWithFormat:@"%@Style-%d", name, style]];
+    if (number == nil)
+        number = [Info_ objectForKey:[NSString stringWithFormat:@"%@Style", name]];
+    if (number == nil)
+        return false;
+    else {
+        style = [number intValue];
+        if (Debug_)
+            NSLog(@"WB:Debug:%@Style=%d", name, style);
+        [self wb$setBarStyle:style];
+        return true;
     }
+}
 
-    return false;
+static void SBCalendarIconContentsView$drawRect$(SBCalendarIconContentsView<WinterBoard> *self, SEL sel, CGRect rect) {
+    CFLocaleRef locale(CFLocaleCopyCurrent());
+    CFDateFormatterRef formatter(CFDateFormatterCreate(NULL, locale, kCFDateFormatterNoStyle, kCFDateFormatterNoStyle));
+    CFRelease(locale);
+
+    CFDateRef now(CFDateCreate(NULL, CFAbsoluteTimeGetCurrent()));
+
+    CFDateFormatterSetFormat(formatter, CFSTR("d"));
+    CFStringRef date(CFDateFormatterCreateStringWithDate(NULL, formatter, now));
+    CFDateFormatterSetFormat(formatter, CFSTR("EEEE"));
+    CFStringRef day(CFDateFormatterCreateStringWithDate(NULL, formatter, now));
+
+    CFRelease(now);
+
+    CFRelease(formatter);
+
+    NSString *datestyle(@""
+        "font-family: Helvetica; "
+        "font-weight: bold; "
+        "font-size: 39px; "
+        "color: #333333; "
+        "alpha: 1.0; "
+    "");
+
+    NSString *daystyle(@""
+        "font-family: Helvetica; "
+        "font-weight: bold; "
+        "font-size: 9px; "
+        "color: white; "
+        "text-shadow: rgba(0, 0, 0, 0.2) -1px -1px 2px; "
+    "");
+
+    if (NSString *style = [Info_ objectForKey:@"CalendarIconDateStyle"])
+        datestyle = [datestyle stringByAppendingString:style];
+    if (NSString *style = [Info_ objectForKey:@"CalendarIconDayStyle"])
+        daystyle = [daystyle stringByAppendingString:style];
+
+    float width([self bounds].size.width);
+    CGSize datesize = [(NSString *)date sizeWithStyle:datestyle forWidth:width];
+    CGSize daysize = [(NSString *)day sizeWithStyle:daystyle forWidth:width];
+
+    [(NSString *)date drawAtPoint:CGPointMake(
+        (width - datesize.width) / 2, (71 - datesize.height) / 2
+    ) withStyle:datestyle];
+
+    [(NSString *)day drawAtPoint:CGPointMake(
+        (width - daysize.width) / 2, (16 - daysize.height) / 2
+    ) withStyle:daystyle];
+
+    CFRelease(date);
+    CFRelease(day);
 }
 
-/*id UINavigationBarBackground$initWithFrame$withBarStyle$withTintColor$(UINavigationBarBackground<WinterBoard> *self, SEL sel, CGRect frame, int style, UIColor *tint) {
+/*static id UINavigationBarBackground$initWithFrame$withBarStyle$withTintColor$(UINavigationBarBackground<WinterBoard> *self, SEL sel, CGRect frame, int style, UIColor *tint) {
     _trace();
 
-    if (Info_ != nil) {
-        NSNumber *number = [Info_ objectForKey:@"NavigationBarStyle"];
-        if (number != nil)
-            style = [number intValue];
+    if (NSNumber *number = [Info_ objectForKey:@"NavigationBarStyle"])
+        style = [number intValue];
 
-        UIColor *color = [Info_ colorForKey:@"NavigationBarTint"];
-        if (color != nil)
-            tint = color;
-    }
+    if (UIColor *color = [Info_ colorForKey:@"NavigationBarTint"])
+        tint = color;
 
-    return [self wb_initWithFrame:frame withBarStyle:style withTintColor:tint];
+    return [self wb$initWithFrame:frame withBarStyle:style withTintColor:tint];
 }*/
 
-/*id UINavigationBar$initWithCoder$(SBAppWindow<WinterBoard> *self, SEL sel, CGRect frame, NSCoder *coder) {
-    self = [self wb_initWithCoder:coder];
+/*static id UINavigationBar$initWithCoder$(SBAppWindow<WinterBoard> *self, SEL sel, CGRect frame, NSCoder *coder) {
+    self = [self wb$initWithCoder:coder];
     if (self == nil)
         return nil;
     UINavigationBar$setBarStyle$_(self);
     return self;
 }
 
-id UINavigationBar$initWithFrame$(SBAppWindow<WinterBoard> *self, SEL sel, CGRect frame) {
-    self = [self wb_initWithFrame:frame];
+static id UINavigationBar$initWithFrame$(SBAppWindow<WinterBoard> *self, SEL sel, CGRect frame) {
+    self = [self wb$initWithFrame:frame];
     if (self == nil)
         return nil;
     UINavigationBar$setBarStyle$_(self);
     return self;
 }*/
 
-static void UINavigationBar$setBarStyle$(SBAppWindow<WinterBoard> *self, SEL sel, int style) {
-    if (UINavigationBar$setBarStyle$_(self))
+static void UIToolbar$setBarStyle$(UIToolbar<WinterBoard> *self, SEL sel, int style) {
+    if ($setBarStyle$_(@"Toolbar", self, style))
         return;
-    return [self wb_setBarStyle:style];
+    return [self wb$setBarStyle:style];
+}
+
+static void UINavigationBar$setBarStyle$(UINavigationBar<WinterBoard> *self, SEL sel, int style) {
+    if ($setBarStyle$_(@"NavigationBar", self, style))
+        return;
+    return [self wb$setBarStyle:style];
 }
 
 static void $didMoveToSuperview(SBButtonBar<WinterBoard> *self, SEL sel) {
     [[self superview] setBackgroundColor:[UIColor clearColor]];
-    [self wb_didMoveToSuperview];
+    [self wb$didMoveToSuperview];
+}
+
+static id UIImage$imageAtPath$(NSObject<WinterBoard> *self, SEL sel, NSString *path) {
+    return [self wb$imageAtPath:[path wb$themedPath]];
+}
+
+static id $initWithContentsOfFile$(NSObject<WinterBoard> *self, SEL sel, NSString *file) {
+    return [self wb$initWithContentsOfFile:[file wb$themedPath]];
+}
+
+static id UIImage$initWithContentsOfFile$cache$(UIImage<WinterBoard> *self, SEL sel, NSString *file, BOOL cache) {
+    return [self wb$initWithContentsOfFile:[file wb$themedPath] cache:cache];
 }
 
-static NSString *$getTheme$(NSString *file) {
-    NSString *path([NSString stringWithFormat:@"%@/%@", theme_, file]);
-    return [Manager_ fileExistsAtPath:path] ? path : nil;
+static UIImage *UIImage$defaultDesktopImage$(UIImage<WinterBoard> *self, SEL sel) {
+    if (Debug_)
+        NSLog(@"WB:Debug:DefaultDesktopImage");
+    if (NSString *path = $getTheme$([NSArray arrayWithObjects:@"LockBackground.png", @"LockBackground.jpg", nil]))
+        return [UIImage imageWithContentsOfFile:path];
+    return [self wb$defaultDesktopImage];
 }
 
+static UIImageView *WallpaperImage_;
+static UIWebDocumentView *WallpaperPage_;
+static NSURL *WallpaperURL_;
+
 static id SBContentLayer$initWithSize$(SBContentLayer<WinterBoard> *self, SEL sel, CGSize size) {
-    self = [self wb_initWithSize:size];
+    self = [self wb$initWithSize:size];
     if (self == nil)
         return nil;
 
-    if (NSString *path = $getTheme$(@"Wallpaper.png"))
-        if (UIImage *image = [[[UIImage alloc] initWithContentsOfFile:path] autorelease])
-            [self addSubview:[[[UIImageView alloc] initWithImage:image] autorelease]];
-    if (NSString *path = $getTheme$(@"Wallpaper.html")) {
+    if (NSString *path = $getTheme$([NSArray arrayWithObject:@"Wallpaper.mp4"])) {
+        MPVideoView *video = [[[$MPVideoView alloc] initWithFrame:[self bounds]] autorelease];
+        [video setMovieWithPath:path];
+        [video setRepeatMode:1];
+        [video setRepeatGap:0];
+        [self addSubview:video];
+        [video playFromBeginning];;
+    }
+
+    UIImage *image;
+    if (NSString *path = $getTheme$([NSArray arrayWithObjects:@"Wallpaper.png", @"Wallpaper.jpg", nil])) {
+        image = [[UIImage alloc] wb$initWithContentsOfFile:path];
+        if (image != nil)
+            image = [image autorelease];
+    } else image = nil;
+
+    if (WallpaperImage_ != nil)
+        [WallpaperImage_ release];
+    WallpaperImage_ = [[UIImageView alloc] initWithImage:image];
+    [self addSubview:WallpaperImage_];
+
+    if (NSString *path = $getTheme$([NSArray arrayWithObject:@"Wallpaper.html"])) {
         CGRect bounds = [self bounds];
 
         UIWebDocumentView *view([[[UIWebDocumentView alloc] initWithFrame:bounds] autorelease]);
-        [view setAutoresizes:YES];
+        [view setAutoresizes:true];
 
-        [view loadRequest:[NSURLRequest requestWithURL:[NSURL fileURLWithPath:path]]];
+        if (WallpaperPage_ != nil)
+            [WallpaperPage_ release];
+        WallpaperPage_ = [view retain];
 
-        [[view webView] setDrawsBackground:NO];
+        if (WallpaperURL_ != nil)
+            [WallpaperURL_ release];
+        WallpaperURL_ = [[NSURL fileURLWithPath:path] retain];
+
+        [WallpaperPage_ loadRequest:[NSURLRequest requestWithURL:WallpaperURL_]];
+
+        [[view webView] setDrawsBackground:false];
         [view setBackgroundColor:[UIColor clearColor]];
 
         [self addSubview:view];
@@ -366,33 +576,45 @@ static id SBContentLayer$initWithSize$(SBContentLayer<WinterBoard> *self, SEL se
     return self;
 }
 
-#define WBDelegate(delegate) \
-    - (NSMethodSignature*) methodSignatureForSelector:(SEL)sel { \
-        if (Engineer_) \
-            NSLog(@"WB:MS:%s:(%s)", class_getName([self class]), sel_getName(sel)); \
-        if (NSMethodSignature *sig = [delegate methodSignatureForSelector:sel]) \
-            return sig; \
-        NSLog(@"WB:Error: [%s methodSignatureForSelector:(%s)]", class_getName([self class]), sel_getName(sel)); \
-        return nil; \
-    } \
-\
-    - (void) forwardInvocation:(NSInvocation*)inv { \
-        SEL sel = [inv selector]; \
-        if ([delegate respondsToSelector:sel]) \
-            [inv invokeWithTarget:delegate]; \
-        else \
-            NSLog(@"WB:Error: [%s forwardInvocation:(%s)]", class_getName([self class]), sel_getName(sel)); \
-    }
+static void SBSlidingAlertDisplay$updateDesktopImage$(SBSlidingAlertDisplay<WinterBoard> *self, SEL sel, UIImage *image) {
+    NSString *path = $getTheme$([NSArray arrayWithObject:@"LockBackground.html"]);
+    UIView *&_backgroundView(MSHookIvar<UIView *>(self, "_backgroundView"));
+
+    if (path != nil && _backgroundView != nil)
+        path = nil;
+
+    [self wb$updateDesktopImage:image];
+
+    if (path != nil) {
+        CGRect bounds = [self bounds];
+
+        UIWebDocumentView *view([[[UIWebDocumentView alloc] initWithFrame:bounds] autorelease]);
+        [view setAutoresizes:true];
 
-static unsigned *ContextCount_;
-static void ***ContextStack_;
+        if (WallpaperPage_ != nil)
+            [WallpaperPage_ release];
+        WallpaperPage_ = [view retain];
 
-extern "C" CGColorRef CGGStateGetSystemColor(void *);
+        if (WallpaperURL_ != nil)
+            [WallpaperURL_ release];
+        WallpaperURL_ = [[NSURL fileURLWithPath:path] retain];
+
+        [WallpaperPage_ loadRequest:[NSURLRequest requestWithURL:WallpaperURL_]];
+
+        [[view webView] setDrawsBackground:false];
+        [view setBackgroundColor:[UIColor clearColor]];
+
+        [self insertSubview:view aboveSubview:_backgroundView];
+    }
+}
+
+/*extern "C" CGColorRef CGGStateGetSystemColor(void *);
 extern "C" CGColorRef CGGStateGetFillColor(void *);
 extern "C" CGColorRef CGGStateGetStrokeColor(void *);
-extern "C" NSString *UIStyleStringFromColor(CGColorRef);
+extern "C" NSString *UIStyleStringFromColor(CGColorRef);*/
 
-@interface WBTime : NSProxy {
+/* WBTimeLabel {{{ */
+@interface WBTimeLabel : NSProxy {
     NSString *time_;
     _transient SBStatusBarTimeView *view_;
 }
@@ -401,7 +623,7 @@ extern "C" NSString *UIStyleStringFromColor(CGColorRef);
 
 @end
 
-@implementation WBTime
+@implementation WBTimeLabel
 
 - (void) dealloc {
     [time_ release];
@@ -417,192 +639,473 @@ extern "C" NSString *UIStyleStringFromColor(CGColorRef);
 WBDelegate(time_)
 
 - (CGSize) drawAtPoint:(CGPoint)point forWidth:(float)width withFont:(UIFont *)font lineBreakMode:(int)mode {
-    if (Info_ != nil)
-        if (NSString *custom = [Info_ objectForKey:@"TimeStyle"]) {
-            BOOL mode;
-            object_getInstanceVariable(view_, "_mode", (void **) &mode);
-
-            [time_ drawAtPoint:point withStyle:[NSString stringWithFormat:@""
-                "font-family: Helvetica; "
-                "font-weight: bold; "
-                "font-size: 14px; "
-                "color: %@; "
-            "%@", mode ? @"white" : @"black", custom]];
-
-            return CGSizeZero;
-        }
+    if (NSString *custom = [Info_ objectForKey:@"TimeStyle"]) {
+        BOOL &_mode(MSHookIvar<BOOL>(view_, "_mode"));;
+
+        [time_ drawAtPoint:point withStyle:[NSString stringWithFormat:@""
+            "font-family: Helvetica; "
+            "font-weight: bold; "
+            "font-size: 14px; "
+            "color: %@; "
+        "%@", _mode ? @"white" : @"black", custom]];
+
+        return CGSizeZero;
+    }
 
     return [time_ drawAtPoint:point forWidth:width withFont:font lineBreakMode:mode];
 }
 
 @end
-
-@interface WBIconLabel : NSProxy {
-    NSString *string_;
-    BOOL docked_;
+/* }}} */
+/* WBBadgeLabel {{{ */
+@interface WBBadgeLabel : NSProxy {
+    NSString *badge_;
 }
 
-- (id) initWithString:(NSString *)string;
+- (id) initWithBadge:(NSString *)badge;
 
 @end
 
-@implementation WBIconLabel
+@implementation WBBadgeLabel
 
 - (void) dealloc {
-    [string_ release];
+    [badge_ release];
     [super dealloc];
 }
 
-- (id) initWithString:(NSString *)string {
-    string_ = [string retain];
+- (id) initWithBadge:(NSString *)badge {
+    badge_ = [badge retain];
     return self;
 }
 
-WBDelegate(string_)
-
-- (NSString *) _iconLabelStyle {
-    return Info_ == nil ? nil : [Info_ objectForKey:(docked_ ? @"DockedIconLabelStyle" : @"UndockedIconLabelStyle")];
-}
+WBDelegate(badge_)
 
-- (CGSize) drawInRect:(CGRect)rect withFont:(UIFont *)font lineBreakMode:(int)mode alignment:(int)alignment {
-    if (NSString *custom = [self _iconLabelStyle]) {
-        [string_ drawInRect:rect withStyle:[NSString stringWithFormat:@""
+- (CGSize) drawAtPoint:(CGPoint)point forWidth:(float)width withFont:(UIFont *)font lineBreakMode:(int)mode {
+    if (NSString *custom = [Info_ objectForKey:@"BadgeStyle"]) {
+        [badge_ drawAtPoint:point withStyle:[NSString stringWithFormat:@""
             "font-family: Helvetica; "
             "font-weight: bold; "
-            "font-size: 11px; "
-            "text-align: center; "
-            "color: %@; "
-        "%@", docked_ ? @"white" : @"#b3b3b3", custom]];
+            "font-size: 17px; "
+            "color: white; "
+        "%@", custom]];
 
         return CGSizeZero;
     }
 
-    return [string_ drawInRect:rect withFont:font lineBreakMode:mode alignment:alignment];
+    return [badge_ drawAtPoint:point forWidth:width withFont:font lineBreakMode:mode];
 }
 
-- (void) drawInRect:(CGRect)rect withStyle:(NSString *)style {
-    if (NSString *custom = [self _iconLabelStyle])
-        return [string_ drawInRect:rect withStyle:[NSString stringWithFormat:@"%@; %@", style, custom]];
-    return [string_ drawInRect:rect withStyle:style];
-}
+@end
+/* }}} */
 
-- (BOOL) respondsToSelector:(SEL)sel {
-    return
-        sel == @selector(setInDock:)
-    ? YES : [super respondsToSelector:sel];
+static id SBIconBadge$initWithBadge$(SBIconBadge<WinterBoard> *self, SEL sel, NSString *badge) {
+    if ((self = [self wb$initWithBadge:badge]) != nil) {
+        id &_badge(MSHookIvar<id>(self, "_badge"));
+        if (_badge != nil)
+            if (id label = [[WBBadgeLabel alloc] initWithBadge:[_badge autorelease]])
+                _badge = label;
+    } return self;
 }
 
-- (void) setInDock:(BOOL)docked {
-    docked_ = docked;
+static void SBStatusBarController$setStatusBarMode$orientation$duration$fenceID$animation$(SBStatusBarController<WinterBoard> *self, SEL sel, int mode, int orientation, float duration, int id, int animation) {
+    if (Debug_)
+        NSLog(@"WB:Debug:setStatusBarMode:%d", mode);
+    if (mode < 100) // 104:hidden 105:glowing
+        if (NSNumber *number = [Info_ objectForKey:@"StatusBarMode"])
+            mode = [number intValue];
+    return [self wb$setStatusBarMode:mode orientation:orientation duration:duration fenceID:id animation:animation];
 }
 
-@end
+static id SBStatusBarContentsView$initWithStatusBar$mode$(SBStatusBarContentsView<WinterBoard> *self, SEL sel, id bar, int mode) {
+    if (NSNumber *number = [Info_ objectForKey:@"StatusBarContentsMode"])
+        mode = [number intValue];
+    return [self wb$initWithStatusBar:bar mode:mode];
+}
 
 static void SBStatusBarTimeView$drawRect$(SBStatusBarTimeView<WinterBoard> *self, SEL sel, CGRect rect) {
-    id time;
-    object_getInstanceVariable(self, "_time", (void **) &time);
-    if (time != nil && [time class] != [WBTime class])
-        object_setInstanceVariable(self, "_time", (void *) [[WBTime alloc] initWithTime:[time autorelease] view:self]);
-    return [self wb_drawRect:rect];
+    id &_time(MSHookIvar<id>(self, "_time"));
+    if (_time != nil && [_time class] != [WBTimeLabel class])
+        object_setInstanceVariable(self, "_time", reinterpret_cast<void *>([[WBTimeLabel alloc] initWithTime:[_time autorelease] view:self]));
+    return [self wb$drawRect:rect];
 }
 
-static void SBIconLabel$setInDock$(SBIconLabel<WinterBoard> *self, SEL sel, BOOL docked) {
-    id label;
-    object_getInstanceVariable(self, "_label", (void **) &label);
-    if (Info_ == nil || [Info_ boolForKey:@"IconLabelInDock"])
-        docked = YES;
-    if (label != nil && [label respondsToSelector:@selector(setInDock:)])
-        [label setInDock:docked];
-    return [self wb_setInDock:docked];
+static void SBIconController$appendIconList$(SBIconController<WinterBoard> *self, SEL sel, SBIconList *list) {
+    if (Debug_)
+        NSLog(@"appendIconList:%@", list);
+    return [self wb$appendIconList:list];
 }
 
 static id SBIconLabel$initWithSize$label$(SBIconLabel<WinterBoard> *self, SEL sel, CGSize size, NSString *label) {
-    // XXX: technically I'm misusing self here
-    return [self wb_initWithSize:size label:[[[WBIconLabel alloc] initWithString:label] autorelease]];
-    //return [self wb_initWithSize:size label:label];
+    self = [self wb$initWithSize:size label:label];
+    if (self != nil)
+        [self setClipsToBounds:NO];
+    return self;
+}
+
+static void SBIconLabel$setInDock$(SBIconLabel<WinterBoard> *self, SEL sel, BOOL docked) {
+    id &_label(MSHookIvar<id>(self, "_label"));
+    if (![Info_ boolForKey:@"UndockedIconLabels"])
+        docked = true;
+    if (_label != nil && [_label respondsToSelector:@selector(setInDock:)])
+        [_label setInDock:docked];
+    return [self wb$setInDock:docked];
+}
+
+static NSMutableDictionary *Strings_;
+
+static NSString *NSBundle$localizedStringForKey$value$table$(NSBundle<WinterBoard> *self, SEL sel, NSString *key, NSString *value, NSString *table) {
+    NSString *identifier = [self bundleIdentifier];
+    NSLocale *locale = [NSLocale currentLocale];
+    NSString *language = [locale objectForKey:NSLocaleLanguageCode];
+    if (Debug_)
+        NSLog(@"WB:Debug:[NSBundle(%@) localizedStringForKey:\"%@\" value:\"%@\" table:\"%@\"] (%@)", identifier, key, value, table, language);
+    NSString *file = table == nil ? @"Localizable" : table;
+    NSString *name = [NSString stringWithFormat:@"%@:%@", identifier, file];
+    NSDictionary *strings;
+    if ((strings = [Strings_ objectForKey:name]) != nil) {
+        if (static_cast<id>(strings) != [NSNull null]) strings:
+            if (NSString *value = [strings objectForKey:key])
+                return value;
+    } else if (NSString *path = $pathForFile$inBundle$([NSString stringWithFormat:@"%@.lproj/%@.strings",
+        language, file
+    ], self, false)) {
+        if ((strings = [[NSDictionary alloc] initWithContentsOfFile:path]) != nil) {
+            [Strings_ setObject:[strings autorelease] forKey:name];
+            goto strings;
+        } else goto null;
+    } else null:
+        [Strings_ setObject:[NSNull null] forKey:name];
+    return [self wb$localizedStringForKey:key value:value table:table];
+}
+
+@class WebCoreFrameBridge;
+static CGSize WebCoreFrameBridge$renderedSizeOfNode$constrainedToWidth$(WebCoreFrameBridge<WinterBoard> *self, SEL sel, id node, float width) {
+    if (node == nil)
+        return CGSizeZero;
+    void **core(reinterpret_cast<void **>([node _node]));
+    if (core == NULL || core[6] == NULL)
+        return CGSizeZero;
+    return [self wb$renderedSizeOfNode:node constrainedToWidth:width];
+}
+
+static void SBIconLabel$drawRect$(SBIconLabel<WinterBoard> *self, SEL sel, CGRect rect) {
+    CGRect bounds = [self bounds];
+
+    static Ivar drawMoreLegibly = object_getInstanceVariable(self, "_drawMoreLegibly", NULL);
+
+    BOOL docked;
+    Ivar ivar = object_getInstanceVariable(self, "_inDock", reinterpret_cast<void **>(&docked));
+    docked = (docked & (ivar_getOffset(ivar) == ivar_getOffset(drawMoreLegibly) ? 0x2 : 0x1)) != 0;
+
+    NSString *&label(MSHookIvar<NSString *>(self, "_label"));
+
+    NSString *style = [NSString stringWithFormat:@""
+        "font-family: Helvetica; "
+        "font-weight: bold; "
+        "font-size: 11px; "
+        "color: %@; "
+    "", docked ? @"white" : @"#b3b3b3"];
+
+    if (docked)
+        style = [style stringByAppendingString:@"text-shadow: rgba(0, 0, 0, 0.5) 0px -1px 0px; "];
+    float max = 75, width = [label sizeWithStyle:style forWidth:320].width;
+    if (width > max)
+        style = [style stringByAppendingString:[NSString stringWithFormat:@"letter-spacing: -%f; ", ((width - max) / ([label length] - 1))]];
+    if (NSString *custom = [Info_ objectForKey:(docked ? @"DockedIconLabelStyle" : @"UndockedIconLabelStyle")])
+        style = [style stringByAppendingString:custom];
+
+    CGSize size = [label sizeWithStyle:style forWidth:bounds.size.width];
+    [label drawAtPoint:CGPointMake((bounds.size.width - size.width) / 2, 0) withStyle:style];
 }
 
 extern "C" void FindMappedImages(void);
 extern "C" NSData *UIImagePNGRepresentation(UIImage *);
 
-static void (*__UISharedImageInitialize)(bool);
+//static CGImageRef *(*_UIImageRefAtPath)(NSString *path, bool cache, UIImageOrientation *orientation);
+//_UIImageRefAtPath = (CGImageRef *(*)(NSString *, bool, UIImageOrientation *)) nl[3].n_value;
 
-extern "C" void WBInitialize() {
-    NSLog(@"WB:Notice: Installing WinterBoard...");
+static UIImage *(*_UIImageAtPath)(NSString *name, NSBundle *path);
+static UIImage *(*_UIImageWithName)(NSString *name);
+static UIImage *(*_UIImageWithNameInDomain)(NSString *name, NSString *domain);
+static NSBundle *(*_UIKitBundle)();
+static void (*_UISharedImageInitialize)(bool);
+static int (*_UISharedImageNameGetIdentifier)(NSString *);
+static UIImage *(*_UISharedImageWithIdentifier)(int);
+
+static UIImage *$_UIImageWithName(NSString *name) {
+    int id(_UISharedImageNameGetIdentifier(name));
+    if (Debug_)
+        NSLog(@"WB:Debug: UIImageWithName(\"%@\", %d)", name, id);
+
+    if (id == -1)
+        return _UIImageAtPath(name, _UIKitBundle());
+    else {
+        NSNumber *key([NSNumber numberWithInt:id]);
+        UIImage *image = [UIImages_ objectForKey:key];
+        if (image != nil)
+            return reinterpret_cast<id>(image) == [NSNull null] ? nil : image;
+        if (NSString *path = $pathForFile$inBundle$(name, _UIKitBundle(), true)) {
+            image = [[UIImage alloc] wb$initWithContentsOfFile:path];
+            if (image != nil)
+                [image autorelease];
+        }
+        if (image == nil)
+            image = _UISharedImageWithIdentifier(id);
+        [UIImages_ setObject:(image == nil ? [NSNull null] : reinterpret_cast<id>(image)) forKey:key];
+        return image;
+    }
+}
+
+static UIImage *$_UIImageWithNameInDomain(NSString *name, NSString *domain) {
+    NSString *key = [NSString stringWithFormat:@"D:%zu%@%@", [domain length], domain, name];
+    UIImage *image = [PathImages_ objectForKey:key];
+    if (image != nil)
+        return reinterpret_cast<id>(image) == [NSNull null] ? nil : image;
+    if (Debug_)
+        NSLog(@"WB:Debug: UIImageWithNameInDomain(\"%@\", \"%@\")", name, domain);
+    if (NSString *path = $getTheme$([NSArray arrayWithObject:[NSString stringWithFormat:@"Domains/%@/%@", domain, name]])) {
+        image = [[UIImage alloc] wb$initWithContentsOfFile:path];
+        if (image != nil)
+            [image autorelease];
+    }
+    if (image == nil)
+        image = _UIImageWithNameInDomain(name, domain);
+    [PathImages_ setObject:(image == nil ? [NSNull null] : reinterpret_cast<id>(image)) forKey:key];
+    return image;
+}
+
+template <typename Type_>
+static void WBReplace(Type_ *symbol, Type_ *replace) {
+    return WBReplace(symbol, replace, static_cast<Type_ **>(NULL));
+}
+
+#define AudioToolbox "/System/Library/Frameworks/AudioToolbox.framework/AudioToolbox"
+#define UIKit "/System/Library/Frameworks/UIKit.framework/UIKit"
+
+static bool (*_Z24GetFileNameForThisActionmPcRb)(unsigned long, char *, bool &);
+
+static bool $_Z24GetFileNameForThisActionmPcRb(unsigned long a0, char *a1, bool &a2) {
+    bool value = _Z24GetFileNameForThisActionmPcRb(a0, a1, a2);
+    if (Debug_)
+        NSLog(@"WB:Debug:GetFileNameForThisAction(%u, %s, %u) = %u", a0, value ? a1 : NULL, a2, value);
+
+    if (value) {
+        NSString *path = [NSString stringWithUTF8String:a1];
+        if ([path hasPrefix:@"/System/Library/Audio/UISounds/"]) {
+            NSString *file = [path substringFromIndex:31];
+            NSLog(@"%@", file);
+            for (NSString *theme in themes_) {
+                NSString *path([NSString stringWithFormat:@"%@/UISounds/%@", theme, file]);
+                if ([Manager_ fileExistsAtPath:path]) {
+                    strcpy(a1, [path UTF8String]);
+                    continue;
+                }
+            }
+        }
+    }
+    return value;
+}
+
+static void ChangeWallpaper(
+    CFNotificationCenterRef center,
+    void *observer,
+    CFStringRef name,
+    const void *object,
+    CFDictionaryRef info
+) {
+    if (Debug_)
+        NSLog(@"WB:Debug:ChangeWallpaper!");
 
+    UIImage *image;
+    if (NSString *path = $getTheme$([NSArray arrayWithObjects:@"Wallpaper.png", @"Wallpaper.jpg", nil])) {
+        image = [[UIImage alloc] wb$initWithContentsOfFile:path];
+        if (image != nil)
+            image = [image autorelease];
+    } else image = nil;
+
+    if (WallpaperImage_ != nil)
+        [WallpaperImage_ setImage:image];
+    if (WallpaperPage_ != nil)
+        [WallpaperPage_ loadRequest:[NSURLRequest requestWithURL:WallpaperURL_]];
+
+}
+
+void WBRename(bool instance, const char *name, SEL sel, IMP imp) {
+    Class _class = objc_getClass(name);
+    if (_class == nil) {
+        if (Debug_)
+            NSLog(@"WB:Warning: cannot find class [%s]", name);
+        return;
+    }
+    if (!instance)
+        _class = object_getClass(_class);
+    MSHookMessage(_class, sel, imp, "wb$");
+}
+
+extern "C" void WBInitialize() {
     NSAutoreleasePool *pool = [[NSAutoreleasePool alloc] init];
 
-    struct nlist nl[5];
+    NSString *identifier([[NSBundle mainBundle] bundleIdentifier]);
+
+    NSLog(@"WB:Notice: WinterBoard");
+
+    struct nlist nl[8];
     memset(nl, 0, sizeof(nl));
 
-    nl[0].n_un.n_name = (char *) "___mappedImages";
-    nl[1].n_un.n_name = (char *) "__UISharedImageInitialize";
-    nl[2].n_un.n_name = (char *) "___currentContextCount";
-    nl[3].n_un.n_name = (char *) "___currentContextStack";
+    nl[0].n_un.n_name = (char *) "__UIImageAtPath";
+    nl[1].n_un.n_name = (char *) "__UIImageWithName";
+    nl[2].n_un.n_name = (char *) "__UIImageWithNameInDomain";
+    nl[3].n_un.n_name = (char *) "__UIKitBundle";
+    nl[4].n_un.n_name = (char *) "__UISharedImageInitialize";
+    nl[5].n_un.n_name = (char *) "__UISharedImageNameGetIdentifier";
+    nl[6].n_un.n_name = (char *) "__UISharedImageWithIdentifier";
+
+    nlist(UIKit, nl);
+
+    _UIImageAtPath = (UIImage *(*)(NSString *, NSBundle *)) nl[0].n_value;
+    _UIImageWithName = (UIImage *(*)(NSString *)) nl[1].n_value;
+    _UIImageWithNameInDomain = (UIImage *(*)(NSString *, NSString *)) nl[2].n_value;
+    _UIKitBundle = (NSBundle *(*)()) nl[3].n_value;
+    _UISharedImageInitialize = (void (*)(bool)) nl[4].n_value;
+    _UISharedImageNameGetIdentifier = (int (*)(NSString *)) nl[5].n_value;
+    _UISharedImageWithIdentifier = (UIImage *(*)(int)) nl[6].n_value;
+
+    MSHookFunction(_UIImageWithName, &$_UIImageWithName, &_UIImageWithName);
+    MSHookFunction(_UIImageWithNameInDomain, &$_UIImageWithNameInDomain, &_UIImageWithNameInDomain);
+
+    if (dlopen(AudioToolbox, RTLD_LAZY | RTLD_NOLOAD) != NULL) {
+        struct nlist nl[2];
+        memset(nl, 0, sizeof(nl));
+        nl[0].n_un.n_name = (char *) "__Z24GetFileNameForThisActionmPcRb";
+        nlist(AudioToolbox, nl);
+        _Z24GetFileNameForThisActionmPcRb = (bool (*)(unsigned long, char *, bool &)) nl[0].n_value;
+        MSHookFunction(_Z24GetFileNameForThisActionmPcRb, &$_Z24GetFileNameForThisActionmPcRb, &_Z24GetFileNameForThisActionmPcRb);
+    }
+
+    WBRename(false, "UIImage", @selector(applicationImageNamed:), (IMP) &UIImage$applicationImageNamed$);
+    WBRename(false, "UIImage", @selector(defaultDesktopImage), (IMP) &UIImage$defaultDesktopImage$);
+    WBRename(false, "UIImage", @selector(imageAtPath:), (IMP) &UIImage$imageAtPath$);
+    WBRename(false, "UIImage", @selector(imageNamed:), (IMP) &UIImage$imageNamed$);
+    WBRename(false, "UIImage", @selector(imageNamed:inBundle:), (IMP) &UIImage$imageNamed$inBundle$);
 
-    nlist("/System/Library/Frameworks/UIKit.framework/UIKit", nl);
+    //WBRename("UINavigationBar", @selector(initWithCoder:", (IMP) &UINavigationBar$initWithCoder$);
+    //WBRename("UINavigationBarBackground", @selector(initWithFrame:withBarStyle:withTintColor:", (IMP) &UINavigationBarBackground$initWithFrame$withBarStyle$withTintColor$);
 
-    ImageMap_ = (id *) nl[0].n_value;
-    __UISharedImageInitialize = (void (*)(bool)) nl[1].n_value;
-    ContextCount_ = (unsigned *) nl[2].n_value;
-    ContextStack_ = (void ***) nl[3].n_value;
+    WBRename(true, "NSBundle", @selector(localizedStringForKey:value:table:), (IMP) &NSBundle$localizedStringForKey$value$table$);
+    WBRename(true, "NSBundle", @selector(pathForResource:ofType:), (IMP) &NSBundle$pathForResource$ofType$);
 
-    __UISharedImageInitialize(false);
+    WBRename(true, "UIImage", @selector(initWithContentsOfFile:), (IMP) &$initWithContentsOfFile$);
+    WBRename(true, "UIImage", @selector(initWithContentsOfFile:cache:), (IMP) &UIImage$initWithContentsOfFile$cache$);
+    WBRename(true, "UINavigationBar", @selector(setBarStyle:), (IMP) &UINavigationBar$setBarStyle$);
+    WBRename(true, "UIToolbar", @selector(setBarStyle:), (IMP) &UIToolbar$setBarStyle$);
 
-    English_ = [[NSDictionary alloc] initWithContentsOfFile:@"/System/Library/CoreServices/SpringBoard.app/English.lproj/LocalizedApplicationNames.strings"];
-    if (English_ != nil)
-        English_ = [English_ retain];
+    _UISharedImageInitialize(false);
 
     Manager_ = [[NSFileManager defaultManager] retain];
+    UIImages_ = [[NSMutableDictionary alloc] initWithCapacity:16];
+    PathImages_ = [[NSMutableDictionary alloc] initWithCapacity:16];
+    Strings_ = [[NSMutableDictionary alloc] initWithCapacity:0];
 
-    //WBRename("UINavigationBar", "initWithCoder:", (IMP) &UINavigationBar$initWithCoder$);
-    WBRename(true, "UINavigationBar", "setBarStyle:", (IMP) &UINavigationBar$setBarStyle$);
-    //WBRename("UINavigationBarBackground", "initWithFrame:withBarStyle:withTintColor:", (IMP) &UINavigationBarBackground$initWithFrame$withBarStyle$withTintColor$);
-
-    WBRename(false, "UIImage", "imageNamed:inBundle:", (IMP) &UIImage$imageNamed$inBundle$);
-    WBRename(false, "UIImage", "imageNamed:", (IMP) &UIImage$imageNamed$);
-    WBRename(true, "SBApplicationIcon", "icon", (IMP) &SBApplicationIcon$icon);
-    WBRename(true, "SBApplication", "pathForIcon", (IMP) &SBApplication$pathForIcon);
-    WBRename(true, "NSBundle", "pathForResource:ofType:", (IMP) &NSBundle$pathForResource$ofType$);
-    WBRename(true, "SBContentLayer", "initWithSize:", (IMP) &SBContentLayer$initWithSize$);
-    WBRename(true, "SBStatusBarContentsView", "didMoveToSuperview", (IMP) &$didMoveToSuperview);
-    WBRename(true, "SBButtonBar", "didMoveToSuperview", (IMP) &$didMoveToSuperview);
-    WBRename(true, "SBIconLabel", "setInDock:", (IMP) &SBIconLabel$setInDock$);
-    WBRename(true, "SBIconLabel", "initWithSize:label:", (IMP) &SBIconLabel$initWithSize$label$);
-    WBRename(true, "SBStatusBarTimeView", "drawRect:", (IMP) &SBStatusBarTimeView$drawRect$);
-
-    if (NSDictionary *settings = [[NSDictionary alloc] initWithContentsOfFile:[NSString stringWithFormat:@"%@/Library/Preferences/com.saurik.WinterBoard.plist", NSHomeDirectory()]]) {
-        [settings autorelease];
-        NSString *name = [settings objectForKey:@"Theme"];
-        NSString *path;
+    themes_ = [[NSMutableArray alloc] initWithCapacity:8];
 
-        if (theme_ == nil) {
-            path = [NSString stringWithFormat:@"%@/Library/SummerBoard/Themes/%@", NSHomeDirectory(), name];
-            if ([Manager_ fileExistsAtPath:path])
-                theme_ = [path retain];
-        }
+    if (NSDictionary *settings = [[NSDictionary alloc] initWithContentsOfFile:[NSString stringWithFormat:@"/User/Library/Preferences/com.saurik.WinterBoard.plist"]]) {
+        [settings autorelease];
 
-        if (theme_ == nil) {
-            path = [NSString stringWithFormat:@"/Library/Themes/%@", name];
-            if ([Manager_ fileExistsAtPath:path])
-                theme_ = [path retain];
-        }
-    }
+        if (NSNumber *debug = [settings objectForKey:@"Debug"])
+            Debug_ = [debug boolValue];
+
+        NSArray *themes = [settings objectForKey:@"Themes"];
+        if (themes == nil)
+            if (NSString *theme = [settings objectForKey:@"Theme"])
+                themes = [NSArray arrayWithObject:[NSDictionary dictionaryWithObjectsAndKeys:
+                    theme, @"Name",
+                    [NSNumber numberWithBool:true], @"Active",
+                nil]];
+        if (themes != nil)
+            for (NSDictionary *theme in themes) {
+                NSNumber *active = [theme objectForKey:@"Active"];
+                if (![active boolValue])
+                    continue;
 
-    if (theme_ != nil) {
-        NSString *folder = [NSString stringWithFormat:@"%@/UIImages", theme_];
-        if (NSArray *images = [Manager_ contentsOfDirectoryAtPath:folder error:NULL])
-            for (int i(0), e = [images count]; i != e; ++i) {
-                NSString *name = [images objectAtIndex:i];
-                if (![name hasSuffix:@".png"])
+                NSString *name = [theme objectForKey:@"Name"];
+                if (name == nil)
                     continue;
-                NSString *path = [NSString stringWithFormat:@"%@/%@", folder, name];
-                UIImage *image = [UIImage imageWithContentsOfFile:path];
-                [*ImageMap_ setObject:(id)[image imageRef] forKey:name];
+
+                NSString *theme = nil;
+
+                #define testForTheme(format...) \
+                    if (theme == nil) { \
+                        NSString *path = [NSString stringWithFormat:format]; \
+                        if ([Manager_ fileExistsAtPath:path]) { \
+                            [themes_ addObject:path]; \
+                            continue; \
+                        } \
+                    }
+
+                testForTheme(@"/Library/Themes/%@.theme", name)
+                testForTheme(@"/Library/Themes/%@", name)
+                testForTheme(@"%@/Library/SummerBoard/Themes/%@", NSHomeDirectory(), name)
             }
+    }
 
-        Info_ = [[NSDictionary alloc] initWithContentsOfFile:[NSString stringWithFormat:@"%@/Info.plist", theme_]];
+    Info_ = [[NSMutableDictionary dictionaryWithCapacity:16] retain];
+
+    for (NSString *theme in themes_)
+        if (NSDictionary *info = [[NSDictionary alloc] initWithContentsOfFile:[NSString stringWithFormat:@"%@/Info.plist", theme]])
+            for (NSString *key in [info allKeys])
+                if ([Info_ objectForKey:key] == nil)
+                    [Info_ setObject:[info objectForKey:key] forKey:key];
+
+    if ([identifier isEqualToString:@"com.apple.springboard"]) {
+        CFNotificationCenterAddObserver(
+            CFNotificationCenterGetDarwinNotifyCenter(),
+            NULL, &ChangeWallpaper, (CFStringRef) @"com.saurik.winterboard.lockbackground", NULL, 0
+        );
+
+        NSBundle *MediaPlayer = [NSBundle bundleWithPath:@"/System/Library/Frameworks/MediaPlayer.framework"];
+        if (MediaPlayer != nil)
+            [MediaPlayer load];
+
+        $MPVideoView = objc_getClass("MPVideoView");
+
+        WBRename(true, "WebCoreFrameBridge", @selector(renderedSizeOfNode:constrainedToWidth:), (IMP) &WebCoreFrameBridge$renderedSizeOfNode$constrainedToWidth$);
+
+        WBRename(true, "SBApplication", @selector(pathForIcon), (IMP) &SBApplication$pathForIcon);
+        WBRename(true, "SBApplicationIcon", @selector(icon), (IMP) &SBApplicationIcon$icon);
+        WBRename(true, "SBBookmarkIcon", @selector(icon), (IMP) &SBBookmarkIcon$icon);
+        WBRename(true, "SBButtonBar", @selector(didMoveToSuperview), (IMP) &$didMoveToSuperview);
+        WBRename(true, "SBCalendarIconContentsView", @selector(drawRect:), (IMP) &SBCalendarIconContentsView$drawRect$);
+        WBRename(true, "SBContentLayer", @selector(initWithSize:), (IMP) &SBContentLayer$initWithSize$);
+        WBRename(true, "SBIconBadge", @selector(initWithBadge:), (IMP) &SBIconBadge$initWithBadge$);
+        WBRename(true, "SBIconController", @selector(appendIconList:), (IMP) &SBIconController$appendIconList$);
+        WBRename(true, "SBIconLabel", @selector(drawRect:), (IMP) &SBIconLabel$drawRect$);
+        WBRename(true, "SBIconLabel", @selector(initWithSize:label:), (IMP) &SBIconLabel$initWithSize$label$);
+        WBRename(true, "SBIconLabel", @selector(setInDock:), (IMP) &SBIconLabel$setInDock$);
+        WBRename(true, "SBIconModel", @selector(cacheImageForIcon:), (IMP) &SBIconModel$cacheImageForIcon$);
+        WBRename(true, "SBIconModel", @selector(getCachedImagedForIcon:), (IMP) &SBIconModel$getCachedImagedForIcon$);
+
+        WBRename(true, "SBSlidingAlertDisplay", @selector(updateDesktopImage:), (IMP) &SBSlidingAlertDisplay$updateDesktopImage$);
+        WBRename(true, "SBStatusBarContentsView", @selector(didMoveToSuperview), (IMP) &$didMoveToSuperview);
+        WBRename(true, "SBStatusBarContentsView", @selector(initWithStatusBar:mode:), (IMP) &SBStatusBarContentsView$initWithStatusBar$mode$);
+        WBRename(true, "SBStatusBarController", @selector(setStatusBarMode:orientation:duration:fenceID:animation:), (IMP) &SBStatusBarController$setStatusBarMode$orientation$duration$fenceID$animation$);
+        WBRename(true, "SBStatusBarTimeView", @selector(drawRect:), (IMP) &SBStatusBarTimeView$drawRect$);
+
+        English_ = [[NSDictionary alloc] initWithContentsOfFile:@"/System/Library/CoreServices/SpringBoard.app/English.lproj/LocalizedApplicationNames.strings"];
+        if (English_ != nil)
+            English_ = [English_ retain];
+
+        Cache_ = [[NSMutableDictionary alloc] initWithCapacity:64];
     }
 
+    if ([Info_ objectForKey:@"UndockedIconLabels"] == nil)
+        [Info_ setObject:[NSNumber numberWithBool:(
+            [Info_ objectForKey:@"DockedIconLabelStyle"] != nil ||
+            [Info_ objectForKey:@"UndockedIconLabelStyle"] != nil
+        )] forKey:@"UndockedIconLabels"];
+
+    if (![Info_ boolForKey:@"UndockedIconLabels"])
+    if (Debug_)
+        NSLog(@"WB:Debug:Info = %@", [Info_ description]);
+
     [pool release];
 }