본문 바로가기

실시간 운영체제

[실시간 운영체제] Open GL animation

Open GL의 기본적인 코드는

https://developer.android.com/develop/ui/views/graphics/opengl

위 사이트에 공개된 코드를 사용하였다.


 

animation.webm
1.58MB

 

MainActivity.java

package com.example.animation;

import androidx.appcompat.app.AppCompatActivity;

import android.opengl.GLSurfaceView;
import android.os.Bundle;

public class MainActivity extends AppCompatActivity {

    private GLSurfaceView gLView;

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        // Create a GLSurfaceView instance and set it
        // as the ContentView for this Activity.
        gLView = new MyGLSurfaceView(this);
        setContentView(gLView);
    }
}

 

 

 

MyGLSurfaceView.java

package com.example.animation;

import android.content.Context;
import android.opengl.GLSurfaceView;

class MyGLSurfaceView extends GLSurfaceView {

    private final MyGLRenderer renderer;

    public MyGLSurfaceView(Context context){
        super(context);

        // Create an OpenGL ES 2.0 context
        setEGLContextClientVersion(2);

        renderer = new MyGLRenderer();

        // Set the Renderer for drawing on the GLSurfaceView
        setRenderer(renderer);
    }
}

 

 

 

 

MyGLRenderer.java

package com.example.animation;

import javax.microedition.khronos.egl.EGLConfig;
import javax.microedition.khronos.opengles.GL10;

import android.opengl.GLES20;
import android.opengl.GLSurfaceView;
import android.opengl.Matrix;

public class MyGLRenderer implements GLSurfaceView.Renderer {

    // vPMatrix is an abbreviation for "Model View Projection Matrix"
    private final float[] vPMatrix = new float[16];
    private final float[] projectionMatrix = new float[16];
    private final float[] viewMatrix = new float[16];



    private animation mCircle;

    public void onSurfaceCreated(GL10 unused, EGLConfig config) {
        // Set the background frame color
        GLES20.glClearColor(1.0f, 1.0f, 1.0f, 1.0f);

        mCircle = new animation();
    }

    public void onDrawFrame(GL10 unused) {
        // Redraw background color
        GLES20.glClear(GLES20.GL_COLOR_BUFFER_BIT);

        // Set the camera position (View matrix)
        Matrix.setLookAtM(viewMatrix, 0, 0, 0, -3, 0f, 0f, 0f, 0f, 1.0f, 0.0f);

        // Calculate the projection and view transformation
        Matrix.multiplyMM(vPMatrix, 0, projectionMatrix, 0, viewMatrix, 0);

        mCircle.draw(vPMatrix);
    }

    public void onSurfaceChanged(GL10 unused, int width, int height) {
        GLES20.glViewport(0, 0, width, height);

        float ratio = (float) width / height;

        // this projection matrix is applied to object coordinates
        // in the onDrawFrame() method
        Matrix.frustumM(projectionMatrix, 0, ratio, -ratio, -1, 1, 3, 7);

    }

    public static int loadShader(int type, String shaderCode){

        // create a vertex shader type (GLES20.GL_VERTEX_SHADER)
        // or a fragment shader type (GLES20.GL_FRAGMENT_SHADER)
        int shader = GLES20.glCreateShader(type);

        // add the source code to the shader and compile it
        GLES20.glShaderSource(shader, shaderCode);
        GLES20.glCompileShader(shader);

        return shader;
    }
}

 

 

 

animation.java

package com.example.animation;

import android.opengl.GLES20;
import android.opengl.Matrix;

import java.nio.ByteBuffer;
import java.nio.ByteOrder;
import java.nio.FloatBuffer;

public class animation {
    private final String vertexShaderCode =
            // This matrix member variable provides a hook to manipulate
            // the coordinates of the objects that use this vertex shader
            "uniform mat4 uMVPMatrix;" +
                    "attribute vec4 vPosition;" +
                    "void main() {" +
                    // the matrix must be included as a modifier of gl_Position
                    // Note that the uMVPMatrix factor *must be first* in order
                    // for the matrix multiplication product to be correct.
                    "  gl_Position = uMVPMatrix * vPosition;" +
                    "}";

    // Use to access and set the view transformation
    private int vPMatrixHandle;


    private final float[] mRotationMatrix = new float[16];
    private final float[] result_MvpMatrix_rotation = new float[16];


