如何将音乐、图像和其他内容加载到带有进度条的场景并平滑移动条.. 我猜进度条的逻辑是创建新线程-加载数据和销毁线程这是我加载内容的代码,但它不起作用, 进度条出现但不更新值
-(void)s1
{
[[SimpleAudioEngine sharedEngine] preloadBackgroundMusic:@"game_music.caf"];
}
-(void)s2
{
[[SimpleAudioEngine sharedEngine] preloadEffect:@"tap.caf"];
}
-(void)startThread
{
NSAutoreleasePool *pool = [[NSAutoreleasePool alloc] init];
EAGLContext *context = [[[EAGLContext alloc]
initWithAPI:kEAGLRenderingAPIOpenGLES1
sharegroup:[[[[CCDirector sharedDirector] openGLView] context] sharegroup]] autorelease];
[EAGLContext setCurrentContext:context];
[self performSelector:@selector(loadBar)];
//[self schedule:@selector(tick:)];
[self performSelector:@selector(s1)]; // uploading file
[self performSelector:@selector(progressUpdateValue)]; // add 10 value to progress
[self performSelector:@selector(s2)]; // uploading file
[self performSelector:@selector(progressUpdateValue)]; // add 10 value to progress
[self performSelector:@selector(replaceScene)
onThread:[[CCDirector sharedDirector] runningThread]
withObject:nil
waitUntilDone:false];
[pool release];
}
-(void)replaceScene
{
[[CCDirector sharedDirector]replaceScene:[GameScene node]];
}
-(id)init
{
self = [super init];
if (self != nil)
{
[NSThread detachNewThreadSelector:@selector(startThread) toTarget:self withObject:nil];
}
return self;
}
提前致谢。
界面..你去..)
@interface LoadScene : CCScene
{
GPLoadingBar *loadingBar;
float value;
}