|
@@ -3,14 +3,18 @@ import { useCtx } from "../../ctx";
|
|
import { Controller } from "../../core/controller";
|
|
import { Controller } from "../../core/controller";
|
|
import { PackSource } from "../../objects/packSource";
|
|
import { PackSource } from "../../objects/packSource";
|
|
import { EditorCtrl } from "./editor";
|
|
import { EditorCtrl } from "./editor";
|
|
-import { PackScene, PackGeom, PackProduct , PackSceneProduct} from "@/comm/objects/pack";
|
|
|
|
-
|
|
|
|
-
|
|
|
|
|
|
+import {
|
|
|
|
+ PackScene,
|
|
|
|
+ PackGeom,
|
|
|
|
+ PackProduct,
|
|
|
|
+ PackSceneProduct,
|
|
|
|
+} from "@/comm/objects/pack";
|
|
|
|
+import { compMap } from "./tempComp";
|
|
|
|
|
|
async function createDefaultSpu3dConf() {
|
|
async function createDefaultSpu3dConf() {
|
|
const currTime = new Date().toISOString();
|
|
const currTime = new Date().toISOString();
|
|
const source = new PackSource();
|
|
const source = new PackSource();
|
|
- source.state.scenes = [new PackScene() ];
|
|
|
|
|
|
+ source.state.scenes = [new PackScene()];
|
|
|
|
|
|
// 初始化模型资产
|
|
// 初始化模型资产
|
|
|
|
|
|
@@ -18,7 +22,7 @@ async function createDefaultSpu3dConf() {
|
|
geom.file = { url: "assets/box.fbx", size: 0 };
|
|
geom.file = { url: "assets/box.fbx", size: 0 };
|
|
|
|
|
|
const product = new PackProduct();
|
|
const product = new PackProduct();
|
|
- product.geomId = geom.id;
|
|
|
|
|
|
+ product.geomId = geom.id;
|
|
|
|
|
|
const sceneProd = new PackSceneProduct();
|
|
const sceneProd = new PackSceneProduct();
|
|
sceneProd.state.prodId = product.id;
|
|
sceneProd.state.prodId = product.id;
|
|
@@ -39,16 +43,15 @@ async function createDefaultSpu3dConf() {
|
|
return defaultData;
|
|
return defaultData;
|
|
}
|
|
}
|
|
|
|
|
|
-
|
|
|
|
export class ProjectController extends Controller {
|
|
export class ProjectController extends Controller {
|
|
RootDir = "";
|
|
RootDir = "";
|
|
DataDir = "";
|
|
DataDir = "";
|
|
HostURL = "";
|
|
HostURL = "";
|
|
_swiftLocal = true;
|
|
_swiftLocal = true;
|
|
- _editor?:EditorCtrl
|
|
|
|
- _spu3dFile:any;
|
|
|
|
|
|
+ _editor?: EditorCtrl;
|
|
|
|
+ _spu3dFile: any;
|
|
|
|
|
|
- get editor () {
|
|
|
|
|
|
+ get editor() {
|
|
return this._editor as EditorCtrl;
|
|
return this._editor as EditorCtrl;
|
|
}
|
|
}
|
|
|
|
|
|
@@ -58,7 +61,7 @@ export class ProjectController extends Controller {
|
|
this.RootDir = projectPath;
|
|
this.RootDir = projectPath;
|
|
const deviceCtrl = useCtx().deviceCtrl;
|
|
const deviceCtrl = useCtx().deviceCtrl;
|
|
|
|
|
|
- deviceCtrl.GetAppDataDir().then((dir:any) => {
|
|
|
|
|
|
+ deviceCtrl.GetAppDataDir().then((dir: any) => {
|
|
this.DataDir = dir;
|
|
this.DataDir = dir;
|
|
});
|
|
});
|
|
|
|
|
|
@@ -68,11 +71,10 @@ export class ProjectController extends Controller {
|
|
}
|
|
}
|
|
deviceCtrl.SetMainTitle("项目:" + projectPath);
|
|
deviceCtrl.SetMainTitle("项目:" + projectPath);
|
|
this.HostURL = await deviceCtrl.StartHttpServer(this.RootDir);
|
|
this.HostURL = await deviceCtrl.StartHttpServer(this.RootDir);
|
|
-
|
|
|
|
|
|
+
|
|
console.log("host url=>", this.HostURL);
|
|
console.log("host url=>", this.HostURL);
|
|
|
|
|
|
await this.loadProject();
|
|
await this.loadProject();
|
|
-
|
|
|
|
}
|
|
}
|
|
async save() {
|
|
async save() {
|
|
const detail = this._spu3dFile;
|
|
const detail = this._spu3dFile;
|
|
@@ -91,7 +93,9 @@ export class ProjectController extends Controller {
|
|
async loadProject() {
|
|
async loadProject() {
|
|
const deviceCtrl = useCtx().deviceCtrl;
|
|
const deviceCtrl = useCtx().deviceCtrl;
|
|
try {
|
|
try {
|
|
- const { text } = await deviceCtrl.ReadFileText(`${this.RootDir}/project.spu3d`);
|
|
|
|
|
|
+ const { text } = await deviceCtrl.ReadFileText(
|
|
|
|
+ `${this.RootDir}/project.spu3d`
|
|
|
|
+ );
|
|
const project = JSON.parse(text);
|
|
const project = JSON.parse(text);
|
|
this._spu3dFile = project;
|
|
this._spu3dFile = project;
|
|
const pack = new PackSource();
|
|
const pack = new PackSource();
|
|
@@ -102,8 +106,28 @@ export class ProjectController extends Controller {
|
|
alert("项目加载失败" + error);
|
|
alert("项目加载失败" + error);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
+ async loadQueen5() {
|
|
|
|
+ const deviceCtrl = useCtx().deviceCtrl;
|
|
|
|
+ try {
|
|
|
|
+ const { text } = await deviceCtrl.ReadFileText(
|
|
|
|
+ `${this.RootDir}/project.queen5`
|
|
|
|
+ );
|
|
|
|
+ let data = {} as any;
|
|
|
|
+ if (!text) {
|
|
|
|
+ data = { categories: ["64e4281a12c676099617ffc6"], title: "pc" };
|
|
|
|
+ } else {
|
|
|
|
+ data = JSON.parse(text);
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ return data;
|
|
|
|
+ } catch (error) {
|
|
|
|
+ alert("项目加载失败" + error);
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
|
|
- async getProjectDetail(dir: string): ReturnType<typeof createDefaultSpu3dConf> {
|
|
|
|
|
|
+ async getProjectDetail(
|
|
|
|
+ dir: string
|
|
|
|
+ ): ReturnType<typeof createDefaultSpu3dConf> {
|
|
const deviceCtrl = useCtx().deviceCtrl;
|
|
const deviceCtrl = useCtx().deviceCtrl;
|
|
const ret = await deviceCtrl.ReadFileText(`${dir}/project.spu3d`);
|
|
const ret = await deviceCtrl.ReadFileText(`${dir}/project.spu3d`);
|
|
if (ret.text) {
|
|
if (ret.text) {
|
|
@@ -124,36 +148,35 @@ export class ProjectController extends Controller {
|
|
getDefaultLogo() {
|
|
getDefaultLogo() {
|
|
return this.DataDir + "/static/thumbnail.png";
|
|
return this.DataDir + "/static/thumbnail.png";
|
|
}
|
|
}
|
|
- createPath(fpath:string) {
|
|
|
|
|
|
+ createPath(fpath: string) {
|
|
return this.RootDir + "/" + fpath;
|
|
return this.RootDir + "/" + fpath;
|
|
}
|
|
}
|
|
-
|
|
|
|
|
|
|
|
- getSwiftUri(assetPath:string) {
|
|
|
|
- if (this._swiftLocal) return this.getLocalAbsoluteUri(assetPath);
|
|
|
|
- return this.getHttpAbsoluteUri(assetPath);
|
|
|
|
|
|
+ getSwiftUri(assetPath: string) {
|
|
|
|
+ if (this._swiftLocal) return this.getLocalAbsoluteUri(assetPath);
|
|
|
|
+ return this.getHttpAbsoluteUri(assetPath);
|
|
}
|
|
}
|
|
|
|
|
|
- getHttpAbsoluteUri(url:string) {
|
|
|
|
- if (url.substring(0,2) == "//" ) return "http://" + url;
|
|
|
|
|
|
+ getHttpAbsoluteUri(url: string) {
|
|
|
|
+ if (url.substring(0, 2) == "//") return "http://" + url;
|
|
if (url.substring(0, 4) == "http") return url;
|
|
if (url.substring(0, 4) == "http") return url;
|
|
- if (url.charAt(0) == '/') return this.HostURL + url.substring(1);
|
|
|
|
|
|
+ if (url.charAt(0) == "/") return this.HostURL + url.substring(1);
|
|
return this.HostURL + url;
|
|
return this.HostURL + url;
|
|
}
|
|
}
|
|
|
|
|
|
- getLocalAbsoluteUri(url:string) {
|
|
|
|
- if (url.substring(0,2) == "//" ) return "http://" + url;
|
|
|
|
|
|
+ getLocalAbsoluteUri(url: string) {
|
|
|
|
+ if (url.substring(0, 2) == "//") return "http://" + url;
|
|
if (url.substring(0, 4) == "http") return url;
|
|
if (url.substring(0, 4) == "http") return url;
|
|
- if (url.charAt(0) == '/') return this.RootDir + url;
|
|
|
|
|
|
+ if (url.charAt(0) == "/") return this.RootDir + url;
|
|
return this.RootDir + "/" + url;
|
|
return this.RootDir + "/" + url;
|
|
}
|
|
}
|
|
-
|
|
|
|
- getRelativeUri(url:string) {
|
|
|
|
|
|
+
|
|
|
|
+ getRelativeUri(url: string) {
|
|
let s = this.HostURL.length;
|
|
let s = this.HostURL.length;
|
|
let pre = url.substring(0, s);
|
|
let pre = url.substring(0, s);
|
|
- if (pre == this.HostURL) return url.substring(s+1);
|
|
|
|
|
|
+ if (pre == this.HostURL) return url.substring(s + 1);
|
|
|
|
|
|
- s = this.RootDir.length
|
|
|
|
|
|
+ s = this.RootDir.length;
|
|
pre = url.substring(0, s);
|
|
pre = url.substring(0, s);
|
|
if (pre == this.RootDir) return url.substring(s + 1);
|
|
if (pre == this.RootDir) return url.substring(s + 1);
|
|
|
|
|
|
@@ -161,7 +184,6 @@ export class ProjectController extends Controller {
|
|
}
|
|
}
|
|
|
|
|
|
async createProject(path: string) {
|
|
async createProject(path: string) {
|
|
-
|
|
|
|
const deviceCtrl = useCtx().deviceCtrl;
|
|
const deviceCtrl = useCtx().deviceCtrl;
|
|
const filePath = `${path}/project.spu3d`;
|
|
const filePath = `${path}/project.spu3d`;
|
|
const isFileExit = await deviceCtrl.IsFileExit(filePath);
|
|
const isFileExit = await deviceCtrl.IsFileExit(filePath);
|
|
@@ -204,7 +226,6 @@ export class ProjectController extends Controller {
|
|
}
|
|
}
|
|
|
|
|
|
async saveProjectSource() {
|
|
async saveProjectSource() {
|
|
-
|
|
|
|
const detail = await this.getProjectDetail(this.RootDir);
|
|
const detail = await this.getProjectDetail(this.RootDir);
|
|
detail.source = this.editor.pack.toJson();
|
|
detail.source = this.editor.pack.toJson();
|
|
detail.updateTime = new Date().toISOString();
|
|
detail.updateTime = new Date().toISOString();
|