    private final float[] mTranslationMatrix = new float[16];
    private final float[] result_mvpMatrix_mTranslationMatrix = new float[16];
    private final float[] result_MvpMatrix_translation = new float[16];
    private final float[] result_mvpMatrix_translation_rotation = new float[16];


    private final float[]  result_mvpMatrix_translation_rot_rot = new float[16];
    private final float[] mRotationMatrix_2 = new float[16];

    private FloatBuffer vertexBuffer_circle_1, vertexBuffer_circle_2;

    private final int mProgram;

    private int positionHandle;
    private int colorHandle;

    private static final int vertexCount = 100;
    private final int vertexStride = COORDS_PER_VERTEX * 4; // 4 bytes per vertex

    // number of coordinates per vertex in this array
    static final int COORDS_PER_VERTEX = 3;


    static float circle_coordinates_1[] = new float[vertexCount*COORDS_PER_VERTEX]; //원의 개수와 비례해 증가
    static float circle_coordinates_2[] = new float[vertexCount*COORDS_PER_VERTEX]; //원의 개수와 비례해 증가


    // Set color with red, green, blue and alpha (opacity) values
    float color[] = { 0.63671875f, 0.76953125f, 0.22265625f, 1.0f };

    float color_red[] = { 1.0f, 0.0f, 0.0f, 1.0f };
    float color_blue[] = { 0.0f, 0.0f, 1.0f, 1.0f };
    float color_green[] = { 0.0f, 1.0f, 0.0f, 1.0f };
    float color_black[] = { 0.0f, 0.0f, 0.0f, 1.0f };

    ///set animation settings
    float circle_center_X = 0.0f;
    float circle_center_Y = -0.6f;
    float dx = 0.005f; //0이면 위 아래로 움직임
    float dy = 0.01f;

    float circle_rotation_angle = 45.0f;
    float dAngle = 5.0f; //이걸로 속도조절가능

    public animation() {

        //circle 1 r = 0.2
        float R =0.2f;
        float r = 0.2f;

        float circle_center_x = 0.0f;
        float circle_center_y = 0.0f;
        //// set vertexes for circle
        circle_coordinates_1[0] =  circle_center_x;     //// v0: x = 0
        circle_coordinates_1[1] = circle_center_y;   //// v0: y = 0
        circle_coordinates_1[2] = 0.0f;   //// v0: z = 0
        /// make a loop to compute circle vertexes
        float d_angle = (float)Math.PI/24;  /// d_angle = pi/12 = 15 deg
        int index = 3;


        for (float angle = 0; angle <= Math.PI + d_angle; angle = angle + d_angle)
        //for (float angle = (float)Math.PI/4; angle <= 5*Math.PI/4 + d_angle; angle = angle + d_angle)
        {

            circle_coordinates_1[index] = circle_center_x + r * (float)Math.cos(angle); //// x = R * cos(angle)
            circle_coordinates_1[index+1] = circle_center_y + R * (float)Math.sin(angle); //// y = R * sin(angle)
            circle_coordinates_1[index+2] = 0.0f;
            index = index + 3; //// index = 6,9,12,...
        }
        // initialize vertex byte buffer for shape coordinates
        ByteBuffer bb = ByteBuffer.allocateDirect(
                // (number of coordinate values * 4 bytes per float)
                circle_coordinates_1.length * 4);
        // use the device hardware's native byte order
        bb.order(ByteOrder.nativeOrder());

        // create a floating point buffer from the ByteBuffer
        vertexBuffer_circle_1 = bb.asFloatBuffer();
        // add the coordinates to the FloatBuffer
        vertexBuffer_circle_1.put(circle_coordinates_1);
        // set the buffer to read the first coordinate
        vertexBuffer_circle_1.position(0);



        //second circle  R = 0.4
        R =0.4f;

        circle_center_x = 0.0f;
        circle_center_y = 0.0f;
        //// set vertexes for circle
        circle_coordinates_2[0] =  circle_center_x;     //// v0: x = 0
        circle_coordinates_2[1] = circle_center_y;   //// v0: y = 0
        circle_coordinates_2[2] = 0.0f;   //// v0: z = 0
        /// make a loop to compute circle vertexes
        d_angle = (float)Math.PI/24;  /// d_angle = pi/12 = 15 deg
        index = 3;


        for (float angle = 0; angle <= Math.PI + d_angle; angle = angle + d_angle)
        //for (float angle = (float)Math.PI/4; angle <= 5*Math.PI/4 + d_angle; angle = angle + d_angle)
        {

            circle_coordinates_2[index] = circle_center_x + R * (float)Math.cos(angle); //// x = R * cos(angle)
            circle_coordinates_2[index+1] = circle_center_y + R * (float)Math.sin(angle); //// y = R * sin(angle)
            circle_coordinates_2[index+2] = 0.0f;
            index = index + 3; //// index = 6,9,12,...
        }

        // initialize vertex byte buffer for shape coordinates
        ByteBuffer bb2 = ByteBuffer.allocateDirect(
                // (number of coordinate values * 4 bytes per float)
                circle_coordinates_2.length * 4);
        // use the device hardware's native byte order
        bb2.order(ByteOrder.nativeOrder());

        // create a floating point buffer from the ByteBuffer
        vertexBuffer_circle_2 = bb2.asFloatBuffer();
        // add the coordinates to the FloatBuffer
        vertexBuffer_circle_2.put(circle_coordinates_2);
        // set the buffer to read the first coordinate
        vertexBuffer_circle_2.position(0);





        int vertexShader = MyGLRenderer.loadShader(GLES20.GL_VERTEX_SHADER,
                vertexShaderCode);
        int fragmentShader = MyGLRenderer.loadShader(GLES20.GL_FRAGMENT_SHADER,
                fragmentShaderCode);

        // create empty OpenGL ES Program
        mProgram = GLES20.glCreateProgram();

        // add the vertex shader to program
        GLES20.glAttachShader(mProgram, vertexShader);

        // add the fragment shader to program
        GLES20.glAttachShader(mProgram, fragmentShader);

        // creates OpenGL ES program executables
        GLES20.glLinkProgram(mProgram);
    }

