-
-
Notifications
You must be signed in to change notification settings - Fork 397
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'rocketinventor-master'
* rocketinventor-master: add local file warning Added comments to source code Implemented Web Workers Preperations for web using a worker moved var definition created var for window log fixed description meta Added a delay function and fixed time being *1000. improved link styling removed red outline around text box removed more unused CSS removed unused and unrelated CSS classes Improved formatting
- Loading branch information
Showing
3 changed files
with
79 additions
and
41 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,60 @@ | ||
//Credits to https://github.com/fulldecent/system-bus-radio | ||
//As well as Jordan Harband for the nodejs simd library | ||
//Tested to be working on Chrome at 1560khz | ||
|
||
var window = self; // Create "window" object | ||
|
||
function now() { | ||
return window.performance.now() * 1000000; | ||
} | ||
|
||
var NSEC_PER_SEC = 1000000000; | ||
var register = 3.1415; | ||
|
||
function square_am_signal(time, freq) { // This funcion generates the radio waves | ||
postMessage("\nPlaying / " + time + " seconds / " + freq + "Hz"); | ||
var period = NSEC_PER_SEC / freq; | ||
var start = now(); | ||
var end = now() + time * NSEC_PER_SEC; | ||
while (now() < end) { | ||
var mid = start + period / 2; | ||
var reset = start + period; | ||
while (now() < mid) { | ||
for (var i = 0; i < 100; i++) { | ||
register = 1 - Math.log(register) / 1.7193; | ||
} | ||
} | ||
while (now() < reset) {} | ||
start = reset; | ||
} | ||
} | ||
|
||
function play(song) { // Parse song data, and call on required scripts to run it | ||
song = song.split("\n"); | ||
var length = song.length; | ||
var line, time, freq; | ||
for (var i = 0; i < length; i++) { | ||
line = song[i].split(" "); | ||
if (+line[1] == 0) { | ||
pause(line[0]); | ||
} | ||
else { | ||
freq = +line[1]; | ||
time = (+line[0])*.001; | ||
square_am_signal(time, freq); | ||
} | ||
} | ||
|
||
close(); // Close Web Worker | ||
} | ||
|
||
function pause(time) { // A useless function to run when there is no noise to play | ||
postMessage("\nPaused / " + time*.001 + " seconds"); | ||
var dt = new Date(); | ||
while ((new Date()) - dt <= time) { /* Do nothing */ } | ||
} | ||
|
||
onmessage = function(event) { // Recieve song data from main page | ||
var data = event.data; | ||
play(data); | ||
}; |