Skip to content
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

Add buttons example and module #58

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
107 changes: 107 additions & 0 deletions examples/buttons/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,107 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- The above 3 meta tags *must* come first in the head; any other head content must come *after* these tags -->
<title>Buttons Example</title>

<!-- build:template
<script src="../../<%= rockyjs_path %>"></script>
/build -->
<!-- build:remove -->
<!-- this template/remove construct is a workaround as processhtml doesn't support variables for values -->
<script src="../../src/html-binding.js"></script>
<script src="../../src/symbols-manual.js"></script>
<script src="../../src/symbols-generated.js"></script>
<script src="../../src/transpiled.js"></script>
<!-- /build -->

<script src="modules/buttons.js"></script>

<!-- build:css ../../css/bootstrap.min.css -->
<link href="../../html/css/bootstrap.min.css" rel="stylesheet">
<!-- /build -->
<!-- build:css ../../css/style.css -->
<link href="../../html/css/style.css" rel="stylesheet">
<!-- /build -->

<!-- HTML5 shim and Respond.js for IE8 support of HTML5 elements and media queries -->
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
<![endif]-->

<link rel="stylesheet" href="../common/css/style.css">
</head>
<body>
<div class="container">
<div class="page-header">
<h1>Buttons Example</h1>
<p class="lead">
This is a simple example of how to implement Pebble button clicks in RockyJS using a keyboard's directional arrow keys.
</p>
</div>

<div class="col-md-6">
<canvas id="pebble" class="rocky" width="432" height="504"></canvas>
</div>

<div class="col-md-6">
<h2>What's going on?</h2>
<p>
This example demonstrates how to interact with RockyJS bound to a canvas. Using the left, right, up, and down arrows on your keyboard you can simulate the back, select, up, and down buttons of the Pebble respectively.
</p>

<code>onPress(type, callback)</code>
<p>
Options for <code>type</code> are 'back', 'select', 'up', or 'down'.
</p>
<p>
Source for this example can be found at [link TBD].
</div>
<!-- build:template
<%= github_banner %>
/build -->
</div>
</body>
<script>

(function() {
var rocky = Rocky.bindCanvas(document.getElementById("pebble"));
rocky.export_global_c_symbols();

var currentText = "Press an arrow key";

rocky.update_proc = function (ctx, bounds) {
graphics_context_set_text_color(ctx, GColorBlack);
graphics_draw_text(ctx, currentText, fonts_get_system_font(FONT_KEY_GOTHIC_24_BOLD),
bounds, GTextOverflowModeWordWrap, GTextAlignmentLeft, null);
};

onPress("back", function() {
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

you put this logic into an anonymous function to not pollute the global namespace but currentText as well as rocky are still globals.

console.log("Back Button Pressed");
currentText = "Back lets us run away.";
rocky.mark_dirty();
});
onPress("up", function() {
console.log("Up Button Pressed");
currentText = "Up and away we go!";
rocky.mark_dirty();
});
onPress("select", function() {
console.log("Select Button Pressed");
currentText = "Select is the best button.";
rocky.mark_dirty();
});
onPress("down", function() {
console.log("Down Button Pressed");
currentText = "Down into the depths we go.";
rocky.mark_dirty();
});
})();

</script>
</html>
23 changes: 23 additions & 0 deletions examples/buttons/modules/buttons.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
var buttonHandler = {};

var buttonMap = {
back: 37,
up: 38,
select: 39,
down: 40
};

window.onPress = function onPress(type, callback) {
if (Object.keys(buttonMap).indexOf(type) >= 0) {
buttonHandler[type] = callback;
} else { console.log('Invalid type passed to onPress.');}
};

document.addEventListener('keydown', function(event) {
for (var button in buttonMap) {
if (event.keyCode === buttonMap[button] && buttonHandler[button]) {
event.preventDefault();
buttonHandler[button]();
}
}
});
1 change: 1 addition & 0 deletions examples/readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,5 +8,6 @@ This folder contains a variety of examples designed to help you understand some
- [Vector Graphics](pdc/index.html) – Draws and modifies vector graphics.
- [GPath](gpath/index.html) – Shows how to use APIs around `GPath`.
- [Text](text/index.html) – Shows how to draw text and use fonts.
- [Buttons](buttons/index.html) - Shows how to interact using keyboard arrows.
- [Community Examples](community.html) - Additional examples built by community members.