    public void draw(float[] mvpMatrix) {

        // get handle to shape's transformation matrix
        vPMatrixHandle = GLES20.glGetUniformLocation(mProgram, "uMVPMatrix");

        // Pass the projection and view transformation to the shader
        GLES20.glUniformMatrix4fv(vPMatrixHandle, 1, false, mvpMatrix, 0);

        // Add program to OpenGL ES environment
        GLES20.glUseProgram(mProgram);

        // get handle to vertex shader's vPosition member
        positionHandle = GLES20.glGetAttribLocation(mProgram, "vPosition");

        // Enable a handle to the triangle vertices
        GLES20.glEnableVertexAttribArray(positionHandle);



        // Prepare the circle coordinate data (circle 2 is bigger)
        GLES20.glVertexAttribPointer(positionHandle, COORDS_PER_VERTEX,
                GLES20.GL_FLOAT, false,
                vertexStride, vertexBuffer_circle_2);

        // get handle to fragment shader's vColor member
        colorHandle = GLES20.glGetUniformLocation(mProgram, "vColor");

        // Set color for drawing the circle 2
        GLES20.glUniform4fv(colorHandle, 1, color_blue, 0);

        // Draw the circle 2
        GLES20.glDrawArrays(GLES20.GL_TRIANGLE_FAN, 0, 26);


        ///rotate coordinate 45 degree
        Matrix.setIdentityM(mRotationMatrix,0);
        Matrix.rotateM(mRotationMatrix,0,180.0f,0,0,-1.0f);
        Matrix.multiplyMM(result_MvpMatrix_rotation,0,mvpMatrix,0,mRotationMatrix,0);
        GLES20.glUniformMatrix4fv(vPMatrixHandle, 1, false, result_MvpMatrix_rotation, 0);



        // Prepare the circle coordinate data
        GLES20.glVertexAttribPointer(positionHandle, COORDS_PER_VERTEX,
                GLES20.GL_FLOAT, false,
                vertexStride, vertexBuffer_circle_1);

        // Set color for drawing the circle2
        GLES20.glUniform4fv(colorHandle, 1, color_green, 0);

        // Draw the circle2
        GLES20.glDrawArrays(GLES20.GL_TRIANGLE_FAN, 0, 26);




        //translate center to (0,-0.6)
        Matrix.setIdentityM(mTranslationMatrix,0);
        Matrix.translateM(mTranslationMatrix,0,0.0f,-0.6f,0.0f);
        Matrix.multiplyMM(result_MvpMatrix_translation,0,mvpMatrix,0,mTranslationMatrix,0);
        GLES20.glUniformMatrix4fv(vPMatrixHandle, 1, false, result_MvpMatrix_translation, 0);

        // Draw the circle2 in new center (0,0.6)
        GLES20.glDrawArrays(GLES20.GL_TRIANGLE_FAN, 0, 26);



        //Matrix.translateM(mTranslationMatrix,0,0.0f,-0.6f,0.0f);

        //translate center to (-0.2,0.6) rotate 45 deg
        Matrix.setIdentityM(mTranslationMatrix,0);
        Matrix.setIdentityM(mRotationMatrix,0);
        Matrix.translateM(mTranslationMatrix,0,-0.2f,0.6f,0.0f);
        Matrix.rotateM(mRotationMatrix,0,-45.0f,0,0,-1.0f);

        Matrix.multiplyMM(result_MvpMatrix_translation,0,mvpMatrix,0,mTranslationMatrix,0);
        Matrix.multiplyMM(result_mvpMatrix_translation_rotation,0,result_MvpMatrix_translation,0,mRotationMatrix,0);

        GLES20.glUniformMatrix4fv(vPMatrixHandle, 1, false, result_mvpMatrix_translation_rotation, 0);
        GLES20.glUniform4fv(colorHandle, 1, color_red, 0);
        GLES20.glDrawArrays(GLES20.GL_TRIANGLE_FAN, 0, 26);



        //draw the second half of the circle
        Matrix.setIdentityM(mRotationMatrix_2,0);
        Matrix.rotateM(mRotationMatrix_2,0,180.0f,0,0,-1.0f);
        Matrix.multiplyMM(result_mvpMatrix_translation_rot_rot, 0, result_mvpMatrix_translation_rotation, 0, mRotationMatrix_2,0);


        GLES20.glUniform4fv(colorHandle, 1, color_black, 0);
        GLES20.glUniformMatrix4fv(vPMatrixHandle, 1, false, result_mvpMatrix_translation_rot_rot, 0);
        GLES20.glDrawArrays(GLES20.GL_TRIANGLE_FAN, 0, 26);




        //animation part (빨강 원 복사해줌)
        Matrix.setIdentityM(mTranslationMatrix,0);
        Matrix.setIdentityM(mRotationMatrix,0);
        Matrix.translateM(mTranslationMatrix,0,circle_center_X,circle_center_Y,0.0f);
        Matrix.rotateM(mRotationMatrix,0,circle_rotation_angle,0,0,-1.0f);

        Matrix.multiplyMM(result_MvpMatrix_translation,0,mvpMatrix,0,mTranslationMatrix,0);
        Matrix.multiplyMM(result_mvpMatrix_translation_rotation,0,result_MvpMatrix_translation,0,mRotationMatrix,0);

        GLES20.glUniformMatrix4fv(vPMatrixHandle, 1, false, result_mvpMatrix_translation_rotation, 0);

        GLES20.glUniform4fv(colorHandle, 1, color_red, 0);
        GLES20.glDrawArrays(GLES20.GL_TRIANGLE_FAN, 0, 26);




        //draw the second half of the circle (검정색 합쳐준거)
        Matrix.setIdentityM(mRotationMatrix_2,0);
        Matrix.rotateM(mRotationMatrix_2,0,180.0f,0,0,-1.0f);
        Matrix.multiplyMM(result_mvpMatrix_translation_rot_rot, 0, result_mvpMatrix_translation_rotation, 0, mRotationMatrix_2,0);


        GLES20.glUniform4fv(colorHandle, 1, color_black, 0);
        GLES20.glUniformMatrix4fv(vPMatrixHandle, 1, false, result_mvpMatrix_translation_rot_rot, 0);
        GLES20.glDrawArrays(GLES20.GL_TRIANGLE_FAN, 0, 26);





        ///update a circle center (원이 움직이기 시작함)
        circle_center_X = circle_center_X + dx; //circle_center_x = 0.0f+0.01f
        circle_center_Y = circle_center_Y + dy;

        circle_rotation_angle = circle_rotation_angle + dAngle;

        if (circle_center_X>0.45f){
            dx = -dx;
            dAngle = -dAngle;
        }

        if (circle_center_X<-0.45f){
            dx = -dx;
            dAngle = -dAngle;
        }

        if (circle_center_Y>0.8f){
            dy = -dy;
            dAngle = -dAngle;
        }

        if (circle_center_Y<-0.8f){
            dy = -dy;
            dAngle = -dAngle;
        }

        // Disable vertex array
        GLES20.glDisableVertexAttribArray(positionHandle);
    }



