防止在 Corona SDK 中相同 X 坐标的不同 Y 位置放置生成物
2016-4-21 14:4:13
收藏:0
阅读:90
评论:1
我似乎遇到了一个无法完全解决的问题,需要一些帮助。如下图所示,我从名为 enemies 的表格中生成形状,并尝试检查它们的 x 位置是否被生成物占据,如果是,那么稍微向左或向右移动它,使它足够弹出以击中它们向下移动的时候。图中显示了形状被堆叠在彼此后面的问题。
生成函数(从游戏循环中调用)
local xPos = math.random(22,279)
local r = math.random(1, #spawnData)
local sd = spawnData[r] --获取此敌人的出生数据
local s = display.newSprite(sd.imgSheet, sd.seqData)
s.name = sd.name
physics.addBody(s, {isSensor = true})
s:setSequence(sd.seq)
s:setFrame(sd.frame)
s.y = display.contentHeight - 550 --使用 spawnData 创建敌人
local ok = false --用于表示是否找到有效的 X 位置标识
local gap = 2 --设置敌人之间的最小像素间隔
local err = 0 --避免游戏因敌人过多而变慢的错误标识
while ok == false do -- 表示循环直到找到有效的 X 位置
xPos = math.random(20,300) -- 给一个新的 X 位置
ok = true -- 在检查其他敌人之前,先假设它很好
for i = 1, #enemies, 1 do -- 循环遍历已生成的敌人
local e = enemies[i] -- 链接到此敌人
local dist = mAbs(e.x - xPos) -- 计算出此敌人与选择的随机位置之间的距离
if dist < (e.width + gap) then ok = false end -- 如果敌人之间距离太近,请重试
end
err = err + 1 -- 增加尝试找到有效位置的次数
if err > 50 then ok = true end -- 尝试 50 次后,假设没有空余空间,只是随机生成
end
s.x = xPos
enemies[#enemies+1] = s
enemyGroup:insert(s)
点赞
评论区的留言会收到邮件通知哦~
推荐文章
- 如何将两个不同的lua文件合成一个 东西有点长 大佬请耐心看完 我是小白研究几天了都没搞定
- 如何在roblox studio中1:1导入真实世界的地形?
- 求解,lua_resume的第二次调用继续执行协程问题。
- 【上海普陀区】内向猫网络招募【Skynet游戏框架Lua后端程序员】
- SF爱好求教:如何用lua实现游戏内调用数据库函数实现账号密码注册?
- Lua实现网站后台开发
- LUA错误显式返回,社区常见的规约是怎么样的
- lua5.3下载库失败
- 请问如何实现文本框内容和某个网页搜索框内容连接,并把网页输出来的结果反馈到另外一个文本框上
- lua lanes多线程使用
- 一个kv数据库
- openresty 有没有比较轻量的 docker 镜像
- 想问一下,有大佬用过luacurl吗
- 在Lua执行过程中使用Load函数出现问题
- 为什么 neovim 里没有显示一些特殊字符?
- Lua比较两个表的值(不考虑键的顺序)
- 有个lua简单的项目,外包,有意者加微信 liuheng600456详谈,最好在成都
- 如何在 Visual Studio 2022 中运行 Lua 代码?
- addEventListener 返回 nil Lua
- Lua中获取用户配置主目录的跨平台方法

你有两段代码来解决这个错误。
在下面的代码段中,你正在查看已存在的每个精灵,并尝试找到一个适当的 X 位置。如果有很多精灵,错误就更容易发生。尝试只查看先前精灵的 X 位置。
for i = 1, #enemies, 1 do -- Loop through the previously spawned enemies local e = enemies[i] -- Link to this enemy local dist = mAbs(e.x - xPos) -- Work out the distance between this enemy and the random position chosen if dist < (e.width + gap) then ok = false end -- If the enemies are too close, try agian end在下一个代码段中,当出现 50 次错误后,它就会把精灵放在任何地方。你允许该生成操作进行。尝试更大的值。但这将只是暂缓问题。
err = err + 1 -- Increase the count of attempts to find a valid position if err > 50 then ok = true end -- After 50 tries, assume there is no empty space and just spawn wherever编辑:
以下是我的修改建议。可能会出现错误,因为我没有测试过。但希望它能给你提供想法。
local xPos = math.random(22,279) local r = math.random(1, #spawnData) local sd = spawnData[r] -- get the spawn data for this enemy local s = display.newSprite(sd.imgSheet, sd.seqData) s.name = sd.name physics.addBody(s, {isSensor = true}) s:setSequence(sd.seq) s:setFrame(sd.frame) s.y = display.contentHeight - 550 -- Create the enemies using spawnData local ok = false -- A flag to say whether we found a valid X position local gap = 2 -- Set the minimum gap in pixels between enemies local err = 0 -- An error flag to avoid the game slowing down if too many enemies -- EDITED CODE BELOW -------------------- while ok == false do -- Tell it to loop until a valid X position is found xPos = math.random(20,300) -- give a new X position local e = enemies[#enemies] -- Get the last enemy in the table (should be the previously made) if e == nil then break -- Break out of the while loop end local dist = mAbs(e.x - xPos) -- Work out the distance between this enemy and the random position chosen if dist >= (e.width + gap) then ok = true else err = err + 1 -- Increase the count of attempts to find a valid position if err > 50 then ok = true end end end s.x = xPos enemies[#enemies+1] = s enemyGroup:insert(s)