Skip to content

Update README.md #8

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 5 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .gitmodules
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
[submodule "server"]
path = server
url = https://github.com/OpenShades/wearscript-server
url = git@github.com:wearscript/wearscript-server.git
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Wearscript Playground #
<http://github.com/OpenShades/wearscript-playground>
<http://github.com/wearscript/wearscript-playground>

## About ##
The web-based IDE for WearScript. Write code, pair glass, save, and enjoy.
Expand All @@ -18,7 +18,7 @@ The web-based IDE for WearScript. Write code, pair glass, save, and enjoy.
1. Clone repo and submodules

```bash
git clone [email protected]:OpenShades/wearscript-playground.git
git clone [email protected]:wearscript/wearscript-playground.git
cd wearscript-playground
git submodule update --init
```
Expand Down
31 changes: 22 additions & 9 deletions app/scripts/controllers/annotation.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,11 @@ angular.module('wearscriptPlaygroundApp')
$scope.images = {}; // [device] = imageb64
this.canvas = document.querySelector('#canvas');
this.context = this.canvas.getContext('2d');

this.pointCount = -1;
this.points = [];
this.response = '';
this.initCanvas = function () {
this.context.fillStyle = '#FFFFFF'; // set canvas background color
this.context.fillRect(0, 0, this.canvas.width, this.canvas.height); // now fill the canvas
this.context.clearRect(0, 0, this.canvas.width, this.canvas.height);

var tool = {};
function ev_canvas (ev) {
Expand Down Expand Up @@ -44,6 +45,15 @@ angular.module('wearscriptPlaygroundApp')

};
tool.mousedown = function (ev) {
if (this.pointCount > 0) {
this.points.push([ev._x, ev._y]);
if (this.points.length == this.pointCount) {
this.pointCount = -1;
ws.publish(this.response, this.points);
this.points = [];
this.context.clearRect(0, 0, this.canvas.width, this.canvas.height);
}
}
this.context.beginPath();
this.context.arc(ev._x, ev._y, 50, 0, 2 * Math.PI);
this.context.strokeStyle = '#0b61a4';
Expand All @@ -65,21 +75,24 @@ angular.module('wearscriptPlaygroundApp')
}
this.initCanvas();


this.image_cb = function (channel, time, imageData, numPoints, description) {
var image = new Image();
this.image_cb = function (channel, response, imageData, numPoints, description) {
this.pointCount = numPoints;
this.points = [];
this.response = response;
var image = new Image();
console.log(channel);
image.onload = function (image_id) {
this.context.drawImage(image, 0, 0);
console.log('Height: ' + image.naturalHeight + ' Width: ' + image.naturalWidth);
}.bind(this);
image.src = 'data:image/jpeg;base64,' + btoa(imageData);
image.src = 'data:image/jpeg;base64,' + imageData;
console.log(image.src.length);
document.querySelector('#canvas')
$scope.numPoints = numPoints;
$scope.description = description;
$scope.$apply(); // HACK(brandyn): Not sure why we have to do this
}.bind(this);

ws.subscribe('image', this.image_cb);
ws.subscribe('annotationimagepoints', this.image_cb);
$scope.$on('$destroy', function cleanup() {
ws.unsubscribe('image');
});
Expand Down
2 changes: 1 addition & 1 deletion app/views/annotation.html
Original file line number Diff line number Diff line change
@@ -1 +1 @@
<canvas id="canvas" width="640" height="360" style="display:block"></canvas>
<canvas id="canvas" width="1280" height="720" style="display:block"></canvas>
2 changes: 1 addition & 1 deletion server