Rename kaas en klomp to OK
This commit is contained in:
parent
e3e5c2fb15
commit
0607ac2e89
|
@ -11,14 +11,14 @@ import love.distributedrebirth.demo4d.base2t.V009TyteBaseAppender;
|
||||||
* @author willemtsade ©Δ∞ 仙上主天
|
* @author willemtsade ©Δ∞ 仙上主天
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
public class KaassGetậl implements BaseNumberTyte<KaassGetậl> {
|
public class OKaassGetậl implements BaseNumberTyte<OKaassGetậl> {
|
||||||
|
|
||||||
private KlompGetậl[] kaas;
|
private OKlompGetậl[] kaas;
|
||||||
private final int kaasCuts;
|
private final int kaasCuts;
|
||||||
|
|
||||||
public KaassGetậl(int kaasCuts) {
|
public OKaassGetậl(int kaasCuts) {
|
||||||
this.kaasCuts = kaasCuts;
|
this.kaasCuts = kaasCuts;
|
||||||
this.kaas = new KlompGetậl[kaasCuts];
|
this.kaas = new OKlompGetậl[kaasCuts];
|
||||||
}
|
}
|
||||||
|
|
||||||
public final int getKaasCuts() {
|
public final int getKaasCuts() {
|
||||||
|
@ -35,39 +35,39 @@ public class KaassGetậl implements BaseNumberTyte<KaassGetậl> {
|
||||||
return part;
|
return part;
|
||||||
}
|
}
|
||||||
|
|
||||||
public final KlompGetậl getValue(int part) {
|
public final OKlompGetậl getValue(int part) {
|
||||||
return kaas[validatePartRequest(part)];
|
return kaas[validatePartRequest(part)];
|
||||||
}
|
}
|
||||||
|
|
||||||
public final void setValue(int part, KlompGetậl value) {
|
public final void setValue(int part, OKlompGetậl value) {
|
||||||
kaas[validatePartRequest(part)] = value;
|
kaas[validatePartRequest(part)] = value;
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public final KaassGetậl toClone() {
|
public final OKaassGetậl toClone() {
|
||||||
KaassGetậl result = new KaassGetậl(getKaasCuts());
|
OKaassGetậl result = new OKaassGetậl(getKaasCuts());
|
||||||
T08PartOctalBaseIterator clonedOctals = cloneIterator();
|
T08PartOctalBaseIterator clonedOctals = cloneIterator();
|
||||||
for (int i=0;i<getKaasCuts();i++) {
|
for (int i=0;i<getKaasCuts();i++) {
|
||||||
result.setValue(i, new KlompGetậl(clonedOctals));
|
result.setValue(i, new OKlompGetậl(clonedOctals));
|
||||||
}
|
}
|
||||||
return result;
|
return result;
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public final int getBitCount() {
|
public final int getBitCount() {
|
||||||
return KlompGetậl.BIT_COUNT * kaasCuts;
|
return OKlompGetậl.BIT_COUNT * kaasCuts;
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public final void fillOctalValues(T08PartOctalBaseAppender appender) {
|
public final void fillOctalValues(T08PartOctalBaseAppender appender) {
|
||||||
for (KlompGetậl value:kaas) {
|
for (OKlompGetậl value:kaas) {
|
||||||
value.fillOctalValues(appender);
|
value.fillOctalValues(appender);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void fillTyteValues(V009TyteBaseAppender appender) {
|
public void fillTyteValues(V009TyteBaseAppender appender) {
|
||||||
for (KlompGetậl value:kaas) {
|
for (OKlompGetậl value:kaas) {
|
||||||
value.fillTyteValues(appender);
|
value.fillTyteValues(appender);
|
||||||
}
|
}
|
||||||
}
|
}
|
|
@ -17,18 +17,18 @@ import love.distributedrebirth.demo4d.base2t.VCA8Tath;
|
||||||
* @author willemtsade ©Δ∞ 仙上主天
|
* @author willemtsade ©Δ∞ 仙上主天
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
public class KlompGetậl implements BaseNumberTyte<KlompGetậl> {
|
public class OKlompGetậl implements BaseNumberTyte<OKlompGetậl> {
|
||||||
|
|
||||||
public static int BIT_COUNT = V654Triz.BIT_COUNT * T08PartOctal.LENGTH;
|
public static int BIT_COUNT = V654Triz.BIT_COUNT * T08PartOctal.LENGTH;
|
||||||
private final VCA8Tath[] values = new VCA8Tath[T08PartOctal.LENGTH];
|
private final VCA8Tath[] values = new VCA8Tath[T08PartOctal.LENGTH];
|
||||||
|
|
||||||
public KlompGetậl() {
|
public OKlompGetậl() {
|
||||||
for (int i=0;i<T08PartOctal.LENGTH;i++) {
|
for (int i=0;i<T08PartOctal.LENGTH;i++) {
|
||||||
this.values[i] = new VCA8Tath();
|
this.values[i] = new VCA8Tath();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
public KlompGetậl(T08PartOctalBaseIterator values) {
|
public OKlompGetậl(T08PartOctalBaseIterator values) {
|
||||||
for (int i=0;i<T08PartOctal.LENGTH;i++) {
|
for (int i=0;i<T08PartOctal.LENGTH;i++) {
|
||||||
this.values[i] = new VCA8Tath(values);
|
this.values[i] = new VCA8Tath(values);
|
||||||
}
|
}
|
||||||
|
@ -48,8 +48,8 @@ public class KlompGetậl implements BaseNumberTyte<KlompGetậl> {
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public KlompGetậl toClone() {
|
public OKlompGetậl toClone() {
|
||||||
return new KlompGetậl(cloneIterator());
|
return new OKlompGetậl(cloneIterator());
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
Loading…
Reference in a new issue