BlackFire ingame is open! ( not opensource though :D )
What I mean with that is that you can make use of its services, the Growler!
BlackFire ingame uses the NSDistributedNotificationCenter to communicate with the
ingame plugin. Therefore, you guys can make use of it as well.
To send a growl notification to ingame the only thing you gotta do is the following:
1. Create a userinfo dictionary
2. send the notification
[Code]
// userinfo dictionary, much like a data packet for ingame communication.
NSDictionary *userInfoDict = [[NSDictionary alloc] initWithObjectsAndKeys:
message,@"message",
title,@"title",
nil];
[[NSDistributedNotificationCenter defaultCenter] postNotificationName:@"BlackFire.ingame.growl"
object:nil
userInfo:dict];
[userInfoDict release]; // cleanup
[/Code]
And thats all.