2016-04-07 21:52:02 +02:00
|
|
|
namespace pxsim.micro_bit {
|
2016-05-05 17:57:44 +02:00
|
|
|
const svg = pxsim.svg;
|
2016-03-11 01:24:11 +01:00
|
|
|
|
|
|
|
export interface IBoardTheme {
|
|
|
|
accent?: string;
|
|
|
|
display?: string;
|
|
|
|
pin?: string;
|
|
|
|
pinTouched?: string;
|
|
|
|
pinActive?: string;
|
|
|
|
ledOn?: string;
|
|
|
|
ledOff?: string;
|
|
|
|
buttonOuter?: string;
|
|
|
|
buttonUp?: string;
|
|
|
|
buttonDown?: string;
|
2016-03-18 21:55:07 +01:00
|
|
|
virtualButtonOuter?: string;
|
|
|
|
virtualButtonUp?: string;
|
|
|
|
virtualButtonDown?: string;
|
2016-05-05 08:31:55 +02:00
|
|
|
lightLevelOn?: string;
|
2016-03-11 22:17:49 +01:00
|
|
|
lightLevelOff?: string;
|
2016-03-11 01:24:11 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
export var themes: IBoardTheme[] = ["#3ADCFE", "#FFD43A", "#3AFFB3", "#FF3A54"].map(accent => {
|
|
|
|
return {
|
|
|
|
accent: accent,
|
|
|
|
display: "#000",
|
|
|
|
pin: "#D4AF37",
|
|
|
|
pinTouched: "#FFA500",
|
2016-05-05 08:31:55 +02:00
|
|
|
pinActive: "#FF5500",
|
2016-03-11 01:24:11 +01:00
|
|
|
ledOn: "#ff7f7f",
|
|
|
|
ledOff: "#202020",
|
|
|
|
buttonOuter: "#979797",
|
|
|
|
buttonUp: "#000",
|
|
|
|
buttonDown: "#FFA500",
|
2016-03-18 21:55:07 +01:00
|
|
|
virtualButtonOuter: "#333",
|
|
|
|
virtualButtonUp: "#fff",
|
2016-03-11 22:17:49 +01:00
|
|
|
lightLevelOn: "yellow",
|
|
|
|
lightLevelOff: "#555"
|
2016-05-05 08:31:55 +02:00
|
|
|
}
|
|
|
|
});
|
2016-03-11 01:24:11 +01:00
|
|
|
|
2016-05-05 08:31:55 +02:00
|
|
|
export function randomTheme(): IBoardTheme {
|
2016-03-11 01:24:11 +01:00
|
|
|
return themes[Math.floor(Math.random() * themes.length)];
|
|
|
|
}
|
|
|
|
|
|
|
|
export interface IBoardProps {
|
2016-04-07 21:52:02 +02:00
|
|
|
runtime: pxsim.Runtime;
|
2016-03-11 01:24:11 +01:00
|
|
|
theme?: IBoardTheme;
|
2016-05-05 08:31:55 +02:00
|
|
|
disableTilt?: boolean;
|
2016-03-11 01:24:11 +01:00
|
|
|
}
|
2016-05-05 08:31:55 +02:00
|
|
|
|
2016-04-11 19:58:09 +02:00
|
|
|
const pointerEvents = !!(window as any).PointerEvent ? {
|
|
|
|
up: "pointerup",
|
|
|
|
down: "pointerdown",
|
|
|
|
move: "pointermove",
|
|
|
|
leave: "pointerleave"
|
|
|
|
} : {
|
2016-05-05 08:31:55 +02:00
|
|
|
up: "mouseup",
|
|
|
|
down: "mousedown",
|
|
|
|
move: "mousemove",
|
|
|
|
leave: "mouseleave"
|
|
|
|
};
|
|
|
|
|
|
|
|
export class MicrobitBoardSvg {
|
|
|
|
public element: SVGSVGElement;
|
2016-03-24 21:56:51 +01:00
|
|
|
private style: SVGStyleElement;
|
2016-05-05 08:31:55 +02:00
|
|
|
private defs: SVGDefsElement;
|
2016-03-11 01:24:11 +01:00
|
|
|
private g: SVGElement;
|
2016-05-05 08:31:55 +02:00
|
|
|
|
2016-03-11 01:24:11 +01:00
|
|
|
private logos: SVGElement[];
|
|
|
|
private head: SVGGElement; private headInitialized = false;
|
|
|
|
private headText: SVGTextElement;
|
|
|
|
private display: SVGElement;
|
|
|
|
private buttons: SVGElement[];
|
|
|
|
private buttonsOuter: SVGElement[];
|
2016-05-05 08:31:55 +02:00
|
|
|
private buttonABText: SVGTextElement;
|
2016-03-11 01:24:11 +01:00
|
|
|
private pins: SVGElement[];
|
|
|
|
private pinGradients: SVGLinearGradientElement[];
|
|
|
|
private pinTexts: SVGTextElement[];
|
|
|
|
private ledsOuter: SVGElement[];
|
|
|
|
private leds: SVGElement[];
|
|
|
|
private systemLed: SVGCircleElement;
|
|
|
|
private antenna: SVGPolylineElement;
|
2016-03-11 22:17:49 +01:00
|
|
|
private lightLevelButton: SVGCircleElement;
|
2016-05-05 08:31:55 +02:00
|
|
|
private lightLevelGradient: SVGLinearGradientElement;
|
2016-03-12 00:10:36 +01:00
|
|
|
private lightLevelText: SVGTextElement;
|
2016-05-05 08:31:55 +02:00
|
|
|
private thermometerGradient: SVGLinearGradientElement;
|
2016-03-14 22:03:31 +01:00
|
|
|
private thermometer: SVGRectElement;
|
|
|
|
private thermometerText: SVGTextElement;
|
2016-03-18 22:54:27 +01:00
|
|
|
private shakeButton: SVGCircleElement;
|
|
|
|
private shakeText: SVGTextElement;
|
2016-05-05 08:31:55 +02:00
|
|
|
public board: pxsim.Board;
|
|
|
|
|
2016-03-11 01:24:11 +01:00
|
|
|
constructor(public props: IBoardProps) {
|
2016-04-07 21:52:02 +02:00
|
|
|
this.board = this.props.runtime.board as pxsim.Board;
|
2016-03-11 01:24:11 +01:00
|
|
|
this.board.updateView = () => this.updateState();
|
2016-05-05 08:31:55 +02:00
|
|
|
this.buildDom();
|
2016-03-11 01:24:11 +01:00
|
|
|
this.updateTheme();
|
|
|
|
this.updateState();
|
|
|
|
this.attachEvents();
|
|
|
|
}
|
2016-05-05 08:31:55 +02:00
|
|
|
|
2016-03-11 01:24:11 +01:00
|
|
|
private updateTheme() {
|
|
|
|
let theme = this.props.theme;
|
2016-05-05 08:31:55 +02:00
|
|
|
|
2016-05-05 17:57:44 +02:00
|
|
|
svg.fill(this.display, theme.display);
|
|
|
|
svg.fills(this.leds, theme.ledOn);
|
|
|
|
svg.fills(this.ledsOuter, theme.ledOff);
|
|
|
|
svg.fills(this.buttonsOuter.slice(0, 2), theme.buttonOuter);
|
|
|
|
svg.fills(this.buttons.slice(0, 2), theme.buttonUp);
|
|
|
|
svg.fill(this.buttonsOuter[2], theme.virtualButtonOuter);
|
|
|
|
svg.fill(this.buttons[2], theme.virtualButtonUp);
|
|
|
|
svg.fills(this.logos, theme.accent);
|
|
|
|
if (this.shakeButton) svg.fill(this.shakeButton, theme.virtualButtonUp);
|
2016-05-05 08:31:55 +02:00
|
|
|
|
2016-05-05 17:57:44 +02:00
|
|
|
this.pinGradients.forEach(lg => svg.setGradientColors(lg, theme.pin, theme.pinActive));
|
|
|
|
svg.setGradientColors(this.lightLevelGradient, theme.lightLevelOn, theme.lightLevelOff);
|
2016-05-05 08:31:55 +02:00
|
|
|
|
2016-05-05 17:57:44 +02:00
|
|
|
svg.setGradientColors(this.thermometerGradient, theme.ledOff, theme.ledOn);
|
2016-03-11 01:24:11 +01:00
|
|
|
}
|
2016-05-05 08:31:55 +02:00
|
|
|
|
2016-03-11 01:24:11 +01:00
|
|
|
public updateState() {
|
|
|
|
let state = this.board;
|
|
|
|
if (!state) return;
|
|
|
|
let theme = this.props.theme;
|
2016-05-05 08:31:55 +02:00
|
|
|
|
2016-03-11 01:24:11 +01:00
|
|
|
state.buttons.forEach((btn, index) => {
|
2016-05-05 17:57:44 +02:00
|
|
|
svg.fill(this.buttons[index], btn.pressed ? theme.buttonDown : theme.buttonUp);
|
2016-03-11 01:24:11 +01:00
|
|
|
});
|
2016-05-05 08:31:55 +02:00
|
|
|
|
|
|
|
let bw = state.displayMode == pxsim.DisplayMode.bw
|
|
|
|
let img = state.image;
|
|
|
|
this.leds.forEach((led, i) => {
|
|
|
|
let sel = (<SVGStylable><any>led)
|
2016-03-11 01:24:11 +01:00
|
|
|
sel.style.opacity = ((bw ? img.data[i] > 0 ? 255 : 0 : img.data[i]) / 255.0) + "";
|
|
|
|
})
|
|
|
|
this.updatePins();
|
|
|
|
this.updateTilt();
|
2016-05-05 08:31:55 +02:00
|
|
|
this.updateHeading();
|
2016-03-14 22:03:31 +01:00
|
|
|
this.updateLightLevel();
|
2016-05-05 08:31:55 +02:00
|
|
|
this.updateTemperature();
|
|
|
|
this.updateButtonAB();
|
|
|
|
this.updateGestures();
|
|
|
|
|
2016-05-05 17:57:44 +02:00
|
|
|
if (!runtime || runtime.dead) svg.addClass(this.element, "grayscale");
|
|
|
|
else svg.removeClass(this.element, "grayscale");
|
2016-03-18 22:54:27 +01:00
|
|
|
}
|
2016-05-05 08:31:55 +02:00
|
|
|
|
2016-03-18 22:54:27 +01:00
|
|
|
private updateGestures() {
|
|
|
|
let state = this.board;
|
|
|
|
if (state.useShake && !this.shakeButton) {
|
2016-05-05 17:57:44 +02:00
|
|
|
this.shakeButton = svg.child(this.g, "circle", { cx: 380, cy: 100, r: 16.5 }) as SVGCircleElement;
|
|
|
|
svg.fill(this.shakeButton, this.props.theme.virtualButtonUp)
|
2016-04-11 19:58:09 +02:00
|
|
|
this.shakeButton.addEventListener(pointerEvents.down, ev => {
|
2016-03-18 22:54:27 +01:00
|
|
|
let state = this.board;
|
2016-05-05 17:57:44 +02:00
|
|
|
svg.fill(this.shakeButton, this.props.theme.buttonDown);
|
2016-03-18 22:54:27 +01:00
|
|
|
})
|
2016-04-11 19:58:09 +02:00
|
|
|
this.shakeButton.addEventListener(pointerEvents.leave, ev => {
|
2016-03-18 22:54:27 +01:00
|
|
|
let state = this.board;
|
2016-05-05 17:57:44 +02:00
|
|
|
svg.fill(this.shakeButton, this.props.theme.virtualButtonUp);
|
2016-03-18 22:54:27 +01:00
|
|
|
})
|
2016-04-11 19:58:09 +02:00
|
|
|
this.shakeButton.addEventListener(pointerEvents.up, ev => {
|
2016-03-18 22:54:27 +01:00
|
|
|
let state = this.board;
|
2016-05-05 17:57:44 +02:00
|
|
|
svg.fill(this.shakeButton, this.props.theme.virtualButtonUp);
|
2016-04-02 00:44:04 +02:00
|
|
|
this.board.bus.queue(DAL.MICROBIT_ID_GESTURE, 11); // GESTURE_SHAKE
|
2016-05-05 08:31:55 +02:00
|
|
|
})
|
2016-05-05 17:57:44 +02:00
|
|
|
this.shakeText = svg.child(this.g, "text", { x: 400, y: 110, class: "sim-text" }) as SVGTextElement;
|
2016-05-05 08:31:55 +02:00
|
|
|
this.shakeText.textContent = "SHAKE"
|
|
|
|
}
|
2016-03-18 21:55:07 +01:00
|
|
|
}
|
2016-05-05 08:31:55 +02:00
|
|
|
|
2016-03-18 21:55:07 +01:00
|
|
|
private updateButtonAB() {
|
|
|
|
let state = this.board;
|
|
|
|
if (state.usesButtonAB && !this.buttonABText) {
|
2016-05-05 08:31:55 +02:00
|
|
|
(<any>this.buttonsOuter[2]).style.visibility = "visible";
|
|
|
|
(<any>this.buttons[2]).style.visibility = "visible";
|
2016-05-05 17:57:44 +02:00
|
|
|
this.buttonABText = svg.child(this.g, "text", { class: "sim-text", x: 370, y: 272 }) as SVGTextElement;
|
2016-03-18 21:55:07 +01:00
|
|
|
this.buttonABText.textContent = "A+B";
|
|
|
|
this.updateTheme();
|
2016-05-05 08:31:55 +02:00
|
|
|
}
|
2016-03-11 01:24:11 +01:00
|
|
|
}
|
2016-05-05 08:31:55 +02:00
|
|
|
|
|
|
|
private updatePin(pin: Pin, index: number) {
|
2016-03-11 01:24:11 +01:00
|
|
|
if (!pin) return;
|
|
|
|
let text = this.pinTexts[index];
|
2016-05-05 08:31:55 +02:00
|
|
|
let v = "";
|
2016-03-11 01:24:11 +01:00
|
|
|
if (pin.mode & PinMode.Analog) {
|
2016-05-05 08:31:55 +02:00
|
|
|
v = Math.floor(100 - (pin.value || 0) / 1023 * 100) + "%";
|
|
|
|
if (text) text.textContent = (pin.period ? "~" : "") + (pin.value || 0) + "";
|
2016-03-11 01:24:11 +01:00
|
|
|
}
|
|
|
|
else if (pin.mode & PinMode.Digital) {
|
|
|
|
v = pin.value > 0 ? '0%' : '100%';
|
|
|
|
if (text) text.textContent = pin.value > 0 ? "1" : "0";
|
|
|
|
}
|
|
|
|
else if (pin.mode & PinMode.Touch) {
|
|
|
|
v = pin.touched ? '0%' : '100%';
|
|
|
|
if (text) text.textContent = "";
|
2016-03-14 17:10:13 +01:00
|
|
|
} else {
|
|
|
|
v = '100%';
|
2016-05-05 08:31:55 +02:00
|
|
|
if (text) text.textContent = '';
|
2016-03-11 01:24:11 +01:00
|
|
|
}
|
2016-05-05 17:57:44 +02:00
|
|
|
if (v) svg.setGradientValue(this.pinGradients[index], v);
|
2016-03-11 01:24:11 +01:00
|
|
|
}
|
2016-05-05 08:31:55 +02:00
|
|
|
|
2016-03-14 22:03:31 +01:00
|
|
|
private updateTemperature() {
|
|
|
|
let state = this.board;
|
|
|
|
if (!state || !state.usesTemperature) return;
|
2016-05-05 08:31:55 +02:00
|
|
|
|
2016-03-14 22:03:31 +01:00
|
|
|
let tmin = -5;
|
|
|
|
let tmax = 50;
|
2016-05-05 08:31:55 +02:00
|
|
|
if (!this.thermometer) {
|
2016-03-14 22:03:31 +01:00
|
|
|
let gid = "gradient-thermometer";
|
2016-05-05 17:57:44 +02:00
|
|
|
this.thermometerGradient = svg.linearGradient(this.defs, gid);
|
|
|
|
this.thermometer = <SVGRectElement>svg.child(this.g, "rect", {
|
2016-05-05 08:31:55 +02:00
|
|
|
class: "sim-thermometer",
|
|
|
|
x: 120,
|
|
|
|
y: 110,
|
|
|
|
width: 20,
|
|
|
|
height: 160,
|
|
|
|
rx: 5, ry: 5,
|
|
|
|
fill: `url(#${gid})`
|
2016-03-14 22:03:31 +01:00
|
|
|
});
|
2016-05-05 17:57:44 +02:00
|
|
|
this.thermometerText = svg.child(this.g, "text", { class: 'sim-text', x: 58, y: 130 }) as SVGTextElement;
|
2016-03-14 22:03:31 +01:00
|
|
|
this.updateTheme();
|
2016-05-05 08:31:55 +02:00
|
|
|
|
2016-03-14 22:03:31 +01:00
|
|
|
let pt = this.element.createSVGPoint();
|
2016-05-05 17:57:44 +02:00
|
|
|
svg.buttonEvents(this.thermometer,
|
2016-03-14 22:03:31 +01:00
|
|
|
(ev) => {
|
2016-05-05 17:57:44 +02:00
|
|
|
let cur = svg.cursorPoint(pt, this.element, ev);
|
2016-03-14 22:03:31 +01:00
|
|
|
let t = Math.max(0, Math.min(1, (260 - cur.y) / 140))
|
2016-05-05 08:31:55 +02:00
|
|
|
state.temperature = Math.floor(tmin + t * (tmax - tmin));
|
2016-03-14 22:03:31 +01:00
|
|
|
this.updateTemperature();
|
2016-05-05 08:31:55 +02:00
|
|
|
}, ev => { }, ev => { })
|
2016-03-14 22:03:31 +01:00
|
|
|
}
|
2016-05-05 08:31:55 +02:00
|
|
|
|
2016-03-14 22:03:31 +01:00
|
|
|
let t = Math.max(tmin, Math.min(tmax, state.temperature))
|
2016-05-05 08:31:55 +02:00
|
|
|
let per = Math.floor((state.temperature - tmin) / (tmax - tmin) * 100)
|
2016-05-05 17:57:44 +02:00
|
|
|
svg.setGradientValue(this.thermometerGradient, 100 - per + '%');
|
2016-03-14 22:32:33 +01:00
|
|
|
this.thermometerText.textContent = t + '°C';
|
2016-03-14 22:03:31 +01:00
|
|
|
}
|
2016-05-05 08:31:55 +02:00
|
|
|
|
2016-03-11 01:24:11 +01:00
|
|
|
private updateHeading() {
|
|
|
|
let xc = 258;
|
|
|
|
let yc = 75;
|
|
|
|
let state = this.board;
|
|
|
|
if (!state || !state.usesHeading) return;
|
|
|
|
if (!this.headInitialized) {
|
|
|
|
let p = this.head.firstChild.nextSibling as SVGPathElement;
|
|
|
|
p.setAttribute("d", "m269.9,50.134647l0,0l-39.5,0l0,0c-14.1,0.1 -24.6,10.7 -24.6,24.8c0,13.9 10.4,24.4 24.3,24.7l0,0l39.6,0c14.2,0 40.36034,-22.97069 40.36034,-24.85394c0,-1.88326 -26.06034,-24.54606 -40.16034,-24.64606m-0.2,39l0,0l-39.3,0c-7.7,-0.1 -14,-6.4 -14,-14.2c0,-7.8 6.4,-14.2 14.2,-14.2l39.1,0c7.8,0 14.2,6.4 14.2,14.2c0,7.9 -6.4,14.2 -14.2,14.2l0,0l0,0z");
|
|
|
|
let pt = this.element.createSVGPoint();
|
2016-05-05 17:57:44 +02:00
|
|
|
svg.buttonEvents(
|
2016-03-11 01:24:11 +01:00
|
|
|
this.head,
|
2016-05-05 08:31:55 +02:00
|
|
|
(ev: MouseEvent) => {
|
2016-05-05 17:57:44 +02:00
|
|
|
let cur = svg.cursorPoint(pt, this.element, ev);
|
2016-05-05 08:31:55 +02:00
|
|
|
state.heading = Math.floor(Math.atan2(cur.y - yc, cur.x - xc) * 180 / Math.PI + 90);
|
|
|
|
if (state.heading < 0) state.heading += 360;
|
|
|
|
console.log('heading: ' + state.heading)
|
|
|
|
this.updateHeading();
|
2016-03-11 01:24:11 +01:00
|
|
|
});
|
|
|
|
this.headInitialized = true;
|
|
|
|
}
|
2016-05-05 08:31:55 +02:00
|
|
|
|
2016-03-11 01:24:11 +01:00
|
|
|
let txt = state.heading.toString() + '°';
|
2016-05-05 08:31:55 +02:00
|
|
|
if (txt != this.headText.textContent) {
|
2016-05-05 17:57:44 +02:00
|
|
|
svg.rotateElement(this.head, xc, yc, state.heading + 180);
|
2016-03-11 01:24:11 +01:00
|
|
|
this.headText.textContent = txt;
|
2016-05-05 08:31:55 +02:00
|
|
|
}
|
2016-03-11 01:24:11 +01:00
|
|
|
}
|
2016-05-05 08:31:55 +02:00
|
|
|
|
|
|
|
private lastFlashTime: number = 0;
|
2016-03-11 01:24:11 +01:00
|
|
|
public flashSystemLed() {
|
|
|
|
if (!this.systemLed)
|
2016-05-05 17:57:44 +02:00
|
|
|
this.systemLed = <SVGCircleElement>svg.child(this.g, "circle", { class: "sim-systemled", cx: 300, cy: 20, r: 5 })
|
2016-03-11 01:24:11 +01:00
|
|
|
let now = Date.now();
|
|
|
|
if (now - this.lastFlashTime > 150) {
|
|
|
|
this.lastFlashTime = now;
|
2016-05-05 17:57:44 +02:00
|
|
|
svg.animate(this.systemLed, 'sim-flash')
|
2016-03-11 01:24:11 +01:00
|
|
|
}
|
|
|
|
}
|
2016-05-05 08:31:55 +02:00
|
|
|
|
|
|
|
private lastAntennaFlash: number = 0;
|
2016-03-11 01:24:11 +01:00
|
|
|
public flashAntenna() {
|
2016-05-05 08:31:55 +02:00
|
|
|
if (!this.antenna) {
|
2016-03-11 01:24:11 +01:00
|
|
|
let ax = 380;
|
|
|
|
let dax = 18;
|
|
|
|
let ayt = 10;
|
|
|
|
let ayb = 40;
|
2016-05-05 17:57:44 +02:00
|
|
|
this.antenna = <SVGPolylineElement>svg.child(this.g, "polyline", { class: "sim-antenna", points: `${ax},${ayb} ${ax},${ayt} ${ax += dax},${ayt} ${ax},${ayb} ${ax += dax},${ayb} ${ax},${ayt} ${ax += dax},${ayt} ${ax},${ayb} ${ax += dax},${ayb} ${ax},${ayt} ${ax += dax},${ayt}` })
|
2016-03-11 01:24:11 +01:00
|
|
|
}
|
|
|
|
let now = Date.now();
|
|
|
|
if (now - this.lastAntennaFlash > 200) {
|
|
|
|
this.lastAntennaFlash = now;
|
2016-05-05 17:57:44 +02:00
|
|
|
svg.animate(this.antenna, 'sim-flash-stroke')
|
2016-03-11 01:24:11 +01:00
|
|
|
}
|
|
|
|
}
|
2016-05-05 08:31:55 +02:00
|
|
|
|
2016-03-11 01:24:11 +01:00
|
|
|
private updatePins() {
|
|
|
|
let state = this.board;
|
|
|
|
if (!state) return;
|
2016-05-05 08:31:55 +02:00
|
|
|
|
|
|
|
state.pins.forEach((pin, i) => this.updatePin(pin, i));
|
|
|
|
}
|
|
|
|
|
2016-03-11 22:17:49 +01:00
|
|
|
private updateLightLevel() {
|
|
|
|
let state = this.board;
|
|
|
|
if (!state || !state.usesLightLevel) return;
|
2016-05-05 08:31:55 +02:00
|
|
|
|
2016-03-11 22:17:49 +01:00
|
|
|
if (!this.lightLevelButton) {
|
2016-05-05 08:31:55 +02:00
|
|
|
let gid = "gradient-light-level";
|
2016-05-05 17:57:44 +02:00
|
|
|
this.lightLevelGradient = svg.linearGradient(this.defs, gid)
|
2016-03-11 22:17:49 +01:00
|
|
|
let cy = 50;
|
2016-03-12 00:10:36 +01:00
|
|
|
let r = 35;
|
2016-05-05 17:57:44 +02:00
|
|
|
this.lightLevelButton = svg.child(this.g, "circle", {
|
2016-05-05 08:31:55 +02:00
|
|
|
cx: `50px`, cy: `${cy}px`, r: `${r}px`,
|
|
|
|
class: 'sim-light-level-button',
|
|
|
|
fill: `url(#${gid})`
|
|
|
|
}) as SVGCircleElement;
|
2016-03-11 22:17:49 +01:00
|
|
|
let pt = this.element.createSVGPoint();
|
2016-05-05 17:57:44 +02:00
|
|
|
svg.buttonEvents(this.lightLevelButton,
|
2016-03-11 22:17:49 +01:00
|
|
|
(ev) => {
|
2016-05-05 17:57:44 +02:00
|
|
|
let pos = svg.cursorPoint(pt, this.element, ev);
|
2016-05-05 08:31:55 +02:00
|
|
|
let rs = r / 2;
|
|
|
|
let level = Math.max(0, Math.min(255, Math.floor((pos.y - (cy - rs)) / (2 * rs) * 255)));
|
2016-03-11 22:17:49 +01:00
|
|
|
if (level != this.board.lightLevel) {
|
|
|
|
this.board.lightLevel = level;
|
2016-03-12 00:10:36 +01:00
|
|
|
this.applyLightLevel();
|
2016-03-11 22:17:49 +01:00
|
|
|
}
|
2016-05-05 08:31:55 +02:00
|
|
|
}, ev => { },
|
|
|
|
ev => { })
|
2016-05-05 17:57:44 +02:00
|
|
|
this.lightLevelText = svg.child(this.g, "text", { x: 85, y: cy + r - 5, text: '', class: 'sim-text' }) as SVGTextElement;
|
2016-03-11 22:17:49 +01:00
|
|
|
this.updateTheme();
|
2016-05-05 08:31:55 +02:00
|
|
|
}
|
|
|
|
|
2016-05-05 17:57:44 +02:00
|
|
|
svg.setGradientValue(this.lightLevelGradient, Math.min(100, Math.max(0, Math.floor(state.lightLevel * 100 / 255))) + '%')
|
2016-03-12 00:10:36 +01:00
|
|
|
this.lightLevelText.textContent = state.lightLevel.toString();
|
2016-05-05 08:31:55 +02:00
|
|
|
}
|
|
|
|
|
2016-03-12 00:10:36 +01:00
|
|
|
private applyLightLevel() {
|
|
|
|
let lv = this.board.lightLevel;
|
2016-05-05 17:57:44 +02:00
|
|
|
svg.setGradientValue(this.lightLevelGradient, Math.min(100, Math.max(0, Math.floor(lv * 100 / 255))) + '%')
|
2016-05-05 08:31:55 +02:00
|
|
|
this.lightLevelText.textContent = lv.toString();
|
2016-03-12 00:10:36 +01:00
|
|
|
}
|
2016-05-05 08:31:55 +02:00
|
|
|
|
2016-03-11 01:24:11 +01:00
|
|
|
private updateTilt() {
|
|
|
|
if (this.props.disableTilt) return;
|
|
|
|
let state = this.board;
|
2016-03-20 03:15:20 +01:00
|
|
|
if (!state || !state.accelerometer.isActive) return;
|
2016-03-11 01:24:11 +01:00
|
|
|
|
2016-03-20 03:15:20 +01:00
|
|
|
let x = state.accelerometer.getX();
|
|
|
|
let y = state.accelerometer.getY();
|
|
|
|
let af = 8 / 1023;
|
|
|
|
|
2016-05-05 08:31:55 +02:00
|
|
|
this.element.style.transform = "perspective(30em) rotateX(" + y * af + "deg) rotateY(" + x * af + "deg)"
|
2016-03-20 03:15:20 +01:00
|
|
|
this.element.style.perspectiveOrigin = "50% 50% 50%";
|
2016-05-05 08:31:55 +02:00
|
|
|
this.element.style.perspective = "30em";
|
2016-03-11 01:24:11 +01:00
|
|
|
}
|
2016-05-05 08:31:55 +02:00
|
|
|
|
2016-03-11 01:24:11 +01:00
|
|
|
private buildDom() {
|
2016-05-05 17:57:44 +02:00
|
|
|
this.element = <SVGSVGElement>svg.elt("svg")
|
|
|
|
svg.hydrate(this.element, {
|
2016-05-05 08:31:55 +02:00
|
|
|
"version": "1.0",
|
2016-03-11 01:24:11 +01:00
|
|
|
"viewBox": "0 0 498 406",
|
|
|
|
"enable-background": "new 0 0 498 406",
|
2016-05-05 08:31:55 +02:00
|
|
|
"class": "sim",
|
2016-03-11 01:24:11 +01:00
|
|
|
"x": "0px",
|
2016-05-05 08:31:55 +02:00
|
|
|
"y": "0px"
|
|
|
|
});
|
2016-05-05 17:57:44 +02:00
|
|
|
this.style = <SVGStyleElement>svg.child(this.element, "style", {});
|
2016-03-24 21:56:51 +01:00
|
|
|
this.style.textContent = `
|
|
|
|
svg.sim {
|
|
|
|
margin-bottom:1em;
|
|
|
|
}
|
2016-03-24 22:05:02 +01:00
|
|
|
svg.sim.grayscale {
|
|
|
|
-moz-filter: grayscale(1);
|
|
|
|
-webkit-filter: grayscale(1);
|
|
|
|
filter: grayscale(1);
|
|
|
|
}
|
2016-03-24 21:56:51 +01:00
|
|
|
.sim-button {
|
|
|
|
pointer-events: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.sim-button-outer:hover {
|
|
|
|
stroke:grey;
|
|
|
|
stroke-width: 3px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.sim-pin:hover {
|
|
|
|
stroke:#D4AF37;
|
|
|
|
stroke-width:2px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.sim-pin-touch.touched:hover {
|
|
|
|
stroke:darkorange;
|
|
|
|
}
|
|
|
|
|
|
|
|
.sim-led-back:hover {
|
|
|
|
stroke:#a0a0a0;
|
|
|
|
stroke-width:3px;
|
|
|
|
}
|
|
|
|
.sim-led:hover {
|
|
|
|
stroke:#ff7f7f;
|
|
|
|
stroke-width:3px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.sim-systemled {
|
|
|
|
fill:#333;
|
|
|
|
stroke:#555;
|
|
|
|
stroke-width: 1px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.sim-light-level-button {
|
|
|
|
stroke:#fff;
|
|
|
|
stroke-width: 3px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.sim-antenna {
|
|
|
|
stroke:#555;
|
|
|
|
stroke-width: 2px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.sim-text {
|
2016-04-13 12:53:30 +02:00
|
|
|
font-family:"Lucida Console", Monaco, monospace;
|
2016-03-24 21:56:51 +01:00
|
|
|
font-size:25px;
|
|
|
|
fill:#fff;
|
|
|
|
pointer-events: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.sim-text-pin {
|
2016-04-13 12:53:30 +02:00
|
|
|
font-family:"Lucida Console", Monaco, monospace;
|
2016-03-24 21:56:51 +01:00
|
|
|
font-size:20px;
|
|
|
|
fill:#fff;
|
|
|
|
pointer-events: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.sim-thermometer {
|
|
|
|
stroke:#aaa;
|
|
|
|
stroke-width: 3px;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* animations */
|
|
|
|
.sim-flash {
|
|
|
|
animation-name: sim-flash-animation;
|
|
|
|
animation-duration: 0.1s;
|
|
|
|
}
|
|
|
|
|
|
|
|
@keyframes sim-flash-animation {
|
|
|
|
from { fill: yellow; }
|
|
|
|
to { fill: default; }
|
|
|
|
}
|
|
|
|
|
|
|
|
.sim-flash-stroke {
|
|
|
|
animation-name: sim-flash-stroke-animation;
|
|
|
|
animation-duration: 0.4s;
|
|
|
|
animation-timing-function: ease-in;
|
|
|
|
}
|
|
|
|
|
|
|
|
@keyframes sim-flash-stroke-animation {
|
|
|
|
from { stroke: yellow; }
|
|
|
|
to { stroke: default; }
|
|
|
|
}
|
|
|
|
|
|
|
|
`;
|
2016-05-05 08:31:55 +02:00
|
|
|
|
|
|
|
|
2016-05-05 17:57:44 +02:00
|
|
|
this.defs = <SVGDefsElement>svg.child(this.element, "defs", {});
|
|
|
|
this.g = svg.elt("g");
|
2016-03-11 01:24:11 +01:00
|
|
|
this.element.appendChild(this.g);
|
2016-05-05 08:31:55 +02:00
|
|
|
|
2016-03-20 08:44:30 +01:00
|
|
|
// filters
|
2016-05-05 17:57:44 +02:00
|
|
|
let glow = svg.child(this.defs, "filter", { id: "filterglow", x: "-5%", y: "-5%", width: "120%", height: "120%" });
|
|
|
|
svg.child(glow, "feGaussianBlur", { stdDeviation: "5", result: "glow" });
|
|
|
|
let merge = svg.child(glow, "feMerge", {});
|
|
|
|
for (let i = 0; i < 3; ++i) svg.child(merge, "feMergeNode", { in: "glow" })
|
2016-05-05 08:31:55 +02:00
|
|
|
|
2016-03-11 01:24:11 +01:00
|
|
|
// outline
|
2016-05-05 17:57:44 +02:00
|
|
|
svg.path(this.g, "sim-board", "M498,31.9C498,14.3,483.7,0,466.1,0H31.9C14.3,0,0,14.3,0,31.9v342.2C0,391.7,14.3,406,31.9,406h434.2c17.6,0,31.9-14.3,31.9-31.9V31.9z M14.3,206.7c-2.7,0-4.8-2.2-4.8-4.8c0-2.7,2.2-4.8,4.8-4.8c2.7,0,4.8,2.2,4.8,4.8C19.2,204.6,17,206.7,14.3,206.7z M486.2,206.7c-2.7,0-4.8-2.2-4.8-4.8c0-2.72.2-4.8,4.8-4.8c2.7,0,4.8,2.2,4.8,4.8C491,204.6,488.8,206.7,486.2,206.7z");
|
2016-03-11 01:24:11 +01:00
|
|
|
|
|
|
|
// script background
|
2016-05-05 17:57:44 +02:00
|
|
|
this.display = svg.path(this.g, "sim-display", "M333.8,310.3H165.9c-8.3,0-15-6.7-15-15V127.5c0-8.3,6.7-15,15-15h167.8c8.3,0,15,6.7,15,15v167.8C348.8,303.6,342.1,310.3,333.8,310.3z");
|
2016-03-11 01:24:11 +01:00
|
|
|
|
|
|
|
this.logos = [];
|
2016-05-05 17:57:44 +02:00
|
|
|
this.logos.push(svg.child(this.g, "polygon", { class: "sim-theme", points: "115,56.7 173.1,0 115,0" }));
|
|
|
|
this.logos.push(svg.path(this.g, "sim-theme", "M114.2,0H25.9C12.1,2.1,0,13.3,0,27.7v83.9L114.2,0z"));
|
|
|
|
this.logos.push(svg.child(this.g, "polygon", { class: "sim-theme", points: "173,27.9 202.5,0 173,0" }));
|
|
|
|
this.logos.push(svg.child(this.g, "polygon", { class: "sim-theme", points: "54.1,242.4 54.1,274.1 22.4,274.1" }));
|
|
|
|
this.logos.push(svg.child(this.g, "polygon", { class: "sim-theme", points: "446.2,164.6 446.2,132.8 477.9,132.8" }));
|
2016-05-05 08:31:55 +02:00
|
|
|
|
2016-03-11 01:24:11 +01:00
|
|
|
// leds
|
|
|
|
this.leds = [];
|
|
|
|
this.ledsOuter = [];
|
2016-05-05 08:31:55 +02:00
|
|
|
let left = 154, top = 113, ledoffw = 46, ledoffh = 44;
|
|
|
|
for (let i = 0; i < 5; ++i) {
|
|
|
|
let ledtop = i * ledoffh + top;
|
|
|
|
for (let j = 0; j < 5; ++j) {
|
|
|
|
let ledleft = j * ledoffw + left;
|
|
|
|
let k = i * 5 + j;
|
2016-05-05 17:57:44 +02:00
|
|
|
this.ledsOuter.push(svg.child(this.g, "rect", { class: "sim-led-back", x: ledleft, y: ledtop, width: 10, height: 20, rx: 2, ry: 2 }));
|
|
|
|
this.leds.push(svg.child(this.g, "rect", { class: "sim-led", x: ledleft - 2, y: ledtop - 2, width: 14, height: 24, rx: 3, ry: 3, title: `(${j},${i})` }));
|
2016-03-11 01:24:11 +01:00
|
|
|
}
|
|
|
|
}
|
2016-05-05 08:31:55 +02:00
|
|
|
|
2016-03-11 01:24:11 +01:00
|
|
|
// head
|
2016-05-05 17:57:44 +02:00
|
|
|
this.head = <SVGGElement>svg.child(this.g, "g", {});
|
|
|
|
svg.child(this.head, "circle", { cx: 258, cy: 75, r: 100, fill: "transparent" })
|
|
|
|
this.logos.push(svg.path(this.head, "sim-theme", "M269.9,50.2L269.9,50.2l-39.5,0v0c-14.1,0.1-24.6,10.7-24.6,24.8c0,13.9,10.4,24.4,24.3,24.7v0h39.6c14.2,0,24.8-10.6,24.8-24.7C294.5,61,284,50.3,269.9,50.2 M269.7,89.2L269.7,89.2l-39.3,0c-7.7-0.1-14-6.4-14-14.2c0-7.8,6.4-14.2,14.2-14.2h39.1c7.8,0,14.2,6.4,14.2,14.2C283.9,82.9,277.5,89.2,269.7,89.2"));
|
|
|
|
this.logos.push(svg.path(this.head, "sim-theme", "M230.6,69.7c-2.9,0-5.3,2.4-5.3,5.3c0,2.9,2.4,5.3,5.3,5.3c2.9,0,5.3-2.4,5.3-5.3C235.9,72.1,233.5,69.7,230.6,69.7"));
|
|
|
|
this.logos.push(svg.path(this.head, "sim-theme", "M269.7,80.3c2.9,0,5.3-2.4,5.3-5.3c0-2.9-2.4-5.3-5.3-5.3c-2.9,0-5.3,2.4-5.3,5.3C264.4,77.9,266.8,80.3,269.7,80.3"));
|
|
|
|
this.headText = <SVGTextElement>svg.child(this.g, "text", { x: 310, y: 100, class: "sim-text" })
|
2016-05-05 08:31:55 +02:00
|
|
|
|
2016-03-21 05:34:16 +01:00
|
|
|
// https://www.microbit.co.uk/device/pins
|
2016-03-11 01:24:11 +01:00
|
|
|
// P0, P1, P2
|
|
|
|
this.pins = [
|
|
|
|
"M16.5,341.2c0,0.4-0.1,0.9-0.1,1.3v60.7c4.1,1.7,8.6,2.7,12.9,2.7h34.4v-64.7h0.3c0,0,0-0.1,0-0.1c0-13-10.6-23.6-23.7-23.6C27.2,317.6,16.5,328.1,16.5,341.2z M21.2,341.6c0-10.7,8.7-19.3,19.3-19.3c10.7,0,19.3,8.7,19.3,19.3c0,10.7-8.6,19.3-19.3,19.3C29.9,360.9,21.2,352.2,21.2,341.6z",
|
|
|
|
"M139.1,317.3c-12.8,0-22.1,10.3-23.1,23.1V406h46.2v-65.6C162.2,327.7,151.9,317.3,139.1,317.3zM139.3,360.1c-10.7,0-19.3-8.6-19.3-19.3c0-10.7,8.6-19.3,19.3-19.3c10.7,0,19.3,8.7,19.3,19.3C158.6,351.5,150,360.1,139.3,360.1z",
|
|
|
|
"M249,317.3c-12.8,0-22.1,10.3-23.1,23.1V406h46.2v-65.6C272.1,327.7,261.8,317.3,249,317.3z M249.4,360.1c-10.7,0-19.3-8.6-19.3-19.3c0-10.7,8.6-19.3,19.3-19.3c10.7,0,19.3,8.7,19.3,19.3C268.7,351.5,260.1,360.1,249.4,360.1z"
|
2016-05-05 17:57:44 +02:00
|
|
|
].map((p, pi) => svg.path(this.g, "sim-pin sim-pin-touch", p, `P${pi}, ANALOG IN`));
|
2016-03-11 01:24:11 +01:00
|
|
|
|
2016-03-21 05:34:16 +01:00
|
|
|
// P3
|
2016-05-05 17:57:44 +02:00
|
|
|
this.pins.push(svg.path(this.g, "sim-pin", "M0,357.7v19.2c0,10.8,6.2,20.2,14.4,25.2v-44.4H0z", "P3, ANALOG IN, LED Col 1"));
|
2016-03-11 01:24:11 +01:00
|
|
|
|
2016-05-05 08:31:55 +02:00
|
|
|
[66.7, 79.1, 91.4, 103.7, 164.3, 176.6, 188.9, 201.3, 213.6, 275.2, 287.5, 299.8, 312.1, 324.5, 385.1, 397.4, 409.7, 422].forEach(x => {
|
2016-05-05 17:57:44 +02:00
|
|
|
this.pins.push(svg.child(this.g, "rect", { x: x, y: 356.7, width: 10, height: 50, class: "sim-pin" }));
|
2016-03-11 01:24:11 +01:00
|
|
|
})
|
2016-05-05 17:57:44 +02:00
|
|
|
svg.title(this.pins[4], "P4, ANALOG IN, LED Col 2")
|
|
|
|
svg.title(this.pins[5], "P5, BUTTON A")
|
|
|
|
svg.title(this.pins[6], "P6, LED Col 9")
|
|
|
|
svg.title(this.pins[7], "P7, LED Col 8")
|
|
|
|
svg.title(this.pins[8], "P8")
|
|
|
|
svg.title(this.pins[9], "P9, LED Col 7")
|
|
|
|
svg.title(this.pins[10], "P10, ANALOG IN, LED Col 3")
|
|
|
|
svg.title(this.pins[11], "P11, BUTTON B")
|
|
|
|
svg.title(this.pins[12], "P12, RESERVED ACCESSIBILITY")
|
|
|
|
svg.title(this.pins[13], "P13, SPI - SCK")
|
|
|
|
svg.title(this.pins[14], "P14, SPI - MISO")
|
|
|
|
svg.title(this.pins[15], "P15, SPI - MOSI")
|
|
|
|
svg.title(this.pins[16], "P16, SPI - Chip Select")
|
|
|
|
svg.title(this.pins[17], "P17, +3v3")
|
|
|
|
svg.title(this.pins[18], "P18, +3v3")
|
|
|
|
svg.title(this.pins[19], "P19, I2C - SCL")
|
|
|
|
svg.title(this.pins[20], "P20, I2C - SDA")
|
|
|
|
svg.title(this.pins[21], "GND")
|
|
|
|
|
|
|
|
this.pins.push(svg.path(this.g, "sim-pin", "M483.6,402c8.2-5,14.4-14.4,14.4-25.1v-19.2h-14.4V402z", "GND"));
|
|
|
|
|
|
|
|
this.pins.push(svg.path(this.g, "sim-pin", "M359.9,317.3c-12.8,0-22.1,10.3-23.1,23.1V406H383v-65.6C383,327.7,372.7,317.3,359.9,317.3z M360,360.1c-10.7,0-19.3-8.6-19.3-19.3c0-10.7,8.6-19.3,19.3-19.3c10.7,0,19.3,8.7,19.3,19.3C379.3,351.5,370.7,360.1,360,360.1z", "+3v3"));
|
|
|
|
this.pins.push(svg.path(this.g, "sim-pin", "M458,317.6c-13,0-23.6,10.6-23.6,23.6c0,0,0,0.1,0,0.1h0V406H469c4.3,0,8.4-1,12.6-2.7v-60.7c0-0.4,0-0.9,0-1.3C481.6,328.1,471,317.6,458,317.6z M457.8,360.9c-10.7,0-19.3-8.6-19.3-19.3c0-10.7,8.6-19.3,19.3-19.3c10.7,0,19.3,8.7,19.3,19.3C477.1,352.2,468.4,360.9,457.8,360.9z", "GND"));
|
2016-05-05 08:31:55 +02:00
|
|
|
|
|
|
|
|
|
|
|
this.pinGradients = this.pins.map((pin, i) => {
|
|
|
|
let gid = "gradient-pin-" + i
|
2016-05-05 17:57:44 +02:00
|
|
|
let lg = svg.linearGradient(this.defs, gid)
|
2016-03-11 01:24:11 +01:00
|
|
|
pin.setAttribute("fill", `url(#${gid})`);
|
|
|
|
return lg;
|
|
|
|
})
|
2016-05-05 08:31:55 +02:00
|
|
|
|
2016-05-05 17:57:44 +02:00
|
|
|
this.pinTexts = [67, 165, 275].map(x => <SVGTextElement>svg.child(this.g, "text", { class: 'sim-text-pin', x: x, y: 345 }));
|
2016-03-11 01:24:11 +01:00
|
|
|
|
|
|
|
this.buttonsOuter = []; this.buttons = [];
|
2016-05-05 17:57:44 +02:00
|
|
|
this.buttonsOuter.push(svg.path(this.g, "sim-button-outer", "M82.1,232.6H25.9c-0.5,0-1-0.4-1-1v-56.2c0-0.5,0.4-1,1-1h56.2c0.5,0,1,0.4,1,1v56.2C83,232.2,82.6,232.6,82.1,232.6", "A"));
|
|
|
|
this.buttons.push(svg.path(this.g, "sim-button", "M69.7,203.5c0,8.7-7,15.7-15.7,15.7s-15.7-7-15.7-15.7c0-8.7,7-15.7,15.7-15.7S69.7,194.9,69.7,203.5"));
|
|
|
|
this.buttonsOuter.push(svg.path(this.g, "sim-button-outer", "M474.3,232.6h-56.2c-0.5,0-1-0.4-1-1v-56.2c0-0.5,0.4-1,1-1h56.2c0.5,0,1,0.4,1,1v56.2C475.3,232.2,474.8,232.6,474.3,232.6", "B"));
|
|
|
|
this.buttons.push(svg.path(this.g, "sim-button", "M461.9,203.5c0,8.7-7,15.7-15.7,15.7c-8.7,0-15.7-7-15.7-15.7c0-8.7,7-15.7,15.7-15.7C454.9,187.8,461.9,194.9,461.9,203.5"));
|
|
|
|
this.buttonsOuter.push(svg.child(this.g, "rect", { class: "sim-button-outer", x: 417, y: 250, width: 58, height: 58, rx: 1, ry: 1, title: "A+B" }));
|
|
|
|
this.buttons.push(svg.child(this.g, "circle", { class: "sim-button", cx: 446, cy: 278, r: 16.5 }));
|
2016-03-11 01:24:11 +01:00
|
|
|
(<any>this.buttonsOuter[2]).style.visibility = 'hidden';
|
|
|
|
(<any>this.buttons[2]).style.visibility = 'hidden';
|
2016-05-05 08:31:55 +02:00
|
|
|
|
2016-05-05 17:57:44 +02:00
|
|
|
svg.path(this.g, "sim-label", "M35.7,376.4c0-2.8,2.1-5.1,5.5-5.1c3.3,0,5.5,2.4,5.5,5.1v4.7c0,2.8-2.2,5.1-5.5,5.1c-3.3,0-5.5-2.4-5.5-5.1V376.4zM43.3,376.4c0-1.3-0.8-2.3-2.2-2.3c-1.3,0-2.1,1.1-2.1,2.3v4.7c0,1.2,0.8,2.3,2.1,2.3c1.3,0,2.2-1.1,2.2-2.3V376.4z");
|
|
|
|
svg.path(this.g, "sim-label", "M136.2,374.1c2.8,0,3.4-0.8,3.4-2.5h2.9v14.3h-3.4v-9.5h-3V374.1z");
|
|
|
|
svg.path(this.g, "sim-label", "M248.6,378.5c1.7-1,3-1.7,3-3.1c0-1.1-0.7-1.6-1.6-1.6c-1,0-1.8,0.6-1.8,2.1h-3.3c0-2.6,1.8-4.6,5.1-4.6c2.6,0,4.9,1.3,4.9,4.3c0,2.4-2.3,3.9-3.8,4.7c-2,1.3-2.5,1.8-2.5,2.9h6.1v2.7h-10C244.8,381.2,246.4,379.9,248.6,378.5z");
|
|
|
|
svg.path(this.g, "sim-label", "M48.1,270.9l-0.6-1.7h-5.1l-0.6,1.7h-3.5l5.1-14.3h3.1l5.2,14.3H48.1z M45,260.7l-1.8,5.9h3.5L45,260.7z");
|
|
|
|
|
|
|
|
svg.path(this.g, "sim-label", "M449.1,135.8h5.9c3.9,0,4.7,2.4,4.7,3.9c0,1.8-1.4,2.9-2.5,3.2c0.9,0,2.6,1.1,2.6,3.3c0,1.5-0.8,4-4.7,4h-6V135.8zM454.4,141.7c1.6,0,2-1,2-1.7c0-0.6-0.3-1.7-2-1.7h-2v3.4H454.4z M452.4,144.1v3.5h2.1c1.6,0,2-1,2-1.8c0-0.7-0.4-1.8-2-1.8H452.4z")
|
|
|
|
svg.path(this.g, "sim-label", "M352.1,381.1c0,1.6,0.9,2.5,2.2,2.5c1.2,0,1.9-0.9,1.9-1.9c0-1.2-0.6-2-2.1-2h-1.3v-2.6h1.3c1.5,0,1.9-0.7,1.9-1.8c0-1.1-0.7-1.6-1.6-1.6c-1.4,0-1.8,0.8-1.8,2.1h-3.3c0-2.4,1.5-4.6,5.1-4.6c2.6,0,5,1.3,5,4c0,1.6-1,2.8-2.1,3.2c1.3,0.5,2.3,1.6,2.3,3.5c0,2.7-2.4,4.3-5.2,4.3c-3.5,0-5.5-2.1-5.5-5.1H352.1z")
|
|
|
|
svg.path(this.g, "sim-label", "M368.5,385.9h-3.1l-5.1-14.3h3.5l3.1,10.1l3.1-10.1h3.6L368.5,385.9z")
|
|
|
|
svg.path(this.g, "sim-label", "M444.4,378.3h7.4v2.5h-1.5c-0.6,3.3-3,5.5-7.1,5.5c-4.8,0-7.5-3.5-7.5-7.5c0-3.9,2.8-7.5,7.5-7.5c3.8,0,6.4,2.3,6.6,5h-3.5c-0.2-1.1-1.4-2.2-3.1-2.2c-2.7,0-4.1,2.3-4.1,4.7c0,2.5,1.4,4.7,4.4,4.7c2,0,3.2-1.2,3.4-2.7h-2.5V378.3z")
|
|
|
|
svg.path(this.g, "sim-label", "M461.4,380.9v-9.3h3.3v14.3h-3.5l-5.2-9.2v9.2h-3.3v-14.3h3.5L461.4,380.9z")
|
|
|
|
svg.path(this.g, "sim-label", "M472.7,371.6c4.8,0,7.5,3.5,7.5,7.2s-2.7,7.2-7.5,7.2h-5.3v-14.3H472.7z M470.8,374.4v8.6h1.8c2.7,0,4.2-2.1,4.2-4.3s-1.6-4.3-4.2-4.3H470.8z")
|
2016-03-11 01:24:11 +01:00
|
|
|
}
|
2016-05-05 08:31:55 +02:00
|
|
|
|
2016-03-11 01:24:11 +01:00
|
|
|
private attachEvents() {
|
|
|
|
Runtime.messagePosted = (msg) => {
|
2016-05-05 08:31:55 +02:00
|
|
|
switch (msg.type || '') {
|
2016-03-11 01:24:11 +01:00
|
|
|
case 'serial': this.flashSystemLed(); break;
|
|
|
|
case 'radiopacket': this.flashAntenna(); break;
|
|
|
|
}
|
|
|
|
}
|
2016-03-30 06:14:27 +02:00
|
|
|
let tiltDecayer = 0;
|
2016-04-11 19:58:09 +02:00
|
|
|
this.element.addEventListener(pointerEvents.move, (ev: MouseEvent) => {
|
2016-03-11 01:24:11 +01:00
|
|
|
let state = this.board;
|
2016-05-05 08:31:55 +02:00
|
|
|
if (!state.accelerometer.isActive) return;
|
|
|
|
|
2016-03-30 06:14:27 +02:00
|
|
|
if (tiltDecayer) {
|
|
|
|
clearInterval(tiltDecayer);
|
|
|
|
tiltDecayer = 0;
|
|
|
|
}
|
2016-03-20 03:15:20 +01:00
|
|
|
|
2016-03-11 01:24:11 +01:00
|
|
|
let ax = (ev.clientX - this.element.clientWidth / 2) / (this.element.clientWidth / 3);
|
|
|
|
let ay = (ev.clientY - this.element.clientHeight / 2) / (this.element.clientHeight / 3);
|
2016-05-05 08:31:55 +02:00
|
|
|
|
2016-03-20 03:15:20 +01:00
|
|
|
let x = - Math.max(- 1023, Math.min(1023, Math.floor(ax * 1023)));
|
|
|
|
let y = Math.max(- 1023, Math.min(1023, Math.floor(ay * 1023)));
|
2016-05-05 08:31:55 +02:00
|
|
|
let z2 = 1023 * 1023 - x * x - y * y;
|
|
|
|
let z = Math.floor((z2 > 0 ? -1 : 1) * Math.sqrt(Math.abs(z2)));
|
|
|
|
|
|
|
|
state.accelerometer.update(x, y, z);
|
2016-03-11 01:24:11 +01:00
|
|
|
this.updateTilt();
|
|
|
|
}, false);
|
2016-04-11 19:58:09 +02:00
|
|
|
this.element.addEventListener(pointerEvents.leave, (ev: MouseEvent) => {
|
2016-03-11 01:24:11 +01:00
|
|
|
let state = this.board;
|
2016-03-20 03:15:20 +01:00
|
|
|
if (!state.accelerometer.isActive) return;
|
2016-05-05 08:31:55 +02:00
|
|
|
|
2016-03-30 06:14:27 +02:00
|
|
|
if (!tiltDecayer) {
|
|
|
|
tiltDecayer = setInterval(() => {
|
|
|
|
let accx = state.accelerometer.getX(MicroBitCoordinateSystem.RAW);
|
|
|
|
accx = Math.floor(Math.abs(accx) * 0.85) * (accx > 0 ? 1 : -1);
|
|
|
|
let accy = state.accelerometer.getY(MicroBitCoordinateSystem.RAW);
|
|
|
|
accy = Math.floor(Math.abs(accy) * 0.85) * (accy > 0 ? 1 : -1);
|
2016-05-05 08:31:55 +02:00
|
|
|
let accz = -Math.sqrt(Math.max(0, 1023 * 1023 - accx * accx - accy * accy));
|
2016-03-30 06:14:27 +02:00
|
|
|
if (Math.abs(accx) <= 24 && Math.abs(accy) <= 24) {
|
2016-05-05 08:31:55 +02:00
|
|
|
clearInterval(tiltDecayer);
|
|
|
|
tiltDecayer = 0;
|
2016-03-30 06:14:27 +02:00
|
|
|
accx = 0;
|
|
|
|
accy = 0;
|
2016-05-05 08:31:55 +02:00
|
|
|
accz = -1023;
|
|
|
|
}
|
2016-03-30 06:14:27 +02:00
|
|
|
state.accelerometer.update(accx, accy, accz);
|
2016-05-05 08:31:55 +02:00
|
|
|
this.updateTilt();
|
|
|
|
}, 50)
|
2016-03-30 06:14:27 +02:00
|
|
|
}
|
2016-03-11 01:24:11 +01:00
|
|
|
}, false);
|
2016-05-05 08:31:55 +02:00
|
|
|
|
2016-03-11 01:24:11 +01:00
|
|
|
this.pins.forEach((pin, index) => {
|
|
|
|
if (!this.board.pins[index]) return;
|
|
|
|
let pt = this.element.createSVGPoint();
|
2016-05-05 17:57:44 +02:00
|
|
|
svg.buttonEvents(pin,
|
2016-03-11 01:24:11 +01:00
|
|
|
// move
|
|
|
|
ev => {
|
|
|
|
let state = this.board;
|
|
|
|
let pin = state.pins[index];
|
|
|
|
let svgpin = this.pins[index];
|
|
|
|
if (pin.mode & PinMode.Input) {
|
2016-05-05 17:57:44 +02:00
|
|
|
let cursor = svg.cursorPoint(pt, this.element, ev);
|
2016-03-11 01:24:11 +01:00
|
|
|
let v = (400 - cursor.y) / 40 * 1023
|
|
|
|
pin.value = Math.max(0, Math.min(1023, Math.floor(v)));
|
|
|
|
}
|
2016-05-05 08:31:55 +02:00
|
|
|
this.updatePin(pin, index);
|
2016-03-11 01:24:11 +01:00
|
|
|
},
|
|
|
|
// start
|
|
|
|
ev => {
|
|
|
|
let state = this.board;
|
|
|
|
let pin = state.pins[index];
|
|
|
|
let svgpin = this.pins[index];
|
2016-05-05 17:57:44 +02:00
|
|
|
svg.addClass(svgpin, "touched");
|
2016-03-23 23:09:48 +01:00
|
|
|
if (pin.mode & PinMode.Input) {
|
2016-05-05 17:57:44 +02:00
|
|
|
let cursor = svg.cursorPoint(pt, this.element, ev);
|
2016-03-11 01:24:11 +01:00
|
|
|
let v = (400 - cursor.y) / 40 * 1023
|
|
|
|
pin.value = Math.max(0, Math.min(1023, Math.floor(v)));
|
|
|
|
}
|
2016-05-05 08:31:55 +02:00
|
|
|
this.updatePin(pin, index);
|
2016-03-11 01:24:11 +01:00
|
|
|
},
|
|
|
|
// stop
|
|
|
|
(ev: MouseEvent) => {
|
|
|
|
let state = this.board;
|
|
|
|
let pin = state.pins[index];
|
|
|
|
let svgpin = this.pins[index];
|
2016-05-05 17:57:44 +02:00
|
|
|
svg.removeClass(svgpin, "touched");
|
2016-03-11 01:24:11 +01:00
|
|
|
this.updatePin(pin, index);
|
|
|
|
return false;
|
2016-05-05 08:31:55 +02:00
|
|
|
});
|
2016-03-11 01:24:11 +01:00
|
|
|
})
|
2016-05-05 08:31:55 +02:00
|
|
|
this.pins.slice(0, 3).forEach((btn, index) => {
|
2016-04-11 19:58:09 +02:00
|
|
|
btn.addEventListener(pointerEvents.down, ev => {
|
2016-03-23 23:09:48 +01:00
|
|
|
let state = this.board;
|
|
|
|
state.pins[index].touched = true;
|
|
|
|
this.updatePin(state.pins[index], index);
|
|
|
|
})
|
2016-04-11 19:58:09 +02:00
|
|
|
btn.addEventListener(pointerEvents.leave, ev => {
|
2016-03-23 23:09:48 +01:00
|
|
|
let state = this.board;
|
|
|
|
state.pins[index].touched = false;
|
|
|
|
this.updatePin(state.pins[index], index);
|
|
|
|
})
|
2016-04-11 19:58:09 +02:00
|
|
|
btn.addEventListener(pointerEvents.up, ev => {
|
2016-03-23 23:09:48 +01:00
|
|
|
let state = this.board;
|
|
|
|
state.pins[index].touched = false;
|
|
|
|
this.updatePin(state.pins[index], index);
|
2016-04-02 00:44:04 +02:00
|
|
|
this.board.bus.queue(state.pins[index].id, DAL.MICROBIT_BUTTON_EVT_CLICK);
|
2016-05-05 08:31:55 +02:00
|
|
|
})
|
2016-03-23 23:09:48 +01:00
|
|
|
})
|
2016-05-05 08:31:55 +02:00
|
|
|
this.buttonsOuter.slice(0, 2).forEach((btn, index) => {
|
2016-04-11 19:58:09 +02:00
|
|
|
btn.addEventListener(pointerEvents.down, ev => {
|
2016-03-11 01:24:11 +01:00
|
|
|
let state = this.board;
|
|
|
|
state.buttons[index].pressed = true;
|
2016-05-05 17:57:44 +02:00
|
|
|
svg.fill(this.buttons[index], this.props.theme.buttonDown);
|
2016-03-11 01:24:11 +01:00
|
|
|
})
|
2016-04-11 19:58:09 +02:00
|
|
|
btn.addEventListener(pointerEvents.leave, ev => {
|
2016-03-18 21:55:07 +01:00
|
|
|
let state = this.board;
|
|
|
|
state.buttons[index].pressed = false;
|
2016-05-05 17:57:44 +02:00
|
|
|
svg.fill(this.buttons[index], this.props.theme.buttonUp);
|
2016-03-18 21:55:07 +01:00
|
|
|
})
|
2016-04-11 19:58:09 +02:00
|
|
|
btn.addEventListener(pointerEvents.up, ev => {
|
2016-03-11 01:24:11 +01:00
|
|
|
let state = this.board;
|
|
|
|
state.buttons[index].pressed = false;
|
2016-05-05 17:57:44 +02:00
|
|
|
svg.fill(this.buttons[index], this.props.theme.buttonUp);
|
2016-05-05 08:31:55 +02:00
|
|
|
|
2016-04-02 00:44:04 +02:00
|
|
|
this.board.bus.queue(state.buttons[index].id, DAL.MICROBIT_BUTTON_EVT_CLICK);
|
2016-03-11 01:24:11 +01:00
|
|
|
})
|
|
|
|
})
|
2016-04-11 19:58:09 +02:00
|
|
|
this.buttonsOuter[2].addEventListener(pointerEvents.down, ev => {
|
2016-05-05 08:31:55 +02:00
|
|
|
let state = this.board;
|
|
|
|
state.buttons[0].pressed = true;
|
|
|
|
state.buttons[1].pressed = true;
|
|
|
|
state.buttons[2].pressed = true;
|
2016-05-05 17:57:44 +02:00
|
|
|
svg.fill(this.buttons[0], this.props.theme.buttonDown);
|
|
|
|
svg.fill(this.buttons[1], this.props.theme.buttonDown);
|
|
|
|
svg.fill(this.buttons[2], this.props.theme.buttonDown);
|
2016-05-05 08:31:55 +02:00
|
|
|
})
|
2016-04-11 19:58:09 +02:00
|
|
|
this.buttonsOuter[2].addEventListener(pointerEvents.leave, ev => {
|
2016-05-05 08:31:55 +02:00
|
|
|
let state = this.board;
|
|
|
|
state.buttons[0].pressed = false;
|
|
|
|
state.buttons[1].pressed = false;
|
|
|
|
state.buttons[2].pressed = false;
|
2016-05-05 17:57:44 +02:00
|
|
|
svg.fill(this.buttons[0], this.props.theme.buttonUp);
|
|
|
|
svg.fill(this.buttons[1], this.props.theme.buttonUp);
|
|
|
|
svg.fill(this.buttons[2], this.props.theme.virtualButtonUp);
|
2016-03-18 21:55:07 +01:00
|
|
|
})
|
2016-04-11 19:58:09 +02:00
|
|
|
this.buttonsOuter[2].addEventListener(pointerEvents.up, ev => {
|
2016-05-05 08:31:55 +02:00
|
|
|
let state = this.board;
|
|
|
|
state.buttons[0].pressed = false;
|
|
|
|
state.buttons[1].pressed = false;
|
|
|
|
state.buttons[2].pressed = false;
|
2016-05-05 17:57:44 +02:00
|
|
|
svg.fill(this.buttons[0], this.props.theme.buttonUp);
|
|
|
|
svg.fill(this.buttons[1], this.props.theme.buttonUp);
|
|
|
|
svg.fill(this.buttons[2], this.props.theme.virtualButtonUp);
|
2016-05-05 08:31:55 +02:00
|
|
|
|
|
|
|
this.board.bus.queue(state.buttons[2].id, DAL.MICROBIT_BUTTON_EVT_CLICK);
|
|
|
|
})
|
2016-03-11 01:24:11 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|