青青草原综合久久大伊人导航_色综合久久天天综合_日日噜噜夜夜狠狠久久丁香五月_热久久这里只有精品

麒麟子

~~

導航

<2013年4月>
31123456
78910111213
14151617181920
21222324252627
2829301234
567891011

統計

常用鏈接

留言簿(12)

隨筆分類

隨筆檔案

Friends

WebSites

積分與排名

最新隨筆

最新評論

閱讀排行榜

評論排行榜

Programming 3D games on Android with Irrlicht and Bullet

Programming 3D games on Android with Irrlicht and Bullet (Part 1)

Posted on May 19, 2011, 11:00 pm, by xp, under Programming.

Just got a new Android phone (a Samsung Vibrant) a month ago, so after flashing a new ROM and installing a bunch of applications, what would I want to do with the new phone? Well, I’d like to know if the phone is fast enough to play 3D games. From the hardware configuration point of view, it is better equipped than my desktop computer in the 1990s, and since my desktop computer at the time had no problem with 3D games, I would expect it to be fast enough to do the same.

At first, I was considering downloading a 3D game from the market, but 3D games for Android are still rare, then why don’t I just create a 3D demo game myself?

After looking around which 3D game engines are available for the Android platform, I just settled down with Irrlicht. This is an open source C++ graphic engine, and not really a game engine per se, but it should have enough features to create my demo 3D application. And I like to have realistic physics in my game, so what could be better than the Bullet Physics library? This is the best known open source physics library, also developed in C++. The two libraries together would be an interesting combination.

Although Irrlicht was developed for desktop computers, but luckily enough, someone has already ported Irrlicht to the Android platform, which requires a special device driver for the graphic engine. And guess what? Someone has also created a Bullet wrapper for the Irrlicht engine. All of them in C++, and open source. All we need to do now to pull all these codes together to build a shared library for Android.

In this part, I’ll just describe what needs to compile all the codes for Android. Since we will compile C/C++ codes, you’ll need to download the Android native development kit. Please refer to the documentation on how to install.

We create an Android project, and add a jni folder. Then we put all the C/C++ source codes under the jni folder. I created three sub-folders:

  1. Bullet: All the Bullet Physics source codes. Actually, we only need the Collision, Dynamics, Soft Body and Linear Math libraries.
  2. Irrlicht: The Irrlicht 3D graphic engine source codes. This is the Android port of the engine.
  3. irrBullet: This is the Bullet wrapper for Irrlicht engine, which makes it easier to write your programs.

After, all we need to do is to create an Android.mk file, which is quite simple, really. You can read the makefile to see how it is structured. Basically, we just tell the Android NDK build tools that we want to build all the source codes for the Arm platform, and we want to link with the OpenGL ES library, to create a shared library called libirrlichtbullet.so. That’s about it.

However, there’s one minor thing to note though. Android does not really support C++ standard template library, but the irrBullet library made use of it. Therefore, in the jni folder, we need to add an Application.mk file, which contains the following line:

APP_STL  := stlport_static

And that’s it. Now, you can run ndk-build to build the shared library. If you have a slow computer, it would take a while. If everything is alright, you should have a shared library in the folder libs/armeabi/. That shared library contains the Bullet Physics, Irrlicht and the irrBullet wrapper libraries. You can now create your 3D games for Android with it. In the next part, we will write a small demo program using this library.

You can download all the source codes and pre-built library here.

 

 

Programming 3D games on Android with Irrlicht and Bullet (Part 2)

Posted on May 20, 2011, 11:30 am, by xp, under Programming.

In the last post, we have built the Bullet Physics, Irrlicht and irrBullet libraries together to create a shared library for the Android platform. In this post, we are going to create a small demo 3D game for Android, using the libraries that we have built earlier.

This demo is not really anything new, I am going to just convert an Irrlicht example to run on Android. In this simple game, we are going to stack up a bunch of crates, and then we will shoot a sphere or a cube, from a distance, to topple the crates. The Irrlicht engine will handle all the 3D graphics, and the Bullet Physics library will take care of rigid body collision detection and all realistic physical kinetics. For example, when we shoot a sphere from the distance, how the sphere follows a curve line when flying over the air, how far it will fly, where it is going to fall on to the ground, how it reacts when it hits the ground, how it reacts when it hits the crates, and how the crates will react when being hit, etc, all these will be taken care of by Bullet Physics, and Irrlicht will render the game world accordingly.

