OSDN Git Service

86b0ff5ff1ac1e2e45e038cad660c92822671780
[mikumikustudio/MikuMikuStudio.git] / src / projectkyoto / jme3 / mmd / Skin.java
1 /*
2  * Copyright (c) 2011 Kazuhiko Kobayashi All rights reserved.
3  * <p/>
4  * Redistribution and use in source and binary forms, with or without
5  * modification, are permitted provided that the following conditions are met:
6  * 
7  * * Redistributions of source code must retain the above copyright notice,
8  * this list of conditions and the following disclaimer.
9  * <p/>
10  * * Redistributions in binary form must reproduce the above copyright
11  * notice, this list of conditions and the following disclaimer in the
12  * documentation and/or other materials provided with the distribution.
13  * <p/>
14  * * Neither the name of 'MMDLoaderJME' nor the names of its contributors
15  * may be used to endorse or promote products derived from this software
16  * without specific prior written permission.
17  * <p/>
18  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
19  * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
20  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
21  * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
22  * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
23  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
24  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
25  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
26  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
27  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
28  * POSSIBILITY OF SUCH DAMAGE.
29  */
30 package projectkyoto.jme3.mmd;
31
32 import projectkyoto.mmd.file.PMDSkinData;
33
34 /**
35  *
36  * @author kobayasi
37  */
38 public class Skin implements Cloneable{
39
40     String skinName;
41     float weight = 0f;
42     PMDSkinData skinData;
43     PMDNode pmdNode;
44     boolean updateNeeded = false;
45
46     public Skin(PMDNode pmdNode, String skinName) {
47         this.pmdNode = pmdNode;
48         this.skinName = skinName;
49     }
50
51     public Skin() {
52     }
53
54     public String getSkinName() {
55         return skinName;
56     }
57
58     public void setSkinName(String skinName) {
59         this.skinName = skinName;
60     }
61
62     public float getWeight() {
63         return weight;
64     }
65
66     public void setWeight(float weight) {
67         if (this.weight != weight) {
68             this.weight = weight;
69             pmdNode.setUpdateNeeded(true);
70             setUpdateNeeded(true);
71         }
72     }
73
74     public PMDSkinData getSkinData() {
75         return skinData;
76     }
77
78     public void setSkinData(PMDSkinData skinData) {
79         this.skinData = skinData;
80     }
81
82     public boolean isUpdateNeeded() {
83         return updateNeeded;
84     }
85
86     public void setUpdateNeeded(boolean updateNeeded) {
87         this.updateNeeded = updateNeeded;
88     }
89
90     @Override
91     protected Skin clone() throws CloneNotSupportedException {
92         return (Skin)super.clone();
93     }
94     
95 }