-
-
Notifications
You must be signed in to change notification settings - Fork 92
/
Copy pathbuildpointcloud.py
50 lines (40 loc) · 1.76 KB
/
buildpointcloud.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
# -*- coding: utf-8 -*-
# (C) 2020 Minoru Akagi
# SPDX-License-Identifier: GPL-2.0-or-later
# begin: 2020-05-15
from .conf import DEBUG_MODE
from .buildlayer import LayerBuilder
from .utils import int_color
class PointCloudLayerBuilder(LayerBuilder):
def __init__(self, settings, layer, progress=None, log=None):
LayerBuilder.__init__(self, settings, layer, progress=progress, log=log)
def build(self, build_blocks=False, cancelSignal=None):
d = {
"type": "layer",
"id": self.layer.jsLayerId,
"properties": self.layerProperties()
}
if not self.settings.isPreview:
url = d["properties"]["url"]
self.log("URL: {}".format(url))
if url.startswith("file:"):
filename = url.split("/")[-1]
self.log("""
Point cloud data files in Potree format will not be copied to the output data directory.
You need to upload them to a web server and replace the {0} file URL in the scene.js{1}
with valid one that points to the {0} file on the web server.""".format(filename, "" if self.settings.localMode else "on"), warning=True)
if DEBUG_MODE:
d["PROPERTIES"] = self.properties
return d
def layerProperties(self):
p = LayerBuilder.layerProperties(self)
p["type"] = "pc"
p["url"] = self.properties.get("url")
p["opacity"] = self.properties.get("spinBox_Opacity", 100) / 100
p["colorType"] = self.properties.get("comboBox_ColorType", "RGB")
if p["colorType"] == "COLOR":
p["color"] = int_color(self.properties.get("colorButton_Color"))
p["boxVisible"] = self.properties.get("checkBox_BoxVisible", False)
return p
def subBuilders(self):
return []