Since it is easier to create Android project in Eclipse, we are going to work with Eclipse here. You will need to following tools to work with:

  1. Android SDK
  2. Android NDK
  3. Eclipse IDE
  4. Eclipse plugin for Android development.

I’m assuming you have all these tools installed and configured correctly. And I’m assuming you have basic knowledge on Android programming too, so I won’t get into the basic details here.

Let’s create a project called ca.renzhi.bullet, with an Activity called BulletActivity. The onCreate() method will look something like this:

  1. @Override

  2. public void onCreate(Bundle savedInstanceState) {

  3. super.onCreate(savedInstanceState);

  4. // Lock screen to landscape mode.

  5. this.setRequestedOrientation(ActivityInfo.SCREEN_ORIENTATION_LANDSCAPE);

  6. mGLView = new GLSurfaceView(getApplication());

  7. renderer = new BulletRenderer(this);

  8. mGLView.setRenderer(renderer);

  9. DisplayMetrics displayMetrics = getResources().getDisplayMetrics();

  10. width = displayMetrics.widthPixels;

  11. height = displayMetrics.heightPixels;

  12. setContentView(mGLView);

  13. }

This just tells Android that we want an OpenGL surface view. We will create a Renderer class for this, something very simple like the following:

  1. public class BulletRenderer implements Renderer

  2. {

  3. BulletActivity activity;

  4. public BulletRenderer(BulletActivity activity)

  5. {

  6. this.activity = activity;

  7. }

  8. public void onDrawFrame(GL10 arg0)

  9. {

  10. activity.drawIteration();

  11. }

  12. public void onSurfaceChanged(GL10 gl, int width, int height)

  13. {

  14. activity.nativeResize(width, height);

  15. }

  16. public void onSurfaceCreated(GL10 gl, EGLConfig config)

  17. {

  18. activity.nativeInitGL(activity.width, activity.height);

  19. }

  20. }

The renderer class’s method will be invoked every time a frame needs to be rendered. There’s nothing special here. When the methods are invoked, we just invoke the native methods in the activity class, which will then call the C native functions through JNI. Since Irrlicht and Bullet are C++ libraries, we will have to write the main part of the game in C/C++. We keep very little logic in Java code.

When the surface is first created, the onSurfaceCreated() method is invoked, and here, we just call nativeInitGL(), which will initialize our game world in Irrlicht. This will initialize the device, the scene manager, create a physical world to manage the rigid bodies and their collision, create a ground floor, and put a stack of crates in the middle point. Then, we create a first-person-shooter (FPS) camera to look at the stack of crates. The player will look at this game world through the FPS camera.

I’m not going to describe the codes line by line, since you can download the codes to play with it. But when you create the Irrlicht device with the following line of code:

  1. device = createDevice( video::EDT_OGLES1, dimension2d(gWindowWidth, gWindowHeight), 16, false, false, false, 0);

Make sure you select the correct version of OpenGL ES library on your Android device. I have version 1.x on mine. But if you have version 2.x, change to video::EDT_OGLES2 instead.

After the initialization, we would have a scene that looks like this:

When a frame is changed and needs to render, the onDrawFrame() method of the renderer is invoked. And here, we just call the nativeDrawIteration() function and will handle the game logic in C/C++ codes. The code looks like this:

  1. void Java_ca_renzhi_bullet_BulletActivity_nativeDrawIteration(

  2. JNIEnv* env,

  3. jobject thiz,

  4. jint direction,

  5. jfloat markX, jfloat markY)

  6. {

  7. deltaTime = device->getTimer()->getTime() – timeStamp;

  8. timeStamp = device->getTimer()->getTime();

  9. device->run();

  10. // Step the simulation

  11. world->stepSimulation(deltaTime * 0.001f, 120);

  12. if ((direction != -1) || (markX != -1) || (markY != -1))

  13. handleUserInput(direction, markX, markY);

  14. driver->beginScene(true, true, SColor(0, 200, 200, 200));

  15. smgr->drawAll();

  16. guienv->drawAll();

  17. driver->endScene();

  18. }

As you can see, this is very standard Irrlicht game loop, the only thing added here is a function to handle user input.

