mirror of
https://github.com/whscullin/apple2js.git
synced 2024-01-12 14:14:38 +00:00
4d80f9f28e
Initial checkin, still pretty rough around the edges.
110 lines
2.6 KiB
JavaScript
110 lines
2.6 KiB
JavaScript
/* -*- mode: JavaScript; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
|
|
/* Copyright 2010-2013 Will Scullin <scullin@scullinsteel.com>
|
|
*
|
|
* Permission to use, copy, modify, distribute, and sell this software and its
|
|
* documentation for any purpose is hereby granted without fee, provided that
|
|
* the above copyright notice appear in all copies and that both that
|
|
* copyright notice and this permission notice appear in supporting
|
|
* documentation. No representations are made about the suitability of this
|
|
* software for any purpose. It is provided "as is" without express or
|
|
* implied warranty.
|
|
*/
|
|
|
|
/*jshint rhino:true, browser: true, devel: true */
|
|
/*exported allocMem, allocMemPages, debug, toHex, toBinary, extend, gup, hup, each */
|
|
|
|
if (!Date.now) {
|
|
Date.now = function now() {
|
|
return new Date().getTime();
|
|
};
|
|
}
|
|
|
|
var hex_digits = "0123456789ABCDEF";
|
|
var bin_digits = "01";
|
|
|
|
function allocMem(size) {
|
|
var result;
|
|
if (window.Uint8Array) {
|
|
result = new Uint8Array(size);
|
|
} else {
|
|
result = new Array(size);
|
|
}
|
|
return result;
|
|
}
|
|
|
|
function allocMemPages(pages) {
|
|
return allocMem(pages * 0x100);
|
|
}
|
|
|
|
function extend(ary1, ary2) {
|
|
ary2.forEach(function(val) {
|
|
ary1.push(val);
|
|
});
|
|
return ary1;
|
|
}
|
|
|
|
function debug(msg) {
|
|
if (typeof(console) != 'undefined' && 'log' in console) {
|
|
console.log(msg);
|
|
} else if (typeof(environment) == 'object') { // rhino shell
|
|
print(msg);
|
|
}
|
|
}
|
|
|
|
function toHex(v, n) {
|
|
if (!n) {
|
|
n = v < 256 ? 2 : 4;
|
|
}
|
|
var result = "";
|
|
for (var idx = 0; idx < n; idx++) {
|
|
result = hex_digits[v & 0x0f] + result;
|
|
v >>= 4;
|
|
}
|
|
return result;
|
|
}
|
|
|
|
function toBinary(v) {
|
|
var result = "";
|
|
for (var idx = 0; idx < 8; idx++) {
|
|
result = bin_digits[v & 0x01] + result;
|
|
v >>= 1;
|
|
}
|
|
return result;
|
|
}
|
|
|
|
// From http://www.netlobo.com/url_query_string_javascript.html
|
|
function gup( name )
|
|
{
|
|
name = name.replace(/[\[]/,"\\[").replace(/[\]]/,"\\]");
|
|
var regexS = "[\\?&]"+name+"=([^&#]*)";
|
|
var regex = new RegExp( regexS );
|
|
var results = regex.exec( window.location.href );
|
|
if( !results )
|
|
return "";
|
|
else
|
|
return results[1];
|
|
}
|
|
|
|
function hup() {
|
|
var regex = new RegExp("#(.*)");
|
|
var results = regex.exec(window.location.hash);
|
|
if ( !results )
|
|
return "";
|
|
else
|
|
return results[1];
|
|
}
|
|
|
|
function keys(obj) {
|
|
var result = [];
|
|
for (var key in obj) {
|
|
if (obj.hasOwnProperty(key)) {
|
|
result.push(key);
|
|
}
|
|
}
|
|
return result;
|
|
}
|
|
|
|
function each(obj, fn) {
|
|
keys(obj).forEach(fn);
|
|
}
|