From 01e692b353ff6943e431f62875a1854aa35f6e3f Mon Sep 17 00:00:00 2001
From: syuilo <Syuilotan@yahoo.co.jp>
Date: Mon, 19 Aug 2019 15:59:36 +0900
Subject: [PATCH] Refactor

---
 src/client/app/common/scripts/room/room.ts | 40 ++++++++++++++++++++--
 1 file changed, 38 insertions(+), 2 deletions(-)

diff --git a/src/client/app/common/scripts/room/room.ts b/src/client/app/common/scripts/room/room.ts
index a0f1b9722..d5df9a54e 100644
--- a/src/client/app/common/scripts/room/room.ts
+++ b/src/client/app/common/scripts/room/room.ts
@@ -441,7 +441,7 @@ export class Room {
 	}
 
 	@autobind
-	public applyCustomColor(model: THREE.Object3D) {
+	private applyCustomColor(model: THREE.Object3D) {
 		const furniture = this.furnitures.find(furniture => furniture.id === model.name);
 		const def = furnitureDefs.find(d => d.id === furniture.type);
 		if (def.color == null) return;
@@ -465,7 +465,7 @@ export class Room {
 	}
 
 	@autobind
-	public applyCustomTexture(model: THREE.Object3D) {
+	private applyCustomTexture(model: THREE.Object3D) {
 		const furniture = this.furnitures.find(furniture => furniture.id === model.name);
 		const def = furnitureDefs.find(d => d.id === furniture.type);
 		if (def.texture == null) return;
@@ -619,6 +619,10 @@ export class Room {
 		});
 	}
 
+	/**
+	 * 家具の移動/回転モードにします
+	 * @param type 移動か回転か
+	 */
 	@autobind
 	public enterTransformMode(type: 'translate' | 'rotate') {
 		this.isTransformMode = true;
@@ -626,12 +630,20 @@ export class Room {
 		this.furnitureControl.attach(this.selectedObject);
 	}
 
+	/**
+	 * 家具の移動/回転モードを終了します
+	 */
 	@autobind
 	public exitTransformMode() {
 		this.isTransformMode = false;
 		this.furnitureControl.detach();
 	}
 
+	/**
+	 * 家具プロパティを更新します
+	 * @param key プロパティ名
+	 * @param value 値
+	 */
 	@autobind
 	public updateProp(key: string, value: any) {
 		const furniture = this.furnitures.find(furniture => furniture.id === this.selectedObject.name);
@@ -641,6 +653,10 @@ export class Room {
 		this.applyCustomTexture(this.selectedObject);
 	}
 
+	/**
+	 * 部屋に家具を追加します
+	 * @param type 家具の種類
+	 */
 	@autobind
 	public addFurniture(type: string) {
 		const furniture = {
@@ -666,6 +682,9 @@ export class Room {
 		});
 	}
 
+	/**
+	 * 現在選択されている家具を部屋から削除します
+	 */
 	@autobind
 	public removeFurniture() {
 		this.exitTransformMode();
@@ -677,12 +696,20 @@ export class Room {
 		this.onChangeSelect(null);
 	}
 
+	/**
+	 * 部屋の床の色を変更します
+	 * @param color 色
+	 */
 	@autobind
 	public updateCarpetColor(color: string) {
 		this.roomInfo.carpetColor = color;
 		this.applyCarpetColor();
 	}
 
+	/**
+	 * 部屋の種類を変更します
+	 * @param type 種類
+	 */
 	@autobind
 	public changeRoomType(type: string) {
 		this.roomInfo.roomType = type;
@@ -690,6 +717,9 @@ export class Room {
 		this.loadRoom();
 	}
 
+	/**
+	 * 部屋データを取得します
+	 */
 	@autobind
 	public getRoomInfo() {
 		for (const obj of this.objects) {
@@ -705,6 +735,9 @@ export class Room {
 		return this.roomInfo;
 	}
 
+	/**
+	 * 選択されている家具を取得します
+	 */
 	@autobind
 	public getSelectedObject() {
 		return this.selectedObject;
@@ -715,6 +748,9 @@ export class Room {
 		return this.furnitures.find(furniture => furniture.id === id);
 	}
 
+	/**
+	 * レンダリングを終了します
+	 */
 	@autobind
 	public destroy() {
 		// Stop render loop