User input includes moving left and right, forward and backward, shooting sphere and cube. Irrlicht engine depends on keyboard and mouse for user interaction, which are not available on Android devices. So, we will create a very basic kludge to allow users to move around and shoot. We will use touch and tap to handle user input. Users will move their finger left and right, on the left part of the screen, to move left and right in the game world. Users will move their finger up and down, on the right part of screen, to move forward and backward in the game world. And tap on the screen to shoot. Therefore, the movement direction is translated into a parameter, called direction, and passed to the native code to be handled. We also grab the X and Y coordinates of the shooting mark, and pass them as parameters to native codes as well.

That’s it. You can now build it, package into an apk, install it on your Android device, and play with it. When you shoot on the stack of crates, you would have a scene that looks like this:

The performance on my Samsung Vibrant is ok, I get about 56 or 57 FPS, which is quite smooth. But if there are too many objects to animate, especially after we have shot many spheres and cubes, we will have a screen that hangs and jumps a bit, or sometimes, it stops to react to user input for a fraction of second. In a real game, we might want to remove objects that have done their work, so that the number of objects to animate is significantly reduced to maintain an acceptable performance.

The other important thing that we want to improve is user interaction and control. The Irrlicht engine is developed for desktop computers, it relies mainly on keyboard and mouse for user interaction. These are not available on mobile devices. The current demo attempted to use touch and tap on screen as user control, but it does not work very well. In a next post, we will try to create virtual controls on screen (e.g. buttons, dials, etc), and we might want to take advantage of the sensor as well, which is a standard feature on mobile devices now.

You can download the source codes of the demo here.

 

Programming 3D games on Android with Irrlicht and Bullet (Part 3)

Posted on May 23, 2011, 6:25 pm, by xp, under Programming.

In the last post, we have created a basic 3D demo application with Irrlicht, in which we put a stack of crates, and we topple them by shooting a cube or a sphere.

In this post, we will try to create an on-screen control so that you can move around with it, like using a hardware control. What we want to have is something like this, in the following screenshot:

What we have here is a control knob, sitting on a base. The knob is in the centre of the base. The on-screen control always stays on top of the game scene, and the position should stay still regardless of how you move the camera. However, users can press on the knob, and drag it left and right, and this, in turn, moves the camera left and right accordingly.

Obviously, you can implement movement direction along more than one axis too. And you can also have more than one on-screen control if you want, since it is a device with multi-touch screen. But that’s left to you as an exercise.

Placing an on-screen control is actually quite easy. All you have to do is to load a picture as texture, then draw it as 2D image on the screen, at the location you want to put the control. But since we want the on-screen control to be always on top, we have to draw the 2D image after the game scene (and all the scene objects) are drawn. If we draw the 2D image first, it will hidden by the game scene. There, in your loop, you would have something like this:

  1. driver->beginScene(true, true, SColor(0, 200, 200, 200));

  2. smgr->drawAll();

  3. guienv->drawAll();

  4. // Draw the on-screen control now

  5. onScreenControl->draw(driver);

  6. driver->endScene();

That’s the basic idea. Here, we have created an OnScreenControl class, which encloses two objects, one of VirtualControlBase class and the other, of VirtualControlKnob class. The draw() method of the OnScreenControl class looks like this:

  1. void OnScreenControl::draw(IVideoDriver* driver)

  2. {

  3. base->draw(driver);

  4. knob->draw(driver);

  5. }

It just relegates the drawing works to its sub-objects, the control base and the control knob. Note that the knob has to be drawn after the base, otherwise, it will be hidden behind the base, instead of sitting on top of it. The draw() method of the base looks like:

  1. void VirtualControlBase::draw(IVideoDriver* driver)

  2. {

  3. driver->draw2DImage(_texture,

  4. position2d(pos_x, pos_y),

  5. rect(0, 0, width, height),

  6. 0,

  7. SColor(255,255,255,255),

  8. true);

  9. }

As you see, it just draws a 2D image with the texture, at the location specified. That’s it.

After putting the on-screen control in place, we have to handle user touch events on the screen. If users press on the knob (i.e. pressing within the square boundary of the knob image), and move the finger around, we update the position of the knob according to the movement direction. Here, we want to make sure that users can not drag the knob out of the control base boundary (or too far out of the boundary anyway), to make it look and behave like a real control. As users move the knob around, you want to update your camera’s position accordingly. And when the knob is released, you want to reset its position back to the centre of the control base.

