دسترسی نامحدود
برای کاربرانی که ثبت نام کرده اند
برای ارتباط با ما می توانید از طریق شماره موبایل زیر از طریق تماس و پیامک با ما در ارتباط باشید
در صورت عدم پاسخ گویی از طریق پیامک با پشتیبان در ارتباط باشید
برای کاربرانی که ثبت نام کرده اند
درصورت عدم همخوانی توضیحات با کتاب
از ساعت 7 صبح تا 10 شب
ویرایش:
نویسندگان: Kevin Brothaler
سری:
ISBN (شابک) : 9781937785345
ناشر: The Pragmatic Programmers
سال نشر: 2013
تعداد صفحات: 330
زبان: English
فرمت فایل : PDF (درصورت درخواست کاربر به PDF، EPUB یا AZW3 تبدیل می شود)
حجم فایل: 30 مگابایت
در صورت تبدیل فایل کتاب OpenGL ES 2 for Android: A Quick-Start Guide به فرمت های PDF، EPUB، AZW3، MOBI و یا DJVU می توانید به پشتیبان اطلاع دهید تا فایل مورد نظر را تبدیل نمایند.
توجه داشته باشید کتاب OpenGL ES 2 برای آندروید: یک راهنمای سریع برای شروع نسخه زبان اصلی می باشد و کتاب ترجمه شده به فارسی نمی باشد. وبسایت اینترنشنال لایبرری ارائه دهنده کتاب های زبان اصلی می باشد و هیچ گونه کتاب ترجمه شده یا نوشته شده به فارسی را ارائه نمی دهد.
این کتاب همه چیزهایی را که برای ایجاد گرافیک های جذاب در اندروید نیاز دارید به شما آموزش می دهد. با ساختن یک بازی ساده هاکی روی هوا، اصول اولیه OpenGL را یاد خواهید گرفت و در طول مسیر، نحوه تنظیم اولیه OpenGL و برنامه ریزی خط لوله گرافیکی با استفاده از سایه بان ها را خواهید دید. با اضافه کردن رنگها، سایهزنی، پیشبینیهای سهبعدی، تعامل لمسی و موارد دیگر، هر درس بر پایه درس قبل است. سپس، خواهید فهمید که چگونه ایده خود را به یک تصویر زمینه زنده تبدیل کنید که می تواند در صفحه اصلی اجرا شود. شما در مورد جلوه های پیشرفته تر شامل ذرات، مدل های روشنایی و بافر عمق خواهید آموخت. شما متوجه خواهید شد که در هنگام اشکال زدایی برنامه خود به دنبال چه چیزی باشید و هنگام استقرار در بازار به چه نکاتی توجه کنید.
This book will teach you everything you need to know to create compelling graphics on Android. You'll learn the basics of OpenGL by building a simple game of air hockey, and along the way, you'll see how to initialize OpenGL and program the graphics pipeline using shaders. Each lesson builds upon the one before it, as you add colors, shading, 3D projections, touch interaction, and more. Then, you'll find out how to turn your idea into a live wallpaper that can run on the home screen. You'll learn about more advanced effects involving particles, lighting models, and the depth buffer. You'll understand what to look for when debugging your program, and what to watch out for when deploying to the market.
Cover......Page 1
Table of Contents......Page 7
Foreword......Page 11
Acknowledgments......Page 12
Welcome to OpenGL ES for Android!......Page 13
Who Should Read This book?......Page 14
Conventions......Page 15
Let\'s Get Started!......Page 16
Installing the Tools......Page 17
Creating Our First Program......Page 20
Initializing OpenGL......Page 22
Creating a Renderer Class......Page 27
Using Static Imports......Page 30
A Review......Page 31
Part I—A Simple Game of Air Hockey......Page 32
Why Air Hockey?......Page 33
Don\'t Start from Scratch......Page 35
Defining the Structure of Our Air Hockey Table......Page 36
Making the Data Accessible to OpenGL......Page 40
Introducing the OpenGL Pipeline......Page 42
The OpenGL Color Model......Page 48
A Review......Page 49
Loading Shaders......Page 51
Compiling Shaders......Page 53
Linking Shaders Together into an OpenGL Program......Page 58
Making the Final Connections......Page 60
Drawing to the Screen......Page 65
A Review......Page 71
Exercises......Page 72
4. Adding Color and Shade......Page 73
Smooth Shading......Page 74
Introducing Triangle Fans......Page 75
Adding a New Color Attribute......Page 77
Rendering with the New Color Attribute......Page 85
Exercises......Page 89
5. Adjusting to the Screen\'s Aspect Ratio......Page 90
We Have an Aspect Ratio Problem......Page 91
Working with a Virtual Coordinate Space......Page 93
Linear Algebra 101......Page 96
Defining an Orthographic Projection......Page 100
Adding an Orthographic Projection......Page 102
Exercises......Page 107
The Art of 3D......Page 108
Transforming a Coordinate from the Shader to the Screen......Page 109
Adding the W Component to Create Perspective......Page 112
Moving to a Perspective Projection......Page 114
Defining a Perspective Projection......Page 116
Creating a Projection Matrix in Our Code......Page 118
Switching to a Projection Matrix......Page 120
Adding Rotation......Page 124
Exercises......Page 127
7. Adding Detail with Textures......Page 128
Understanding Textures......Page 129
Loading Textures into OpenGL......Page 132
Creating a New Set of Shaders......Page 139
Creating a New Class Structure for Our Vertex Data......Page 140
Adding Classes for Our Shader Programs......Page 146
Drawing Our Texture......Page 150
Exercises......Page 152
8. Building Simple Objects......Page 153
Combining Triangle Strips and Triangle Fans......Page 154
Adding a Geometry Class......Page 155
Adding an Object Builder......Page 157
Updating Our Objects......Page 165
Updating Shaders......Page 167
Integrating Our Changes......Page 168
Exercises......Page 173
Adding Touch Support to Our Activity......Page 176
Adding Intersection Tests......Page 179
Moving Around an Object by Dragging......Page 188
Adding Collision Detection......Page 192
A Review and Wrap-Up......Page 196
Exercises......Page 197
Part II—Building a 3D World......Page 199
10. Spicing Things Up with Particles......Page 200
Creating a Set of Shaders for a Simple Particle System......Page 202
Adding the Particle System......Page 206
Drawing the Particle System......Page 210
Spreading Out the Particles......Page 213
Adding Gravity......Page 215
Mixing the Particles with Additive Blending......Page 217
Customizing the Appearance of Our Points......Page 218
Drawing Each Point as a Sprite......Page 220
Exercises......Page 223
11. Adding a Skybox......Page 225
Creating a Skybox......Page 226
Loading a Cube Map into OpenGL......Page 227
Creating a Cube......Page 229
Adding a Skybox Shader Program......Page 232
Adding the Skybox to Our Scene......Page 235
Panning the Camera Around the Scene......Page 236
Exercises......Page 240
Creating a Height Map......Page 241
Creating Vertex and Index Buffer Objects......Page 242
Loading in the Height Map......Page 245
Drawing the Height Map......Page 249
Occluding Hidden Objects......Page 253
A Review......Page 258
Exercises......Page 259
Simulating the Effects of Light......Page 260
Implementing a Directional Light with Lambertian Reflectance......Page 262
Adding Point Lights......Page 271
Exercises......Page 279
Implementing the Live Wallpaper Service......Page 282
Playing Nicely with the Rest of the System......Page 290
Exercises......Page 293
Looking Toward Other Platforms......Page 295
Learning About More Advanced Techniques......Page 297
Sharing Your Artistic Vision with the World......Page 301
The Math Behind Orthographic Projections......Page 303
The Math Behind Perspective Projections......Page 306
Debugging with glGetError......Page 310
Using Tracer for OpenGL ES......Page 311
Pitfalls to Watch Out For......Page 313
Bibliography......Page 316
– A –......Page 317
– C –......Page 318
– F –......Page 319
– I –......Page 320
– M –......Page 321
– P –......Page 322
– S –......Page 323
– U –......Page 324
– Z –......Page 325