|
@@ -6,10 +6,18 @@ import dragAndDrop from '../../../helpers/dragAndDrop';
|
|
|
|
|
|
import GuiableContainer from '../../../helpers/Guiable';
|
|
import GuiableContainer from '../../../helpers/Guiable';
|
|
|
|
|
|
|
|
+import Deck from '../../assets/deck';
|
|
|
|
|
|
|
|
|
|
-const DefaultImageUrl = '/files/assets/ui/woodenbutton.png';
|
|
|
|
-const DefaultImage = PIXI.Texture.fromImage(DefaultImageUrl);
|
|
|
|
|
|
+
|
|
|
|
+const BlueURL = '/files/assets/cards/frame_blue.png';
|
|
|
|
+const BlueImage = PIXI.Texture.fromImage(BlueURL);
|
|
|
|
+
|
|
|
|
+const RedURL = '/files/assets/cards/frame_red.png';
|
|
|
|
+const RedImage = PIXI.Texture.fromImage(RedURL);
|
|
|
|
+
|
|
|
|
+const LabelURL = '/files/assets/cards/label.png';
|
|
|
|
+const LabelImage = PIXI.Texture.fromImage(LabelURL);
|
|
|
|
|
|
class Card extends GuiableContainer{
|
|
class Card extends GuiableContainer{
|
|
constructor(props) {
|
|
constructor(props) {
|
|
@@ -21,7 +29,7 @@ class Card extends GuiableContainer{
|
|
} = props;
|
|
} = props;
|
|
|
|
|
|
// Properties Component
|
|
// Properties Component
|
|
- this.imageURL = image || getParam('imageURL') || DefaultImageUrl;
|
|
|
|
|
|
+ this.imageURL = image || getParam('imageURL');
|
|
this.position.set(x,y);
|
|
this.position.set(x,y);
|
|
|
|
|
|
this.x = x || 0;
|
|
this.x = x || 0;
|
|
@@ -32,43 +40,66 @@ class Card extends GuiableContainer{
|
|
this.addToFolder('Card', this, 'imageURL').onFinishChange((v) => this.loadImage(v));
|
|
this.addToFolder('Card', this, 'imageURL').onFinishChange((v) => this.loadImage(v));
|
|
this.addToFolder('Card', this, 'x').onFinishChange((v) => this.position.x = v);
|
|
this.addToFolder('Card', this, 'x').onFinishChange((v) => this.position.x = v);
|
|
this.addToFolder('Card', this, 'y').onFinishChange((v) => this.position.y = v);
|
|
this.addToFolder('Card', this, 'y').onFinishChange((v) => this.position.y = v);
|
|
|
|
+ this.addToFolder('Card', {team: false}, 'team').onFinishChange((v) => this.setTeam(v));
|
|
|
|
+ this.addToFolder('Card', {card: 0}, 'card', 0, 1).onFinishChange((v) => this.loadCard(v));
|
|
//
|
|
//
|
|
|
|
|
|
this.construct(props);
|
|
this.construct(props);
|
|
- window.MM = this;
|
|
|
|
}
|
|
}
|
|
|
|
|
|
construct(props) {
|
|
construct(props) {
|
|
- let [w,h] = [200,320];
|
|
|
|
|
|
+ let [w,h] = [819/3,1020/3];
|
|
|
|
|
|
- this.sprite = new PIXI.Sprite(DefaultImage);
|
|
|
|
|
|
+ this.sprite = new PIXI.Sprite();
|
|
this.sprite.anchor.set(0.5,0.5);
|
|
this.sprite.anchor.set(0.5,0.5);
|
|
- this.sprite.width = w;
|
|
|
|
- this.sprite.height= h;
|
|
|
|
|
|
+ this.sprite.width = w-30;
|
|
|
|
+ this.sprite.height= h-30*h/w;
|
|
|
|
+
|
|
|
|
+ this.frame = new PIXI.Sprite(BlueImage);
|
|
|
|
+ this.frame.anchor.set(0.5,0.5);
|
|
|
|
+ this.frame.width = w;
|
|
|
|
+ this.frame.height= h;
|
|
|
|
+ //this.frame.setTexture(RedImage);
|
|
|
|
+
|
|
|
|
+ let [lw,lh] = [1983/12,737/12];
|
|
|
|
+ this.label = new PIXI.Sprite(LabelImage);
|
|
|
|
+ this.label.anchor.set(0.5,0.5);
|
|
|
|
+ this.label.width = lw;
|
|
|
|
+ this.label.height= lh;
|
|
|
|
+ this.label.position.set(0,100);
|
|
|
|
+
|
|
|
|
|
|
this.interactive = true;
|
|
this.interactive = true;
|
|
this.hitArea = new PIXI.Rectangle(-w/2,-h/2,w,h);
|
|
this.hitArea = new PIXI.Rectangle(-w/2,-h/2,w,h);
|
|
this.cursor = 'pointer';
|
|
this.cursor = 'pointer';
|
|
|
|
|
|
this.addChild(this.sprite);
|
|
this.addChild(this.sprite);
|
|
|
|
+ this.addChild(this.label);
|
|
|
|
+ this.addChild(this.frame);
|
|
dragAndDrop(this);
|
|
dragAndDrop(this);
|
|
|
|
|
|
- this.loadImage(this.imageURL);
|
|
|
|
-
|
|
|
|
|
|
+ this.loadCard(0);
|
|
|
|
+ }
|
|
|
|
|
|
- this._tween = PIXI.tweenManager.createTween(this);
|
|
|
|
- this._tween.time = 1000;
|
|
|
|
- this._tween.easing = PIXI.tween.Easing.outQuart();
|
|
|
|
- this._tween.loop = false;
|
|
|
|
|
|
+ setTeam(team) {
|
|
|
|
+ switch(team) {
|
|
|
|
+ case 0: case 'R': case 'r': case false:
|
|
|
|
+ this.frame.setTexture(RedImage);
|
|
|
|
+ break;
|
|
|
|
+ case 1: case 'B': case 'b': case true:
|
|
|
|
+ this.frame.setTexture(BlueImage);
|
|
|
|
+ break;
|
|
|
|
+ default:break;
|
|
|
|
+ }
|
|
}
|
|
}
|
|
|
|
|
|
- loadImage(img) {
|
|
|
|
- this.imageURL = img;
|
|
|
|
- this.setTexture(PIXI.Texture.fromImage(img));
|
|
|
|
|
|
+ loadCard(number) {
|
|
|
|
+ this.imageURL = Deck.Filenames[number];
|
|
|
|
+ this.setTexture(Deck.Textures[number]);
|
|
}
|
|
}
|
|
|
|
|
|
setTexture(texture) {
|
|
setTexture(texture) {
|
|
- this.sprite.texture = texture;
|
|
|
|
|
|
+ this.sprite.setTexture(texture);
|
|
}
|
|
}
|
|
|
|
|
|
onClick(fn) {
|
|
onClick(fn) {
|
|
@@ -79,12 +110,18 @@ class Card extends GuiableContainer{
|
|
moveTo(point, milliseconds=1000) {
|
|
moveTo(point, milliseconds=1000) {
|
|
let path = new PIXI.tween.TweenPath();
|
|
let path = new PIXI.tween.TweenPath();
|
|
path.moveTo(this.position.x, this.position.y).lineTo(point.x, point.y);
|
|
path.moveTo(this.position.x, this.position.y).lineTo(point.x, point.y);
|
|
|
|
+ this._tween = PIXI.tweenManager.createTween(this);
|
|
|
|
+ this._tween.easing = PIXI.tween.Easing.outQuart();
|
|
|
|
+ this._tween.loop = false;
|
|
this._tween.path = path;
|
|
this._tween.path = path;
|
|
this._tween.time = milliseconds;
|
|
this._tween.time = milliseconds;
|
|
this._tween.start();
|
|
this._tween.start();
|
|
}
|
|
}
|
|
// Animate Scale
|
|
// Animate Scale
|
|
scaleTo(newscale, milliseconds=1000) {
|
|
scaleTo(newscale, milliseconds=1000) {
|
|
|
|
+ this._tween = PIXI.tweenManager.createTween(this);
|
|
|
|
+ this._tween.easing = PIXI.tween.Easing.outQuart();
|
|
|
|
+ this._tween.loop = false;
|
|
this._tween.from({
|
|
this._tween.from({
|
|
scale: { x: this.scale.x, y: this.scale.y }
|
|
scale: { x: this.scale.x, y: this.scale.y }
|
|
});
|
|
});
|