That’s basically the idea. You can grab the source code here. Ugly codes, I warn you.

The major problem of programming Irrlicht on Android is the separation of Java codes and the C/C++ codes. If you want to limit your program to only Android 2.3 or later, you can probably write the whole program in C/C++, using the native activity class. That way, you don’t have to move back and forth between Java and C++. But if you want to run your program on older versions of Android, your Activity must be written in Java, and the main game logic written in C/C++. You then have to catch user interaction events in your Java code, pass them through JNI to your C/C++ code. There will be loss of information as you move back and forth, not to mention that there will be quite a bit of code duplication. You can certainly create a full wrapper for the Irrlicht and Bullet libraries, but that will be taxing your mobile device heavily, and will certainly have a negative impact on performance. And creating a full wrapper for these two libraries would be a heck of a job.

The other problem is that, Irrlicht is an engine developed for the desktop, where keyboard and mouse are the main input devices. The Irrlicht port to Android mainly concerns with a display driver for Android, but the port has not really gone deep into this area of user interaction. Therefore, as you write your Irrlicht-based Android program, you would have to hack together user input handling model, event model, etc. In my demo, I haven’t even touched that, I have just kludged together some primitive event handling codes. In order to have our program fit in those multi-touch based devices, we would have to dig into the Irrlicht scene node animator and event handling mechanisms, and work it out from there. For example, we will have to define our own scene node animator which would be based on touch events instead of keyboard and mouse events, and add it to the scene node that we want to animate. This is something that we are going to look into in our future posts.

posted on 2013-04-06 21:19 麒麟子 閱讀(1353) 評論(0)  編輯 收藏 引用 所屬分類: Irrlicht