    private final String fragmentShaderCode =
            "precision mediump float;" +
                    "uniform vec4 vColor;" +
                    "void main() {" +
                    "  gl_FragColor = vColor;" +
                    "}";
}

 

 

 

 

 

앞선 포스팅 Open GL translastion and rotation의 코드를 이용해 animation 기능을 추가해보았다.

Matrix.setIdentityM(mTranslationMatrix,0);
Matrix.setIdentityM(mRotationMatrix,0);
Matrix.translateM(mTranslationMatrix,0,circle_center_X,circle_center_Y,0.0f);
Matrix.rotateM(mRotationMatrix,0,circle_rotation_angle,0,0,-1.0f);

Matrix.multiplyMM(result_MvpMatrix_translation,0,mvpMatrix,0,mTranslationMatrix,0);
Matrix.multiplyMM(result_mvpMatrix_translation_rotation,0,result_MvpMatrix_translation,0,mRotationMatrix,0);

GLES20.glUniformMatrix4fv(vPMatrixHandle, 1, false, result_mvpMatrix_translation_rotation, 0);

GLES20.glUniform4fv(colorHandle, 1, color_red, 0);
GLES20.glDrawArrays(GLES20.GL_TRIANGLE_FAN, 0, 26);

 

먼저 앞에서 제작한 빨간색 원과 동일한 반원을 복사해 그려주었다.

