-
Notifications
You must be signed in to change notification settings - Fork 1.3k
Expand file tree
/
Copy pathBaseTextureAtlasSource.java
More file actions
106 lines (86 loc) · 2.87 KB
/
BaseTextureAtlasSource.java
File metadata and controls
106 lines (86 loc) · 2.87 KB
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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
package org.andengine.opengl.texture.atlas.source;
/**
* (c) 2010 Nicolas Gramlich
* (c) 2011 Zynga Inc.
*
* @author Nicolas Gramlich
* @since 13:55:12 - 12.07.2011
*/
public abstract class BaseTextureAtlasSource implements ITextureAtlasSource {
// ===========================================================
// Constants
// ===========================================================
// ===========================================================
// Fields
// ===========================================================
protected int mTextureX;
protected int mTextureY;
protected int mTextureWidth;
protected int mTextureHeight;
protected int mSampleSize;
// ===========================================================
// Constructors
// ===========================================================
public BaseTextureAtlasSource(final int pTextureX, final int pTextureY, final int pTextureWidth, final int pTextureHeight, final int pSampleSize) {
this.mTextureX = pTextureX;
this.mTextureY = pTextureY;
this.mTextureWidth = pTextureWidth;
this.mTextureHeight = pTextureHeight;
this.mSampleSize = pSampleSize;
}
public BaseTextureAtlasSource(final int pTextureX, final int pTextureY, final int pTextureWidth, final int pTextureHeight) {
this(pTextureX, pTextureY, pTextureWidth, pTextureHeight, 1);
}
// ===========================================================
// Getter & Setter
// ===========================================================
@Override
public int getTextureX() {
return this.mTextureX;
}
@Override
public int getTextureY() {
return this.mTextureY;
}
@Override
public void setTextureX(final int pTextureX) {
this.mTextureX = pTextureX;
}
@Override
public void setTextureY(final int pTextureY) {
this.mTextureY = pTextureY;
}
@Override
public int getTextureWidth() {
return this.mTextureWidth;
}
@Override
public int getTextureHeight() {
return this.mTextureHeight;
}
@Override
public void setTextureWidth(final int pTextureWidth) {
this.mTextureWidth = pTextureWidth;
}
@Override
public void setTextureHeight(final int pTextureHeight) {
this.mTextureHeight = pTextureHeight;
}
// ===========================================================
// Methods for/from SuperClass/Interfaces
// ===========================================================
@Override
public int getSampleSize() {
return mSampleSize;
}
@Override
public String toString() {
return this.getClass().getSimpleName() + "( " + this.getTextureWidth() + "x" + this.getTextureHeight() + " @ "+ this.mTextureX + "/" + this.mTextureY + " )";
}
// ===========================================================
// Methods
// ===========================================================
// ===========================================================
// Inner and Anonymous Classes
// ===========================================================
}