Project

General

Profile

Download (4.77 KB) Statistics
| Branch: | Tag: | Revision:

magiccube / src / main / java / org / distorted / effect / sizechange / SizeChangeEffectTransparency.java @ ba740a0c

1 434f2f5a Leszek Koltunski
///////////////////////////////////////////////////////////////////////////////////////////////////
2
// Copyright 2019 Leszek Koltunski                                                               //
3
//                                                                                               //
4 fdec60a3 Leszek Koltunski
// This file is part of Magic Cube.                                                              //
5 434f2f5a Leszek Koltunski
//                                                                                               //
6 fdec60a3 Leszek Koltunski
// Magic Cube is free software: you can redistribute it and/or modify                            //
7 434f2f5a Leszek Koltunski
// 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 fdec60a3 Leszek Koltunski
// Magic Cube is distributed in the hope that it will be useful,                                 //
12 434f2f5a Leszek Koltunski
// 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 fdec60a3 Leszek Koltunski
// along with Magic Cube.  If not, see <http://www.gnu.org/licenses/>.                           //
18 434f2f5a Leszek Koltunski
///////////////////////////////////////////////////////////////////////////////////////////////////
19
20 64975793 Leszek Koltunski
package org.distorted.effect.sizechange;
21 434f2f5a Leszek Koltunski
22 f291130e Leszek Koltunski
import org.distorted.library.effect.Effect;
23 434f2f5a Leszek Koltunski
import org.distorted.library.effect.FragmentEffectAlpha;
24 39fb9047 Leszek Koltunski
import org.distorted.library.effect.VertexEffectWave;
25 434f2f5a Leszek Koltunski
import org.distorted.library.type.Dynamic1D;
26 39fb9047 Leszek Koltunski
import org.distorted.library.type.Dynamic5D;
27 434f2f5a Leszek Koltunski
import org.distorted.library.type.Static1D;
28 39fb9047 Leszek Koltunski
import org.distorted.library.type.Static3D;
29
import org.distorted.library.type.Static5D;
30 434f2f5a Leszek Koltunski
31
///////////////////////////////////////////////////////////////////////////////////////////////////
32
33 086a24d0 Leszek Koltunski
class SizeChangeEffectTransparency extends SizeChangeEffect
34 434f2f5a Leszek Koltunski
  {
35 086a24d0 Leszek Koltunski
  public int createEffectsPhase0(int duration)
36 434f2f5a Leszek Koltunski
    {
37 086a24d0 Leszek Koltunski
    mCubeEffectPosition[0] = new int[] {-1};
38
    mCubeEffects[0]        = new Effect[mCubeEffectPosition[0].length];
39
40 ff065f8f Leszek Koltunski
    Dynamic1D d0 = new Dynamic1D(duration/2, 0.5f);
41 086a24d0 Leszek Koltunski
    d0.add(new Static1D(1.0f));
42
    d0.add(new Static1D(0.0f));
43
    mCubeEffects[0][0] = new FragmentEffectAlpha(d0);
44
45
    mNodeEffectPosition[0] = new int[] {-1};
46
    mNodeEffects[0]        = new Effect[mNodeEffectPosition[0].length];
47
48
    float init_amplitude = 0.0f;
49 ba740a0c Leszek Koltunski
    float end_amplitude  = 1/15.0f;
50
    float length         = 1/15.0f;
51 086a24d0 Leszek Koltunski
    float init_phase     = 360.0f;
52
    float end_phase      = 0.0f;
53
    float alpha          = 30.0f;
54
    float beta           = 90.0f;
55
56 ff065f8f Leszek Koltunski
    Dynamic5D d1 = new Dynamic5D(duration/2, 0.5f);
57 086a24d0 Leszek Koltunski
    d1.add(new Static5D( init_amplitude, length, init_phase, alpha, beta) );
58
    d1.add(new Static5D( end_amplitude , length, end_phase , alpha, beta) );
59 5ba13c05 Leszek Koltunski
    Static3D center = new Static3D(0,0,0);
60 086a24d0 Leszek Koltunski
    mNodeEffects[0][0] = new VertexEffectWave(d1, center, null);
61
62
    return 2;
63
    }
64
65
///////////////////////////////////////////////////////////////////////////////////////////////////
66
67
  public int createEffectsPhase1(int duration)
68
    {
69
    mCubeEffectPosition[1] = new int[] {-1};
70
    mCubeEffects[1]        = new Effect[mCubeEffectPosition[1].length];
71 434f2f5a Leszek Koltunski
72 ff065f8f Leszek Koltunski
    Dynamic1D d0 = new Dynamic1D(duration/2, 0.5f);
73 4fd9efa1 Leszek Koltunski
    d0.add(new Static1D(0.0f));
74
    d0.add(new Static1D(1.0f));
75 086a24d0 Leszek Koltunski
    mCubeEffects[1][0] = new FragmentEffectAlpha(d0);
76 434f2f5a Leszek Koltunski
77 086a24d0 Leszek Koltunski
    mNodeEffectPosition[1] = new int[] {-1};
78
    mNodeEffects[1]        = new Effect[mNodeEffectPosition[1].length];
79 39fb9047 Leszek Koltunski
80 ba740a0c Leszek Koltunski
    float init_amplitude = 1/15.0f;
81 39fb9047 Leszek Koltunski
    float end_amplitude  = 0.0f;
82 ba740a0c Leszek Koltunski
    float length         = 1/15.0f;
83 39fb9047 Leszek Koltunski
    float init_phase     = 0.0f;
84
    float end_phase      = 360.0f;
85
    float alpha          = 30.0f;
86
    float beta           = 90.0f;
87
88 ff065f8f Leszek Koltunski
    Dynamic5D d1 = new Dynamic5D(duration/2, 0.5f);
89 39fb9047 Leszek Koltunski
    d1.add(new Static5D( init_amplitude, length, init_phase, alpha, beta) );
90
    d1.add(new Static5D( end_amplitude , length, end_phase , alpha, beta) );
91 5ba13c05 Leszek Koltunski
    Static3D center = new Static3D(0,0,0);
92 086a24d0 Leszek Koltunski
    mNodeEffects[1][0] = new VertexEffectWave(d1, center, null);
93 39fb9047 Leszek Koltunski
94
    return 2;
95 434f2f5a Leszek Koltunski
    }
96
97
///////////////////////////////////////////////////////////////////////////////////////////////////
98 c909b8e3 Leszek Koltunski
// Enable all effects used in this Effect. Called by reflection from the parent class.
99 434f2f5a Leszek Koltunski
100 9208e27b Leszek Koltunski
  @SuppressWarnings("unused")
101
  static void enable()
102 434f2f5a Leszek Koltunski
    {
103 9208e27b Leszek Koltunski
    FragmentEffectAlpha.enable();
104 39fb9047 Leszek Koltunski
    VertexEffectWave.enable();
105 434f2f5a Leszek Koltunski
    }
106
  }