Project

General

Profile

Download (5.59 KB) Statistics
| Branch: | Revision:

library / src / main / java / org / distorted / library / effect / MatrixEffectRotate.java @ 6bb59aad

1
///////////////////////////////////////////////////////////////////////////////////////////////////
2
// Copyright 2017 Leszek Koltunski                                                               //
3
//                                                                                               //
4
// This file is part of Distorted.                                                               //
5
//                                                                                               //
6
// Distorted is free software: you can redistribute it and/or modify                             //
7
// it under the terms of the GNU General Public License as published by                          //
8
// the Free Software Foundation, either version 2 of the License, or                             //
9
// (at your option) any later version.                                                           //
10
//                                                                                               //
11
// Distorted is distributed in the hope that it will be useful,                                  //
12
// but WITHOUT ANY WARRANTY; without even the implied warranty of                                //
13
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the                                 //
14
// GNU General Public License for more details.                                                  //
15
//                                                                                               //
16
// You should have received a copy of the GNU General Public License                             //
17
// along with Distorted.  If not, see <http://www.gnu.org/licenses/>.                            //
18
///////////////////////////////////////////////////////////////////////////////////////////////////
19

    
20
package org.distorted.library.effect;
21

    
22
import org.distorted.library.type.Data1D;
23
import org.distorted.library.type.Data3D;
24
import org.distorted.library.type.Data4D;
25
import org.distorted.library.type.Dynamic1D;
26
import org.distorted.library.type.Dynamic3D;
27
import org.distorted.library.type.Dynamic4D;
28
import org.distorted.library.type.Static1D;
29
import org.distorted.library.type.Static3D;
30
import org.distorted.library.type.Static4D;
31

    
32
///////////////////////////////////////////////////////////////////////////////////////////////////
33

    
34
public class MatrixEffectRotate extends MatrixEffect
35
  {
36
  private static final String NAME = "ROTATE";
37
  private static final float[] UNITIES = new float[]{0.0f};
38
  private static final int DIMENSION = 4;
39
  private static final boolean SUPPORTS_CENTER = true;
40
  private static final boolean SUPPORTS_REGION = false;
41

    
42
///////////////////////////////////////////////////////////////////////////////////////////////////
43
/**
44
 * Rotates the Object by 'angle' degrees around the center.
45
 * Static axis of rotation is given by the last parameter.
46
 *
47
 * @param angle  Angle that we want to rotate the Object to. Unit: degrees
48
 * @param axis   Axis of rotation
49
 * @param center Coordinates of the Point we are rotating around.
50
 */
51
  public MatrixEffectRotate(Data1D angle, Static3D axis, Data3D center)
52
    {
53
    super(ROTATE,UNITIES,DIMENSION,SUPPORTS_CENTER,SUPPORTS_REGION,NAME);
54

    
55
    if( angle instanceof Static1D )
56
      {
57
      mStatic0 = (Static1D)angle;
58
      }
59
    else if( angle instanceof Dynamic1D )
60
      {
61
      mDynamic0 = (Dynamic1D)angle;
62
      }
63

    
64
    mStatic1 = axis;
65

    
66
    if( center instanceof Static3D)
67
      {
68
      mStaticCenter = (Static3D)center;
69
      }
70
    else if( center instanceof Dynamic3D )
71
      {
72
      mDynamicCenter = (Dynamic3D)center;
73
      }
74
    }
75

    
76
///////////////////////////////////////////////////////////////////////////////////////////////////
77
/**
78
 * Rotates the Object by 'angle' degrees around the center.
79
 * Here both angle and axis can dynamically change.
80
 *
81
 * @param angleaxis Combined 4-tuple representing the (angle,axisX,axisY,axisZ).
82
 * @param center    Coordinates of the Point we are rotating around.
83
 */
84
  public MatrixEffectRotate(Data4D angleaxis, Data3D center)
85
    {
86
    super(ROTATE,UNITIES,DIMENSION,SUPPORTS_CENTER,SUPPORTS_REGION,NAME);
87

    
88
    if( angleaxis instanceof Static4D)
89
      {
90
      mStatic0 = (Static4D)angleaxis;
91
      }
92
    else if( angleaxis instanceof Dynamic4D)
93
      {
94
      mDynamic0 = (Dynamic4D)angleaxis;
95
      }
96

    
97
    if( center instanceof Static3D)
98
      {
99
      mStaticCenter = (Static3D)center;
100
      }
101
    else if( center instanceof Dynamic3D )
102
      {
103
      mDynamicCenter = (Dynamic3D)center;
104
      }
105
    }
106

    
107
///////////////////////////////////////////////////////////////////////////////////////////////////
108

    
109
  public boolean compute(float[] uniforms, int index, long currentDuration, long step )
110
    {
111
    if( mDynamicCenter!=null )
112
      {
113
      mDynamicCenter.interpolateMain(uniforms,index+4,currentDuration,step);
114
      }
115
    else
116
      {
117
      uniforms[index+4] = mStaticCenter.getX();
118
      uniforms[index+5] = mStaticCenter.getY();
119
      uniforms[index+6] = mStaticCenter.getZ();
120
      }
121

    
122
    if( mDynamic0!=null )
123
      {
124
      return mDynamic0.interpolateMain(uniforms,index,currentDuration,step);
125
      }
126
    else
127
      {
128
      if( mStatic1 != null )
129
        {
130
        uniforms[index  ] = ((Static1D)mStatic0).getX();
131
        uniforms[index+1] = ((Static3D)mStatic1).getX();
132
        uniforms[index+2] = ((Static3D)mStatic1).getY();
133
        uniforms[index+3] = ((Static3D)mStatic1).getZ();
134
        }
135
      else
136
        {
137
        uniforms[index  ] = ((Static4D)mStatic0).getX();
138
        uniforms[index+1] = ((Static4D)mStatic0).getY();
139
        uniforms[index+2] = ((Static4D)mStatic0).getZ();
140
        uniforms[index+3] = ((Static4D)mStatic0).getW();
141
        }
142

    
143
      return false;
144
      }
145
    }
146
  }
(11-11/23)