- android - RelativeLayout 背景可绘制重叠内容
- android - 如何链接 cpufeatures lib 以获取 native android 库?
- java - OnItemClickListener 不起作用,但 OnLongItemClickListener 在自定义 ListView 中起作用
- java - Android 文件转字符串
我正在尝试在 SpriteKit 中创建一个游戏,我需要一种布局对象的方法,将它们放置在随机生成的点中对我来说不是这样,太多的分组。
经过一些研究,泊松圆盘生成器看起来正是我需要的。
我已经尝试实现我自己的。但是,所有位置都关闭了,它们丢失了显示的 3/4。
我哪里错了?
最小半径为 100。
最小半径为 10。
class GameScene: SKScene {
var radius = 100
var lookUpCount = 30
var grid = [CGPoint?](), ordered = [CGPoint](), active = [CGPoint]()
var w = CGFloat()
var cols = Int()
var rows = Int()
var sizeScren = CGSize()
override func didMove(to view: SKView) {
generate()
for item in ordered {
let gamePiece = SKSpriteNode(imageNamed: "Spaceship")
gamePiece.setScale(0.0625)
gamePiece.position = item
addChild(gamePiece)
}
}
func distance(p1: CGPoint, p2: CGPoint) -> CGFloat {
let dx = p1.x - p2.x
let dy = p1.y - p2.y
return sqrt(dx * dx + dy * dy)
}
func generateRandomPointAround(point: CGPoint, minDist: CGFloat) -> CGPoint
{
let rd1 = CGFloat(Float(arc4random()) / Float(UINT32_MAX))
let rd2 = CGFloat(Float(arc4random()) / Float(UINT32_MAX))
//random radius
let radius = minDist * (rd1 + 1)
//random angle
let angle = 2 * CGFloat.pi * rd2
//new point is generated around the point (x, y)
let newX = point.x + radius * cos(angle)
let newY = point.y + radius * sin(angle)
return CGPoint(x: newX, y: newY)
}
func generate() {
sizeScren = UIScreen.main.bounds.size
//create cell
w = (CGFloat(Double(radius) / sqrt(2)))
cols = Int(floor(sizeScren.height / w))
rows = Int(floor(sizeScren.width / w))
grid = [CGPoint?](repeating: nil, count: (cols * rows))
let x = sizeScren.height / 2
let y = sizeScren.width / 2
let i = floor(x / w)
let j = floor(y / w)
//first posistion
let pos = CGPoint (x: frame.midX, y: frame.midY)
let index = Int(i + j * CGFloat(cols))
grid[index] = pos
active.append(pos)
while (active.count > 0) {
let randomIndex = Int(arc4random_uniform(UInt32(active.count)))
let currentPos = active[randomIndex]
var found = false
Mainloop: for _ in 0..<Int(lookUpCount) {
let samplePoint = generateRandomPointAround(point: currentPos, minDist: CGFloat(radius))
let col = floor(samplePoint.x / w)
let row = floor(samplePoint.y / w)
//check neighbouring cells are empty and valid, if have a point in already
if (col > -1 && row > -1 && CGFloat(col) < CGFloat(cols) && CGFloat(row) < CGFloat(rows) && (grid[Int(col + CGFloat(row) * CGFloat(cols))] == nil)) {
var ok = true
for index1 in -1...1 {
for index2 in -1...1 {
//break down complexity for swift compiler
let part1 = Int(col + CGFloat(index1))
let part2 = Int(row + CGFloat(index2))
let part3 = part1 + part2 * cols
let sampleIndex = part3
let isIndexValid = grid.indices.contains(sampleIndex)
if isIndexValid {
let neighbor = grid[sampleIndex]
if neighbor != nil {
let distanceAmount = distance(p1: samplePoint, p2: neighbor!)
if distanceAmount < CGFloat(radius) {
ok = false
}
}
}
}
}
if (ok == true) {
found = true
grid[Int(col + row * CGFloat(cols))] = samplePoint
active.append(samplePoint)
ordered.append(samplePoint)
// break MainLoop
}
}
}
if (!found) {
active.remove(at: randomIndex)
}
}
}
}
最佳答案
(0,0)为屏幕中心,samplePoint
除以w转换为行列索引。然后用这个测试过滤掉所有负数的行和列索引:if (col > -1 && row > -1 ...
。samplePoint
在此之后没有调整,所以这将有效地删除 4 个象限中的 3 个。要解决此问题,您可以像这样偏移索引:
let col = floor((samplePoint.x + x) / w)
let row = floor((samplePoint.y + y) / w)
(x
和y
已经分别定义为屏幕宽度和高度的一半)
关于swift - Poisson Disk Generator 排除了四个 View 象限中的三个,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44626367/
我是 Julia 的新手。 我主要用python编程。 在 python 中, 如果你想迭代大量的值, 通常构造一个所谓的生成器来节省内存使用。 这是一个示例代码: def generator(N):
这个问题很奇怪。我试图直接在 build.gradle 中添加一个字符串,因为我需要它来使用 Tray 库 ( https://github.com/grandcentrix/tray )。在我的第一
我正在尝试在我的新 symfony3 项目中使用生成 CRUD 功能。我创建了一个名为 AdminBundle 的 bundle ,其中包含生成器、实体测试以及生成器,所有这些都处理得很好。我检查了我
我尝试理解生成器,但我发现了一个我无法遵循的示例。 // First Generator function* Colors () { yield "blue"; yield* MoreColo
我将制作一款完全由程序生成的空间/交易/战斗游戏。但是,我知道将整个星系的所有细节存储在内存中是不可行的。因此,我一直认为我可以使用种子来生成太阳系,并且从该太阳系,您可以使用跳跃门前往其他太阳系。问
我在 Eclipse Helios 中使用 MyBatis Generator (MyBatis Generator 1.3.1.201101032122),但每次我自动生成持久类时,生成器都会删除属
@GenerateInterface class A {} @GenerateInterface class B { void setA(IA a) {} } 我的注释处理器应该生成这些接口(in
我刚刚在一个空目录中安装了 yeoman,它打印出一个错误。这就是我所做的: npm i yo -g npm i generator-webapp -g 之后我抛出一个错误: require('yeo
我正在使用 NReco PDFGenerator 从 HTML 字符串创建 PDF 文档。当表格被分页符拆分时,表格标题与表格中的下一行重叠(见下图)。 有想法该怎么解决这个吗? 最佳答案 我发现这是
我有这个命名空间: namespace :manage do # Directs /manage/products/* to Manage::ProductsController
我有一个 Open API 3 规范的 yaml 文件,它有一些 x- 前缀的属性。我正在尝试使用 openapi-generator-cli 生成一个 Angular Typescript SDK。
我有一个返回生成器的函数。目前它使用yield from: function foo() { $generator = getGenerator(); // some other st
我选择Symfony2 docs 。据说添加 /** * @ORM\Entity(repositoryClass="Acme\StoreBundle\Entity\ProductRepository
运行命令生成新的 rails 项目: $ rails generate controller home index 以上将创建四个新的 Rails 项目:generate、controller、hom
我们实际上已经将jvm内存增加到了256M,现在老年代看起来很小,但Perm Generation相当高,接近80%。通过 jstat 捕获的示例数据如下。高永久代意味着什么? Timestamp
class Invoice def Invoice.generate(order_id, charge_amount, credited_amount = 0.0) Invoice.new
我在写 this comparison为了帮助人们理解所有这些废话,目前看来,generator-angular 的好处和值(value)只是您使用 generator-angular-fullsta
我有一个包含以下代码段的 OpenAPI 规范文档(我无法控制): servers: - url: http://www.[someservice].com/api 我正在使用这个 OpenAPI
我正在使用 openapi-yaml 将 swagger 文件转换为开放的 API v3 文件。使用 Maven 生成器。 我想做的是将新文件直接放入某个目录。 但是会生成一些我不需要的其他文件,例如
我的生成器中有以下标准文件夹结构。我当前正在努力解决的任务是我目前有一个模板化的 _package.json ,我将其写入磁盘以用于主要生成。我想在编写的 package.json 中包含一个变量,它
我是一名优秀的程序员,十分优秀!