<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<title>JS Bin</title>
<script src="https://cagpie.github.io/resources/smf/picotune-demo.mid.js"></script>
<script src="https://unpkg.com/picoaudio/dist/browser/PicoAudio.js"></script>
</head>
<body>
<div>
<input type="button" value="play(音が鳴ります)" id="play-button" />
</div>
<div>
<canvas width="300px" height="300px" id="canvas" />
</div>
</body>
</html>
// View
const playButton = document.getElementById('play-button')
// PicoAudio.jsの初期化
const picoAudio = new PicoAudio()
picoAudio.init()
// 曲データの初期化
const parsedSMF = picoAudio.parseSMF(picotuneDemoSmf)
picoAudio.setData(parsedSMF)
// ボタン操作
playButton.addEventListener('click', () => {
// 再生状態を初期化して再生する
picoAudio.initStatus()
picoAudio.play()
})
///////////////////////////////////////////////////////
//// 描画周り
// View
const canvas = document.getElementById('canvas')
const context = canvas.getContext('2d')
// 描画に関する値
const ChannelColors = [
"#f66", "#fa6", "#f6f", "#6f6",
"#6af", "#66f", "#f22", "#fa2",
"#f2f", "#fff", "#2f2", "#2af",
"#22f", "#a00", "#060", "#006",
]
const BackgroundColor = '#dde'
const NoteWidth = 4
const ScrollSize = 3
// 再生中の音を管理する(今回は `チャンネル名/音の高さ` というkeyにしてしまう)
const playingNotes = new Map()
// PicoAudioのイベントリスナ 鳴ってる音をMapに入れる
picoAudio.addEventListener('noteOn', (note) => {
const key = `${ note.channel }/${ note.pitch }`
playingNotes.set(key, note.velocity)
})
picoAudio.addEventListener('noteOff', (note) => {
const key = `${ note.channel }/${ note.pitch }`
playingNotes.set(key, 0)
})
// canvas初期化
context.globalAlpha = 1
context.fillStyle = BackgroundColor
context.fillRect(0, 0, canvas.width, canvas.height)
// canvasの更新
const step = () => {
// すでに描画されているものを少し下にそのまま描画し直す(これにより下方向にスクロールする)
context.globalAlpha = 1
context.drawImage(canvas, 0, ScrollSize);
// 上部は今鳴ってる音だけを描画したいのでクリアする
context.globalAlpha = 1
context.fillStyle = BackgroundColor
context.fillRect(0, 0, canvas.width, ScrollSize)
// 鳴ってる音を上部に描画する
playingNotes.forEach((value, key) => {
if (value) {
// key から channel と pitch の情報を分離する
const [channel, pitch] = key.split('/')
// 低音域はあまり使用しないので100px分シフトする
const x = NoteWidth * pitch - 100
// 鳴ってる音の描画
context.globalAlpha = Math.min(value * 1.2, 1)
context.fillStyle = ChannelColors[channel]
context.fillRect(x, 0, NoteWidth, ScrollSize)
}
})
window.requestAnimationFrame(step)
}
window.requestAnimationFrame(step)
Output
You can jump to the latest bin by adding /latest
to your URL
Keyboard Shortcuts
Shortcut | Action |
---|---|
ctrl + [num] | Toggle nth panel |
ctrl + 0 | Close focused panel |
ctrl + enter | Re-render output. If console visible: run JS in console |
Ctrl + l | Clear the console |
ctrl + / | Toggle comment on selected lines |
ctrl + ] | Indents selected lines |
ctrl + [ | Unindents selected lines |
tab | Code complete & Emmet expand |
ctrl + shift + L | Beautify code in active panel |
ctrl + s | Save & lock current Bin from further changes |
ctrl + shift + s | Open the share options |
ctrl + y | Archive Bin |
Complete list of JS Bin shortcuts |
JS Bin URLs
URL | Action |
---|---|
/ | Show the full rendered output. This content will update in real time as it's updated from the /edit url. |
/edit | Edit the current bin |
/watch | Follow a Code Casting session |
/embed | Create an embeddable version of the bin |
/latest | Load the very latest bin (/latest goes in place of the revision) |
/[username]/last | View the last edited bin for this user |
/[username]/last/edit | Edit the last edited bin for this user |
/[username]/last/watch | Follow the Code Casting session for the latest bin for this user |
/quiet | Remove analytics and edit button from rendered output |
.js | Load only the JavaScript for a bin |
.css | Load only the CSS for a bin |
Except for username prefixed urls, the url may start with http://jsbin.com/abc and the url fragments can be added to the url to view it differently. |