mirror of
https://github.com/scratchfoundation/scratch-html5.git
synced 2024-12-04 21:01:04 -05:00
178 lines
5.6 KiB
JavaScript
178 lines
5.6 KiB
JavaScript
// Copyright (C) 2013 Massachusetts Institute of Technology
|
|
//
|
|
// This program is free software; you can redistribute it and/or
|
|
// modify it under the terms of the GNU General Public License version 2,
|
|
// as published by the Free Software Foundation.
|
|
//
|
|
// This program is distributed in the hope that it will be useful,
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
// GNU General Public License for more details.
|
|
//
|
|
// You should have received a copy of the GNU General Public License
|
|
// along with this program; if not, write to the Free Software
|
|
// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
|
|
|
'use strict';
|
|
|
|
var LooksPrims = function() {};
|
|
|
|
LooksPrims.prototype.addPrimsTo = function(primTable) {
|
|
primTable["show"] = this.primShow;
|
|
primTable["hide"] = this.primHide;
|
|
|
|
primTable["nextCostume"] = this.primNextCostume;
|
|
primTable["lookLike:"] = this.primShowCostume;
|
|
primTable["costumeIndex"] = this.primCostumeNum;
|
|
|
|
primTable["nextScene"] = this.primNextCostume;
|
|
primTable["showBackground:"] = this.primShowCostume;
|
|
primTable["backgroundIndex"] = this.primCostumeNum;
|
|
|
|
primTable["startScene"] = this.primStartScene;
|
|
primTable["backgroundIndex"] = this.primCostumeNum;
|
|
|
|
primTable["changeSizeBy:"] = this.primChangeSize;
|
|
primTable["setSizeTo:"] = this.primSetSize;
|
|
primTable["scale"] = this.primSize;
|
|
|
|
primTable["comeToFront"] = this.primGoFront;
|
|
primTable["goBackByLayers:"] = this.primGoBack;
|
|
|
|
primTable["changeGraphicEffect:by:"] = this.primChangeEffect;
|
|
primTable["setGraphicEffect:to:"] = this.primSetEffect;
|
|
primTable["filterReset"] = this.primClearEffects;
|
|
|
|
primTable["say:"] = function(b) { showBubble(b, 'say'); };
|
|
primTable["say:duration:elapsed:from:"] = function(b) { showBubbleAndWait(b, 'say'); };
|
|
primTable["think:"] = function(b) { showBubble(b, 'think'); };
|
|
primTable["think:duration:elapsed:from:"] = function(b) { showBubbleAndWait(b, 'think'); };
|
|
};
|
|
|
|
LooksPrims.prototype.primShow = function(b) {
|
|
interp.targetSprite().setVisible(true);
|
|
interp.redraw();
|
|
};
|
|
|
|
LooksPrims.prototype.primHide = function(b) {
|
|
interp.targetSprite().setVisible(false);
|
|
interp.redraw();
|
|
};
|
|
|
|
LooksPrims.prototype.primNextCostume = function(b) {
|
|
interp.targetSprite().showCostume(interp.targetSprite().currentCostumeIndex + 1);
|
|
interp.redraw();
|
|
};
|
|
|
|
LooksPrims.prototype.primShowCostume = function(b) {
|
|
var s = interp.targetSprite();
|
|
if (s == null) return;
|
|
var arg = interp.arg(b, 0);
|
|
if (typeof(arg) == 'number') {
|
|
s.showCostume(arg - 1);
|
|
} else {
|
|
if ((arg == 'CAMERA') || (arg == "CAMERA - MIRROR")) {
|
|
s.showCostumeNamed(arg);
|
|
return;
|
|
}
|
|
var i = s.indexOfCostumeNamed(arg);
|
|
if (i >= 0) {
|
|
s.showCostume(i);
|
|
} else {
|
|
var n = Number(arg);
|
|
if (!isNaN(n)) {
|
|
s.showCostume(n - 1);
|
|
} else {
|
|
return; // arg did not match a costume name nor is a valid number
|
|
}
|
|
}
|
|
}
|
|
if (s.visible) interp.redraw();
|
|
};
|
|
|
|
LooksPrims.prototype.primStartScene = function(b) {
|
|
var s = runtime.stage;
|
|
var arg = interp.arg(b, 0);
|
|
if (typeof(arg) == 'number') {
|
|
s.showCostume(arg - 1);
|
|
} else {
|
|
if ((arg == 'CAMERA') || (arg == "CAMERA - MIRROR")) {
|
|
s.showCostumeNamed(arg);
|
|
return;
|
|
}
|
|
var i = s.indexOfCostumeNamed(arg);
|
|
if (i >= 0) {
|
|
s.showCostume(i);
|
|
} else {
|
|
var n = Number(arg);
|
|
if (!isNaN(n)) {
|
|
s.showCostume(n - 1);
|
|
} else {
|
|
return; // arg did not match a costume name nor is a valid number
|
|
}
|
|
}
|
|
}
|
|
if (s.visible) interp.redraw();
|
|
};
|
|
|
|
LooksPrims.prototype.primCostumeNum = function(b) {
|
|
var s = interp.targetSprite();
|
|
return s == null ? 1 : s.currentCostumeIndex + 1;
|
|
};
|
|
|
|
LooksPrims.prototype.primChangeSize = function(b) {
|
|
var s = interp.targetSprite();
|
|
if (s == null) return;
|
|
s.setSize(s.getSize() + interp.arg(b, 0));
|
|
if (s.visible) interp.redraw();
|
|
};
|
|
|
|
LooksPrims.prototype.primSetSize = function(b) {
|
|
var s = interp.targetSprite();
|
|
if (s == null) return;
|
|
s.setSize(interp.arg(b, 0));
|
|
if (s.visible) interp.redraw();
|
|
};
|
|
|
|
LooksPrims.prototype.primSize = function(b) {
|
|
var s = interp.targetSprite();
|
|
if (s == null) return 100;
|
|
return s.getSize();
|
|
};
|
|
|
|
LooksPrims.prototype.primGoFront = function(b) {
|
|
var s = interp.targetSprite();
|
|
runtime.reassignZ(s, null);
|
|
if (s.visible) interp.redraw();
|
|
};
|
|
|
|
LooksPrims.prototype.primGoBack = function(b) {
|
|
var s = interp.targetSprite();
|
|
runtime.reassignZ(s, interp.arg(b, 0));
|
|
if (s.visible) interp.redraw();
|
|
};
|
|
|
|
LooksPrims.prototype.primChangeEffect = function(b) {};
|
|
|
|
LooksPrims.prototype.primSetEffect = function(b) {};
|
|
|
|
LooksPrims.prototype.primClearEffects = function(b) {};
|
|
|
|
var showBubble = function(b, type) {
|
|
var s = interp.targetSprite();
|
|
if (s != null) s.showBubble(interp.arg(b, 0), type);
|
|
};
|
|
|
|
var showBubbleAndWait = function(b, type) {
|
|
var s = interp.targetSprite();
|
|
if (s == null) return;
|
|
if (interp.activeThread.firstTime) {
|
|
var text = interp.arg(b, 0);
|
|
var secs = interp.arg(b, 1);
|
|
s.showBubble(text, type);
|
|
if (s.visible) interp.redraw();
|
|
interp.startTimer(secs);
|
|
} else {
|
|
if (interp.checkTimer()) s.hideBubble();
|
|
}
|
|
};
|