ODEで学ぶC言語 [Step4: 関数]
ode

ODEで学ぶC言語のStep4です.今回は関数を練習しましょう.関数については既にわかっているものとし,ホームワークを通じて関数を使うとプログラムがとても簡単になることを実感してもらうことが狙いです.
今まで描画について学んできましたが,今回から動力学計算も学んでいきます.サンプルプログラムとしては,物理シミュレーションで最も簡単な物体の落下を取り上げます.プログラミングの教科書では初めの例題はHello Worldを表示する例が定番です。ここではHello Worldの物理シミュレーション版を紹介します.
ODEを使ったシミュレーションの流れを代表的なAPIと関連付けて列挙します。
- シミュレーションの流れ
- ODEの初期化 dInitODE()
- 動力学計算の世界worldの生成 dWorldCreate()
- 重力加速度の設定 dWorldSetGravity()
- 剛体の生成
- 質量の設定 dBodySetMass()
- 位置の設定 dBodySetPosition()
- 姿勢の設定 dBodySetRotation()
- シミュレーションループ(この部分は繰り返し実行される)
- 動力学計算の実施 dWorldStep()
- シミュレーションに必要な処理を書く
- 動力学worldの破壊 dWorldDestroy()
- ODEの終了 dCloseODE()
- 動力学計算
シミュレーションの流れでは色々なAPIを使っていますが、今回は物理エンジンの最も重要な動力学計算のAPIについて説明します。動力学計算をするAPIはdWorldStep()です.このAPIはシミュレーションで毎回呼び出さなければいけないのでサンプルプログラムのようにsimLoop関数の中で呼び出してください.
- ソースコード
/* step4 リンゴ(林檎)の落下 */
#include "dm4.h"
dWorldID world; // 動力学の世界
dBodyID apple; // リンゴ
dReal r = 0.2, m = 1.0; // リンゴの半径,質量
void simLoop(int pause) /*** シミュレーションループ ***/
{
dWorldStep(world,0.01); // シミュレーションを1ステップ進める
dsSetColor(1.0,0.0,0.0); // 赤色の設定(r,g,b)
const double *p = dBodyGetPosition(apple); // 位置を取得
const double *R = dBodyGetRotation(apple); // 姿勢を取得
dsDrawSphere(p,R,r); // リンゴの描画
}
int main() /*** main関数 ***/
{
dInitODE(); // ODEの初期化
world = dWorldCreate(); // 世界の創造
dWorldSetGravity(world,0,0,-0.2); // 重力設定
apple = dBodyCreate(world); // リンゴの生成
dMass mass; // 構造体massの宣言
dMassSetZero(&mass); // 構造体massの初期化
dMassSetSphereTotal(&mass,m,r); // 構造体massに質量を設定
dBodySetMass(apple,&mass); // リンゴにmassを設定
dBodySetPosition(apple, 0.0, 0.0, 2.0); // 位置設定(x,y,z)
dmLoop(800, 600); // ウインドウの幅,高
dWorldDestroy(world); // 世界の破壊
dCloseODE(); // ODEの終了
return 0;
}
- これは赤玉の自由落下のプログラムです。ODEのシミュレーションの流れでは、まず、dInitODE()でODEを初期化します。次に、物理計算をするworld(ワールド)をdWorldCreate()で作ります。物理計算を受ける物体はその中に作らなければなりません。ODEでは物体のことをbody(ボディ)と呼んでいます。物体はdBodyCreate(world)で作ります。物体を作ったら、次にその質量パラメータと位置や姿勢を設定します。このプログラムでは球の質量パラメータと位置だけを設定しています。
物体の生成と設定が終わったら、次はシミュレーションを進めます。これはdmLoop()で繰り替えしsimLoop関数が呼び出すことにより実行されています。simLoop関数のdWorldStep(world, 0.05)はシミュレーションを1ステップ進めています。進める時間は2番目の引数、この場合は0.05秒となります。dsDrawSphere()で落下する球を表示しています。
シミュレーションが終わると,後片付けを行います。dWorldDestroy(world)でワールドを破壊し,dCloseODE()でODEの終了処理をします。
なお、小文字のdで始まる関数はODEのAPI(application interface)で、dsで始まる関数はdrawstuff(ドロースタッフ)のAPIです。drawstuffはODE付属テストプログラム表示用のライブラリのことです。最後に,dmで始まる関数は私の作成した関数です.
ここでは重力加速度を赤玉がゆっくり落下していきますが、なんと地面を通り抜けて消えてしまいます。実は上のプログラムには衝突検出機能が組み込まれていなかったのです。
ホームワーク
- step4-090626.zipをダウンロードして実行しよう!
- ODE本を読んで,ボックス(直方体)を落下させよ!
- ODE本を読んで,円柱を落下させよ!
- ODE本を読んで,カプセルを落下させよ!
- 上で作成したプログラムの中で球を作るところを関数化しなさい.引数として位置,姿勢,物体生成に必要なパラメータを使うこと.
- dBodyID dmCreateSphere(double p[3], double R[12], double r , double m);
- 位置 p[3], 姿勢 R[12], 半径 r, 質量 m
- 同様にボックスの生成を関数化しなさい.
- dBodyID dmCreateBox(double p[3], double R[12], double sides[3], double m);
- 位置 p[3], 姿勢 R[12], サイズ sides[3], 半径 r, 質量 m
- 円柱の生成を関数化しなさい.
- dBodyID dmCreateCylinder(double p[3], double R[12], double l, double r, double m, int dir);
- 位置 p[3], 姿勢 R[12], 半径 r, 質量 m, 長軸の方向 dir
- カプセルの生成を関数化しなさい.
- dBodyID dmCreateCapsule(double p[3], double R[12], double l, double r);
- 位置 p[3], 姿勢 R[12], 半径 r, 質量 m, 長軸の方向 dir
").attr(n.scriptAttrs||{}).prop({charset:n.scriptCharset,src:n.url}).on("load error",i=function(e){r.remove(),i=null,e&&t("error"===e.type?404:200,e.type)}),C.head.appendChild(r[0])},abort:function(){i&&i()}}});var Jt,Kt=[],Zt=/(=)\?(?=&|$)|\?\?/;ce.ajaxSetup({jsonp:"callback",jsonpCallback:function(){var e=Kt.pop()||ce.expando+"_"+jt.guid++;return this[e]=!0,e}}),ce.ajaxPrefilter("json jsonp",function(e,t,n){var r,i,o,a=!1!==e.jsonp&&(Zt.test(e.url)?"url":"string"==typeof e.data&&0===(e.contentType||"").indexOf("application/x-www-form-urlencoded")&&Zt.test(e.data)&&"data");if(a||"jsonp"===e.dataTypes[0])return r=e.jsonpCallback=v(e.jsonpCallback)?e.jsonpCallback():e.jsonpCallback,a?e[a]=e[a].replace(Zt,"$1"+r):!1!==e.jsonp&&(e.url+=(At.test(e.url)?"&":"?")+e.jsonp+"="+r),e.converters["script json"]=function(){return o||ce.error(r+" was not called"),o[0]},e.dataTypes[0]="json",i=ie[r],ie[r]=function(){o=arguments},n.always(function(){void 0===i?ce(ie).removeProp(r):ie[r]=i,e[r]&&(e.jsonpCallback=t.jsonpCallback,Kt.push(r)),o&&v(i)&&i(o[0]),o=i=void 0}),"script"}),le.createHTMLDocument=((Jt=C.implementation.createHTMLDocument("").body).innerHTML="
",2===Jt.childNodes.length),ce.parseHTML=function(e,t,n){return"string"!=typeof e?[]:("boolean"==typeof t&&(n=t,t=!1),t||(le.createHTMLDocument?((r=(t=C.implementation.createHTMLDocument("")).createElement("base")).href=C.location.href,t.head.appendChild(r)):t=C),o=!n&&[],(i=w.exec(e))?[t.createElement(i[1])]:(i=Ae([e],t,o),o&&o.length&&ce(o).remove(),ce.merge([],i.childNodes)));var r,i,o},ce.fn.load=function(e,t,n){var r,i,o,a=this,s=e.indexOf(" ");return-1
").append(ce.parseHTML(e)).find(r):e)}).always(n&&function(e,t){a.each(function(){n.apply(this,o||[e.responseText,t,e])})}),this},ce.expr.pseudos.animated=function(t){return ce.grep(ce.timers,function(e){return t===e.elem}).length},ce.offset={setOffset:function(e,t,n){var r,i,o,a,s,u,l=ce.css(e,"position"),c=ce(e),f={};"static"===l&&(e.style.position="relative"),s=c.offset(),o=ce.css(e,"top"),u=ce.css(e,"left"),("absolute"===l||"fixed"===l)&&-1<(o+u).indexOf("auto")?(a=(r=c.position()).top,i=r.left):(a=parseFloat(o)||0,i=parseFloat(u)||0),v(t)&&(t=t.call(e,n,ce.extend({},s))),null!=t.top&&(f.top=t.top-s.top+a),null!=t.left&&(f.left=t.left-s.left+i),"using"in t?t.using.call(e,f):c.css(f)}},ce.fn.extend({offset:function(t){if(arguments.length)return void 0===t?this:this.each(function(e){ce.offset.setOffset(this,t,e)});var e,n,r=this[0];return r?r.getClientRects().length?(e=r.getBoundingClientRect(),n=r.ownerDocument.defaultView,{top:e.top+n.pageYOffset,left:e.left+n.pageXOffset}):{top:0,left:0}:void 0},position:function(){if(this[0]){var e,t,n,r=this[0],i={top:0,left:0};if("fixed"===ce.css(r,"position"))t=r.getBoundingClientRect();else{t=this.offset(),n=r.ownerDocument,e=r.offsetParent||n.documentElement;while(e&&(e===n.body||e===n.documentElement)&&"static"===ce.css(e,"position"))e=e.parentNode;e&&e!==r&&1===e.nodeType&&((i=ce(e).offset()).top+=ce.css(e,"borderTopWidth",!0),i.left+=ce.css(e,"borderLeftWidth",!0))}return{top:t.top-i.top-ce.css(r,"marginTop",!0),left:t.left-i.left-ce.css(r,"marginLeft",!0)}}},offsetParent:function(){return this.map(function(){var e=this.offsetParent;while(e&&"static"===ce.css(e,"position"))e=e.offsetParent;return e||J})}}),ce.each({scrollLeft:"pageXOffset",scrollTop:"pageYOffset"},function(t,i){var o="pageYOffset"===i;ce.fn[t]=function(e){return M(this,function(e,t,n){var r;if(y(e)?r=e:9===e.nodeType&&(r=e.defaultView),void 0===n)return r?r[i]:e[t];r?r.scrollTo(o?r.pageXOffset:n,o?n:r.pageYOffset):e[t]=n},t,e,arguments.length)}}),ce.each(["top","left"],function(e,n){ce.cssHooks[n]=Ye(le.pixelPosition,function(e,t){if(t)return t=Ge(e,n),_e.test(t)?ce(e).position()[n]+"px":t})}),ce.each({Height:"height",Width:"width"},function(a,s){ce.each({padding:"inner"+a,content:s,"":"outer"+a},function(r,o){ce.fn[o]=function(e,t){var n=arguments.length&&(r||"boolean"!=typeof e),i=r||(!0===e||!0===t?"margin":"border");return M(this,function(e,t,n){var r;return y(e)?0===o.indexOf("outer")?e["inner"+a]:e.document.documentElement["client"+a]:9===e.nodeType?(r=e.documentElement,Math.max(e.body["scroll"+a],r["scroll"+a],e.body["offset"+a],r["offset"+a],r["client"+a])):void 0===n?ce.css(e,t,i):ce.style(e,t,n,i)},s,n?e:void 0,n)}})}),ce.each(["ajaxStart","ajaxStop","ajaxComplete","ajaxError","ajaxSuccess","ajaxSend"],function(e,t){ce.fn[t]=function(e){return this.on(t,e)}}),ce.fn.extend({bind:function(e,t,n){return this.on(e,null,t,n)},unbind:function(e,t){return this.off(e,null,t)},delegate:function(e,t,n,r){return this.on(t,e,n,r)},undelegate:function(e,t,n){return 1===arguments.length?this.off(e,"**"):this.off(t,e||"**",n)},hover:function(e,t){return this.on("mouseenter",e).on("mouseleave",t||e)}}),ce.each("blur focus focusin focusout resize scroll click dblclick mousedown mouseup mousemove mouseover mouseout mouseenter mouseleave change select submit keydown keypress keyup contextmenu".split(" "),function(e,n){ce.fn[n]=function(e,t){return 0
タイトルとURLをコピーしました
コメント