青青草原综合久久大伊人导航_色综合久久天天综合_日日噜噜夜夜狠狠久久丁香五月_热久久这里只有精品
  • <ins id="pjuwb"></ins>
    <blockquote id="pjuwb"><pre id="pjuwb"></pre></blockquote>
    <noscript id="pjuwb"></noscript>
          <sup id="pjuwb"><pre id="pjuwb"></pre></sup>
            <dd id="pjuwb"></dd>
            <abbr id="pjuwb"></abbr>
            一区二区三区视频在线| 欧美一区二区三区免费视| 国产精品a久久久久久| 欧美成va人片在线观看| 久久综合九色| 麻豆免费精品视频| 欧美黄色一区| 欧美日韩免费看| 国产精品视频99| 国内伊人久久久久久网站视频 | 玖玖综合伊人| 欧美福利网址| 亚洲美女在线看| 亚洲一区二区在线免费观看视频| 一本大道久久精品懂色aⅴ| 99国产精品私拍| 羞羞答答国产精品www一本 | 亚洲日韩欧美视频| 欧美xart系列高清| 亚洲国产欧美在线人成| 一区二区不卡在线视频 午夜欧美不卡在| 91久久久久久久久久久久久| 99精品国产在热久久婷婷| 亚洲影院色无极综合| 久久久精品日韩欧美| 欧美激情精品| 国产欧美婷婷中文| 亚洲黄色免费电影| 亚洲欧美综合v| 久久亚洲一区| 99精品国产高清一区二区| 久久成人免费| 欧美午夜在线观看| 亚洲欧洲视频在线| 久久久高清一区二区三区| 亚洲国产精品电影| 性刺激综合网| 欧美日韩一视频区二区| 一区二区在线视频| 中文av一区二区| 免费美女久久99| 亚洲你懂的在线视频| 欧美成人免费小视频| 国产欧美精品国产国产专区| 日韩一区二区精品| 免费在线亚洲| 欧美在线观看你懂的| 欧美日韩免费观看一区三区 | 亚洲欧美日产图| 欧美成人国产一区二区| 亚洲一区二区欧美日韩| 欧美国产免费| 亚洲国产高清一区| 久久免费国产精品| 亚洲欧美成人网| 国产精品超碰97尤物18| 亚洲免费电影在线| 亚洲高清123| 久久婷婷激情| 激情成人av| 蜜臀91精品一区二区三区| 欧美有码在线视频| 国产女主播一区二区| 午夜精品一区二区三区电影天堂 | 一本色道精品久久一区二区三区 | 欧美日韩中文另类| 亚洲国产免费| 亚洲大胆av| 美女尤物久久精品| 亚洲精品国产无天堂网2021| 欧美成ee人免费视频| 久久久综合网站| 亚洲国产片色| 亚洲电影免费观看高清完整版在线| 久久久国产视频91| 亚洲高清色综合| 亚洲国产精品成人综合色在线婷婷 | 怡红院av一区二区三区| 久久亚洲精品网站| 欧美在线亚洲一区| 亚洲黑丝在线| 亚洲九九九在线观看| 国产精品激情av在线播放| 午夜精品理论片| 久久精品国产亚洲高清剧情介绍| 在线播放亚洲一区| 亚洲欧洲综合另类在线| 国产精品成av人在线视午夜片| 欧美一级在线亚洲天堂| 久久精品1区| 日韩视频三区| 亚洲欧美日韩一区在线| 激情婷婷欧美| 亚洲精品一级| 国产综合精品一区| 亚洲日本欧美日韩高观看| 国产精品wwwwww| 蜜桃av久久久亚洲精品| 欧美日韩在线视频一区| 久久嫩草精品久久久久| 欧美另类久久久品| 久久精品亚洲一区| 免费美女久久99| 亚洲婷婷在线| 久久亚洲春色中文字幕| 亚洲网在线观看| 久久亚洲图片| 亚洲午夜久久久久久久久电影网| 欧美一区二区高清在线观看| 91久久精品美女| 午夜精品亚洲| 国产精品99久久久久久久久| 午夜精品福利一区二区蜜股av| 亚洲电影在线观看| 亚洲一区国产| 日韩午夜电影| 久久免费精品视频| 久久gogo国模啪啪人体图| 欧美激情一区二区三区成人| 久久久久高清| 国产精品欧美在线| 亚洲黄色免费| 亚洲高清影视| 久久久国产精品亚洲一区 | 亚洲精品乱码久久久久久蜜桃麻豆| 亚洲精品中文字幕在线观看| 亚洲综合清纯丝袜自拍| 日韩一级裸体免费视频| 久久久久国产精品一区| 久久久91精品国产| 欧美精品一级| 国产女同一区二区| 中日韩高清电影网| 亚洲国产高清一区二区三区| 亚洲女女女同性video| 亚洲一区二区三区色| 欧美成年人视频网站欧美| 久久综合久久综合久久综合| 国产精品系列在线播放| 99在线精品视频| 在线一区视频| 欧美午夜电影网| 一区二区欧美精品| 亚洲午夜精品久久久久久浪潮 | 亚洲一区自拍| 欧美日韩一区二区高清| 亚洲精品久久视频| 99国产精品99久久久久久| 另类尿喷潮videofree| 免费在线观看精品| 18成人免费观看视频| 美女网站久久| 亚洲毛片在线| 亚洲午夜国产成人av电影男同| 欧美日韩欧美一区二区| 一区二区高清视频| 欧美在线地址| 激情丁香综合| 欧美成人精品一区二区| 亚洲国产欧美国产综合一区| 日韩视频免费观看| 欧美先锋影音| 久久成人免费视频| 欧美大片一区二区| 亚洲五月婷婷| 国内精品久久久久影院色| 久久综合给合久久狠狠狠97色69| 亚洲国产精品久久久久秋霞不卡| 亚洲精品一区二区三区福利| 欧美色精品天天在线观看视频 | 久久夜色精品| 亚洲片在线观看| 性久久久久久久久| 亚洲国产成人av| 国产精品第十页| 欧美一区二区免费| 91久久极品少妇xxxxⅹ软件| 亚洲欧美综合网| 亚洲国产成人久久| 国产精品高精视频免费| 久久综合国产精品| 亚洲欧美日韩爽爽影院| 亚洲国产成人porn| 久久精品国产精品亚洲| 亚洲精品在线观看免费| 国产三级欧美三级日产三级99| 欧美不卡福利| 久久精品91| 国产精品v欧美精品v日韩| 久久电影一区| 一区二区三区视频免费在线观看| 裸体女人亚洲精品一区| 亚洲综合电影| 99av国产精品欲麻豆| 黄色成人在线网站| 欧美香蕉视频| 欧美久久久久久| 老司机午夜精品视频| 久久国产日韩| 午夜一区在线|