view document/presentation/semi09_04_14.html @ 0:99a6512a8253

moving from firefly
author koba <koba@cr.ie.u-ryukyu.ac.jp>
date Wed, 28 Oct 2009 20:12:40 +0900
parents
children
line wrap: on
line source

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" 
	"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">

<html xmlns="http://www.w3.org/1999/xhtml">

<head>
<title>ゼミ資料 09/04/14</title>
<!-- metadata -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<meta name="generator" content="S5" />
<meta name="version" content="S5 1.1" />
<meta name="presdate" content="20050728" />
<meta name="author" content="Eric A. Meyer" />
<meta name="company" content="Complex Spiral Consulting" />
<!-- configuration parameters -->
<meta name="defaultView" content="slideshow" />
<meta name="controlVis" content="hidden" />
<!-- style sheet links -->
<link rel="stylesheet" href="ui/default/slides.css" type="text/css" media="projection" id="slideProj" />
<link rel="stylesheet" href="ui/default/outline.css" type="text/css" media="screen" id="outlineStyle" />
<link rel="stylesheet" href="ui/default/print.css" type="text/css" media="print" id="slidePrint" />
<link rel="stylesheet" href="ui/default/opera.css" type="text/css" media="projection" id="operaFix" />
<!-- S5 JS -->
<script src="ui/default/slides.js" type="text/javascript"></script>
</head>
<body>

<div class="layout">
<div id="controls"><!-- DO NOT EDIT --></div>
<div id="currentSlide"><!-- DO NOT EDIT --></div>
<div id="header"></div>
<div id="footer">
<h1>[date:09/04/14]</h1>
<h2>発表資料</h2>
</div>

</div>


<div class="presentation">

<div class="slide">
<h1>発表資料</h1>
<h3>小林 佑亮</h3>
<h4>琉球大学 理工学研究科 情報工学専攻</h4>
<h4>No.098581D</h4>
</div>

<div class="slide">
<h1>超弾帝の移植</h1>
<ul>
<li>ソースの修正</li>
<font size="5">
<li>ダメなソース</li>
<pre>
...
  if(node->xyz[0] > screen_w-280) {
    node->set_move_collision(boss1_move_left, boss1_collision);
  }
...
</pre>
<li>良いソース</li>
<pre>
#define BOSS1_RIGHT_END screen_w-280
...
  if(node->xyz[0] > BOSS1_RIGHT_END) {
    node->set_move_collision(boss1_move_left, boss1_collision);
  }
...
</pre>
</font>
<br>
<li>オブジェクト指向を使いたい</li>
</ul>
</div>

<div class="slide">
<h1>東京で聞いてきました</h1>
<ul>
<li>目の動きに合わせて立体的に見える光学技術</li>
<font size="5">
<li>ゲームに応用</li>
<li>携帯ゲームに</li>
</font>
<br>
<li>PS3でのプログラミング</li>
<font size="5">
<li>SCEのツールはダメらしい</li>
<li>各社自前のツールを用意</li>
<br>
<li>SEGAの本は読んだ方が良い</li>
</ul>
</div>

</div>

</body>
</html>