forked from External/mage
50 lines
1.4 KiB
Java
50 lines
1.4 KiB
Java
package mage.cards.decks;
|
|
|
|
import mage.util.Copyable;
|
|
|
|
import java.util.ArrayList;
|
|
import java.util.List;
|
|
|
|
/**
|
|
* Created by stravant@gmail.com on 2016-10-03.
|
|
*/
|
|
public class DeckCardLayout implements Copyable<DeckCardLayout> {
|
|
|
|
private final List<List<List<DeckCardInfo>>> cards;
|
|
private final String settings;
|
|
|
|
public DeckCardLayout(final DeckCardLayout layout) {
|
|
this.cards = new ArrayList<>();
|
|
for (int i1 = 0; i1 < layout.cards.size(); i1++) {
|
|
List<List<DeckCardInfo>> list1 = new ArrayList<>();
|
|
this.cards.add(list1);
|
|
for (int i2 = 0; i2 < layout.cards.get(i1).size(); i2++) {
|
|
List<DeckCardInfo> list2 = new ArrayList<>();
|
|
list1.add(list2);
|
|
for (int i3 = 0; i3 < layout.cards.get(i1).get(i2).size(); i3++) {
|
|
DeckCardInfo info = layout.cards.get(i1).get(i2).get(i3);
|
|
list2.add(info.copy());
|
|
}
|
|
}
|
|
}
|
|
this.settings = layout.settings;
|
|
}
|
|
|
|
public DeckCardLayout(List<List<List<DeckCardInfo>>> cards, String settings) {
|
|
this.cards = cards;
|
|
this.settings = settings;
|
|
}
|
|
|
|
public List<List<List<DeckCardInfo>>> getCards() {
|
|
return cards;
|
|
}
|
|
|
|
public String getSettings() {
|
|
return settings;
|
|
}
|
|
|
|
@Override
|
|
public DeckCardLayout copy() {
|
|
return new DeckCardLayout(this);
|
|
}
|
|
}
|