HEXA BLOG
ヘキサブログ
プログラム
JavaScript始めました
まず始めに前アップルCEOのスティーブ・ジョブズ氏の訃報について、
哀悼の意を表し、心からご冥福をお祈りいたします。
PC業界に限らずゲーム業界等様々な業界に大きな影響を与えた偉大な方でした。
そんなアップル製品のMacBook Airを先日購入したgood sunこと山口です。
今回はそんなMac購入のきっかけにもなったお話です。
突然ですがJavaScriptご存知ですか?
Android開発で有名なJava言語とは全くの別物のブラウザ等で動くスクリプト言語です。
ブラウザで動作するので、OSを気にすることなくプログラムを記述することが出来ます。
その為持ち運びやすかったり、寝転びながら操作できるMacBook Airは最適な環境だったりします。
この寝転んで…がしたくてMacを買いました。
さて、なぜJavaScriptなのかですが、百聞は一見に如かず。
今回は簡単に最近噂のHTML5のcanvasの紹介を兼ねてJavaScriptのサンプルプログラムを作って見ました。
今回のサンプルはランダムな色の玉が跳ねるだけなのですがcanvasには画像も貼れます。
canvasを使うことでブラウザ内に自由に描画を行うことが出来ますし、
タイマを使って描画タイミングを制御することで、アクション性の高いゲームにも向いた処理が行えます。
実はこのcanvasは3D描画を扱うことも出来たりします。
魅力がたっぷり詰まった環境についてまだまだ色々語りたいのですが、今回はこの辺で。
今回のサンプルは
MacOSX LionでSafariとGoogle Chrome
WindowsのInternet Explorer9,Firefox,Google Chrome,Operaで動作確認を行なっております。
恐らくcanvasが使えるブラウザ全てで動作するのではないでしょうか?
残念ながらInternet Explorerは9より前のバージョンは動作対象外となります。
↓今回のサンプルコードです。ダウンロードはこちら。
<!DOCTYPE html> <html lang="ja"> <head> <meta charset="UTF-8"> <title>javascriptサンプル</title> </head> <body> <canvas id="canvas"></canvas> </body> <script type="text/javascript" charset="UTF-8"> //! スクリーンサイズ Screen = { width:320, height:240 }; //! ノードクラス function Node(){ // パラメータはランダムで決定 this.posx = Math.floor(Math.random() * Screen.width); this.posy = Math.floor(Math.random() * Screen.height); this.dirx = Math.ceil((Math.random() - 0.5) * 3); this.diry = Math.ceil((Math.random() - 0.5) * 3); this.color = "#"+((Math.floor(Math.random()*255) << 16) | (Math.floor(Math.random()*255) << 8) | Math.floor(Math.random()*255)).toString(16); this.rad = Math.ceil(Math.random() * 15); this.isFill = Math.random() > 0.5 ? true : false; } //! 更新関数 Node.prototype.update = function(){ this.posx += this.dirx; this.posy += this.diry; if((this.posx > Screen.width) || (this.posx < 0)){ this.posx -= this.dirx; this.dirx = -this.dirx; } if((this.posy > Screen.height) || (this.posy < 0)){ this.posy -= this.diry; this.diry = -this.diry; } } //! 描画関数 Node.prototype.draw = function(context2d){ context2d.beginPath(); context2d.arc(this.posx, this.posy, this.rad, 0, 360, false); if(this.isFill == true){ context2d.fillStyle = this.color; context2d.fill(); }else{ context2d.strokeStyle = this.color; context2d.lineWidth = 2; context2d.stroke(); } context2d.closePath(); } //! フレーム管理クラス function Frame(nodeCount){ // クリアカラーとキャンバスサイズ this.clearColor = "#404040"; // コンテキストの準備 this.canvas = window.document.getElementById("canvas"); this.context2d = this.canvas.getContext('2d'); this.canvas.width = Screen.width; this.canvas.height = Screen.height; // クリアカラーでクリアする this.context2d.fillStyle = this.clearColor; this.context2d.fillRect(0, 0, Screen.width, Screen.height); // ノードの準備 this.nodes = new Array(nodeCount); for(var i = 0; i < nodeCount; i++){ this.nodes[i] = new Node(); } } //! 実行 Frame.prototype.run = function(lastTime){ // クリア this.context2d.fillStyle = this.clearColor; this.context2d.fillRect(0, 0, Screen.width, Screen.height); //! 全てのノードを更新して for(var i = 0; i < this.nodes.length; i++){ this.nodes[i].update(); this.nodes[i].draw(this.context2d); } //! 更新を行う var nowTime = new Date(); // 20FPS var nextTime = 50 - (nowTime.getTime() - lastTime.getTime()); if(nextTime <= 0){ nextTime = 1; } var _this = this; setTimeout(function(){_this.run(nowTime);}, nextTime); } var frame = new Frame(100); frame.run(new Date()); </script> </html>
CATEGORY
- about ヘキサ (166)
- 部活動 (6)
- CG (18)
- プロジェクトマネジメント (1)
- 研修 (5)
- 美学 (1)
- いいモノづくり道 (230)
- 採用 -お役立ち情報も- (149)
- プログラム (188)
- デザイン (99)
- ゲーム (274)
- 日記 (1,104)
- 書籍紹介 (113)
- その他 (875)
- 就活アドバイス (20)
- ラーメン (3)
- ライフハック (25)
- イベント紹介 (10)
- 料理 (23)
- TIPS (7)
- 怖い話 (3)
- サウンド (5)
- 子育て (1)
- 筋トレ (1)
- 商品紹介 (21)
- アプリ紹介 (31)
- ソフトウェア紹介 (33)
- ガジェット紹介 (12)
- サイト紹介 (10)
- 研究・開発 (34)
- 回路図 (4)
- アナログゲーム (40)
- 交流会 (21)
- 報告会 (3)
- インフラ (25)
- グリとブラン (6)
- カメラ (9)
- クラフト (27)
- 部活 (14)
- 画伯 (15)
- カレー (6)
- 音楽(洋楽) (6)
- 映画・舞台鑑賞 (43)
- 飼育 (5)
- いぬ (8)
- ねこ (19)
ARCHIVE
- 2024年
- 2023年
- 2022年
- 2021年
- 2020年
- 2019年
- 2018年
- 2017年
- 2016年
- 2015年
- 2014年
- 2013年
- 2012年
- 2011年
- 2010年
- 2009年
- 2008年
- 2007年