html5

Player character viewpoint support into 2D shooter game with WebGL

I supported Player character viewpoint using WebGL into touhou like shooting.https://github.com/takahirox/toho-like-jsPresss "Y" to change the viewpoint. You can use it in sole play, replay, and co-op play.

P2P online co-op shooter game with WebRTC

Introduction I've implemented a Touhou style shooter game. Its special feature is that you can enjoy P2P co-op play with your friend using WebRTC.I'll introduce you how to connect with your friend. Try and enjoy! How to connect and begin t…

Online co-op shooter game with WebRTC

Began to work on Chrome with P2P connection. It uses WebGL, WebSocket, and WebRTC. http://takahirox.github.io/toho-like-js/index2.html

WebRTC performance test on 2D shooter game

I'm making WebRTC performance test on 2D shooter game. Ask me how to use it if you're interested in it because its interface and functionality are not straightforward yet.http://takahirox.github.io/toho-like-js/webrtc_test.html I reused We…

I'm implementing a NES emulator with JavaScript

I've been implementing a NES(Famicom in JP) emulator with JavaScript. Finally I achieved to display a pic after boot up. It stops after display the pic, but prolly you can actually play games on it soon.The code and the demonstration is he…

WebSocket adoption to the game.

Introduction As I wrote in the previous article, I began some experiments of the network use on the web browser game.First of all, I evaluated WebSocket performance which could be the easiest to use, to know what I can do with it.WebSocket…

Porting the 2D shooter game to WebGL.

Introduction In the previous article http://d.hatena.ne.jp/takahirox/20140518/1400388214 I found that WebGL can much improve the drawing performance.So I ported the 2D shooter game which I've been developing to WebGL, not only background b…

WebGL benchmark based on 2D traditional shooting game

Introduction I made a WebGL benchmark based on 2D traditional shooting game to know the WebGL potential.I'll introduce it and I got a good result much better than Canvas. Benchmark http://takahirox.github.io/toho-like-js/webgl_test.htmlPro…

Adopted WebGL to draw the 3D background of 2D shooter game.

Introduction Finally I adopted WebGL to draw the 3D background of the traditional 2D shooter game which I made.The combination of 2D main game layer and 3D background layer looks good, isn't it? Screenshot Play You can play my game on your…

WebGL experiment onto JavaScript STG

Introduction Lately, I've studied WebGL to get used to GPU. I think I understand the basic knowledge, so I began to try to adopt it into the STG which I've been developing.I've had the problem in the STGthat the canvas drawing leads the sl…

How to reduce GC processing on real time JavaScript game.

Introduction You know, I've been implementing a STG with JavaScript and HTML5. (This article follows the previous article http://d.hatena.ne.jp/takahirox/20130819/1376894048)Recently, the low performance of the STG was getting serious, the…

JavaScriptとHTML5で作ったUNIX v6 emulatorっぽい何かの紹介

http://d.hatena.ne.jp/takahirox/20110827/1314441832の続き 紹介動画 免責 まだバグバグな状態です。無限ループなどにはまる可能性もあります。自己責任で使用してください。ローパワーなマシンだと結構遅いです。 使い方 下記のリンクをクリックしてくだ…

UNIX V6 file system hack toolの現状を動画で紹介

前回のエントリでUNIX v6 file system hack toolを作り始めたことを書きました。HTML5+JacaScript版がそれなりに形になってきたので、動画で紹介してみました。よろしければご覧ください。肝心のhack toolはこちらからアクセスできます。http://gachapin.jp/…

HTML5とC++で、それぞれUNIX v6のファイルシステムハック始めました

はじめに UNIX v6 code readingもファイルシステムに突入しました。コード読み解いてるだけじゃ物足りないなー。そうだ、UNIX v6 ファイルシステムをハックしてしまおう!と思ったのが今回の始まりです。 その前に UNIX v6ファイルシステム読み込みに関して…

ブラウン運動の可視化プログラムを少し改造してみた

はじめに 光栄なことに、昨日のエントリに対し、結城浩さんからコメントを頂きました。 window.twttr = (function(d, s, id) { var js, fjs = d.getElementsByTagName(s)[0], t = window.twttr || {}; if (d.getElementById(id)) return t; js = d.createEle…

ブラウン運動の可視化プログラムをC++とHTML5でそれぞれ作ってみた

はじめに 久々にC++書きたいなー、とか、物理現象を可視化したいなー、とか、HTML5弄ってみたいなー、とか思っていました。そんな折、数学ガールを読んでいて、ふと目に付いた「ブラウン運動」の文字。そんなわけで「ブラウン運動の可視化」を題材にして、C+…