한가지 다른 점은, translateM 부분에 좌표를 변수로 지정해주었다.

이를 통해, 원의 이동이 가능해진다.

 

//draw the second half of the circle (검정색 합쳐준거)
Matrix.setIdentityM(mRotationMatrix_2,0);
Matrix.rotateM(mRotationMatrix_2,0,180.0f,0,0,-1.0f);
Matrix.multiplyMM(result_mvpMatrix_translation_rot_rot, 0, result_mvpMatrix_translation_rotation, 0, mRotationMatrix_2,0);


GLES20.glUniform4fv(colorHandle, 1, color_black, 0);
GLES20.glUniformMatrix4fv(vPMatrixHandle, 1, false, result_mvpMatrix_translation_rot_rot, 0);
GLES20.glDrawArrays(GLES20.GL_TRIANGLE_FAN, 0, 26);

 

빨간원에 합쳐지게 될 검정 원(180도 회전)도 생성해주었다.

 

빨간 원의 좌표가 변경되면 검정원의 좌표도 함께 변경되어 같이 이동하기 때문에 검정 원의 좌표를 따로 설정해줄 필요가 없다.

 

 

 

///update a circle center (원이 움직이기 시작함)
circle_center_X = circle_center_X + dx; //circle_center_x = 0.0f+0.01f
circle_center_Y = circle_center_Y + dy;

circle_rotation_angle = circle_rotation_angle + dAngle;

if (circle_center_X>0.45f){
    dx = -dx;
    dAngle = -dAngle;
}

if (circle_center_X<-0.45f){
    dx = -dx;
    dAngle = -dAngle;
}

if (circle_center_Y>0.8f){
    dy = -dy;
    dAngle = -dAngle;
}

if (circle_center_Y<-0.8f){
    dy = -dy;
    dAngle = -dAngle;
}

 

좌표와 회전 방향 이동을 위해 먼저 전체 화면의 x, y 길이를 알아야한다.

여기에 사용된 화면의 x축은 [-0.45, 0.45], y축은 [-0.8, 0.8]이므로 이에 알맞게 설정해주었다.

 

float circle_center_X = 0.0f;
float circle_center_Y = -0.6f;
float dx = 0.005f; //0이면 위 아래로 움직임
float dy = 0.01f;

float circle_rotation_angle = 45.0f;
float dAngle = 5.0f; //이걸로 속도조절가능

초기에 원이 위치하는 좌표는 (0, -0.6)으로 설정해주었으며

x축으로는 0.005, y축으로는 0.01만큼씩 이동한다.

 

원의 이동을 위해, 초기 각도는 45도부터 시작해 5도씩 시계방향으로 회전하게 된다.

 

x축과 y축의 범위를 설정해두어, 벽에 닿으면 원이 튕겨져 나오는 것 같은 animation 효과를 표현할 수 있다.