• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    公众号

iOS在播放完成前播放相同的音效

[复制链接]
菜鸟教程小白 发表于 2022-12-12 22:11:45 | 显示全部楼层 |阅读模式 打印 上一主题 下一主题

我正在为 iOS 7 创建一个 iPhone 游戏。我有一个名为 sharedResources 的类,其中包含在游戏中反复使用的某些数据的副本,包括 4 秒长的音效。

所以我正在创建这样的音效:

    filePathTD = [[NSBundle mainBundle]
                 pathForResource"towerDamage" ofType"aiff"];
    fileURLTD = [NSURL fileURLWithPath:filePathTD];

    towerDamge = [[AVAudioPlayer alloc] initWithContentsOfURL:fileURLTD
                                                    error:&error];
    if (error)
        NSLog(@"Error: %@", [error localizedDescription]);

然后像这样在其他地方调用它:

[towerDamage play];

我的问题是与我想调用它的速度相比,声音效果很长。因此,当我在它已经在播放时调用它时,它不会同时播放,因为它已经在使用并且我只有一个副本。

所以我问:在不占用太多内存的情况下同时播放多个音效的最佳方式是什么?

我知道我可以制作多个副本,但如果我为每个需要它的角色制作一个副本,我可能只需要最多 5 个副本,而我可能有 30 个副本。我的想法是只制作 5 个副本,并且只使用当前未使用的副本。但是由于我是 iOS 开发的新手,我不确定除了这个 hack 是否有更好的方法来完成这项任务?



Best Answer-推荐答案


在 AVAudioPlayer 实例上使用 prepareToPlay 将预加载声音文件。也许您可以将一些合理数量的它们加载到一个数组中,然后根据需要循环它们。如果您需要的数量超过分配的数量,那么您当时选择将一个新的加载到内存中,或者重新开始播放列表中的第一个。更复杂的系统可以根据因素或应用程序中发生的情况在数组中存储或多或少的声音。

也许是这样的? (为了简洁起见,我省略了错误检查和什么)

  //setup the managing class to be
//<AVAudioPlayerDelegate>

///--- instance variables or properties
int nextIndexToPlayInArrayOfSounds = 0;
NSMutableArray *arrayOfSounds = [NSMutableArray array];
int numberOfSoundsNeeded = 10;


//make a method to setup the sounds
for (int i = 0; i < numberOfSoundsNeeded; i++) {

    AVAudioPlayer *mySound = [[AVAudioPlayer alloc] initWithContentsOfURL:[[NSBundle mainBundle] URLForResource:[NSString stringWithFormat"soundNameOnDisk"] withExtension"aiff"] error:NULL];
    mySound.delegate = self;
    [arrayOfSounds addObject:mySound];
    [mySound prepareToPlay];


}

//make a method to play a sound
//and then play the next sound in the list, or if past the end of the array, or play the first one
AVAudioPlayer *nextSoundToPlay;

if (numberOfSoundsNeeded > nextIndexToPlayInArrayOfSounds) {
    nextIndexToPlayInArrayOfSounds++;
}else{
    nextIndexToPlayInArrayOfSounds = 0;
}

//obviously I'm skipping error checking and nil pointers, etc
nextSoundToPlay = [arrayOfSounds objectAtIndex:nextIndexToPlayInArrayOfSounds ];
[nextSoundToPlay playAtTime:0];

关于iOS在播放完成前播放相同的音效,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23467579/

回复

使用道具 举报

懒得打字嘛,点击右侧快捷回复 【右侧内容,后台自定义】
您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

关注0

粉丝2

帖子830918

发布主题
阅读排行 更多
广告位

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap