Changeset 14210


Ignore:
Timestamp:
01/06/13 14:13:48 (12 years ago)
Author:
ltnguyen
Message:

Change ISSM app layout, add random Z coordinate

Location:
issm/trunk-jpl/src/android/ISSM
Files:
19 added
3 deleted
6 edited

Legend:

Unmodified
Added
Removed
  • issm/trunk-jpl/src/android/ISSM/AndroidManifest.xml

    r14109 r14210  
    1212        android:label="@string/app_name"
    1313        android:theme="@style/AppTheme" >
    14         <activity android:name=".MapSelection"
     14        <activity android:name="com.example.issm.SplashScreen"
    1515                  android:label="@string/title_activity_issm" >
    1616            <intent-filter>
     
    2020            </activity>
    2121            <activity
     22            android:name=".MenuPage"
     23            android:label="@string/title_activity_issm" >
     24        </activity>
     25            <activity
    2226            android:name=".ISSM"
    2327            android:label="@string/title_activity_issm" >
  • issm/trunk-jpl/src/android/ISSM/bin/AndroidManifest.xml

    r14110 r14210  
    1212        android:label="@string/app_name"
    1313        android:theme="@style/AppTheme" >
    14         <activity android:name=".MapSelection"
     14        <activity android:name="com.example.issm.SplashScreen"
    1515                  android:label="@string/title_activity_issm" >
    1616            <intent-filter>
     
    2020            </activity>
    2121            <activity
     22            android:name=".MenuPage"
     23            android:label="@string/title_activity_issm" >
     24        </activity>
     25            <activity
    2226            android:name=".ISSM"
    2327            android:label="@string/title_activity_issm" >
  • issm/trunk-jpl/src/android/ISSM/src/com/example/issm/ColorMap.java

    r14189 r14210  
    1212        }
    1313//-------------------------------------------------------
     14        public double[][] getColorBuffer()
     15        {
     16                return d;
     17        }
     18//--------------------------------------------------------     
    1419        //set default color map => hsv {{{
    1520        public void setDefault()
  • issm/trunk-jpl/src/android/ISSM/src/com/example/issm/ISSM.java

    r14208 r14210  
    44import java.nio.ByteOrder;
    55import java.nio.DoubleBuffer;
    6 
    76import android.opengl.GLSurfaceView;
     7import android.os.AsyncTask;
    88import android.os.Bundle;
    99import android.app.Activity;
     10import android.app.ProgressDialog;
    1011import android.view.Menu;
    1112import android.view.MenuInflater;
     
    1314import android.view.View;
    1415import android.view.View.OnClickListener;
     16import android.view.animation.AccelerateInterpolator;
     17import android.view.animation.Animation;
     18import android.view.animation.TranslateAnimation;
    1519import android.widget.Button;
    16 import android.widget.EditText;
    1720import android.widget.FrameLayout;
     21import android.widget.ImageButton;
    1822import android.widget.SeekBar;
    1923import android.widget.SeekBar.OnSeekBarChangeListener;
    2024import android.widget.TextView;
    2125import android.widget.Toast;
    22 
    23 
    24 public class ISSM extends Activity implements OnClickListener
     26import android.widget.ViewFlipper;
     27
     28
     29public class ISSM extends Activity implements OnClickListener
    2530{
    26         private EditText input;
    27         private TextView output;
    2831        private DoubleBuffer buff;
    2932        private IssmJni issmNative;
     
    3336    private GLSurfaceView mGLView;
    3437        private FrameLayout frame;
    35         private SeekBar bar;
    36     private TextView /*txtStatus,*/ txtValue;
    37     private ColorMap colorMap;
    38     private int alpha;
    39     private final int MINIMUM = 0;
    40     private final int OFFSET = 10;
     38        private VerticalSeekBar bar;
     39        private TextView value;
     40        private ColorMap colorMap;
     41        private int alpha;
     42        private final int MINIMUM = 90;
     43        private final int OFFSET = 10;
     44        private ViewFlipper viewflipper;
     45        private ProgressDialog dialog;
     46        private ColorBar colorBar;
     47        //------------------------------------------------------------------------------------------------   
    4148    @Override
    42   //------------------------------------------------------------------------------------------------   
    43     public void onCreate(Bundle savedInstanceState) {
     49    public void onCreate(Bundle savedInstanceState)
     50    {
    4451        super.onCreate(savedInstanceState);
    45         Bundle map = getIntent().getExtras();
     52        setContentView(R.layout.main_issm);
     53        this.initialize();         
     54    }
     55  //----------------------------------------------------------------------------------------------
     56    private void initialize()
     57    {
     58        Bundle map = getIntent().getExtras();
    4659        {
    4760                if(map!= null)
    4861                {
    49                         mapName = map.getString("map");
    5062                        issmFolder = map.getString("pathToFile");
    5163                }
    5264        }
    53         alpha = 90 + OFFSET;
    54         setContentView(R.layout.activity_issm);
    55         this.bar  = (SeekBar) findViewById(R.id.seekBar);
    56         this.txtValue  = (TextView) super.findViewById(R.id.value);
    57         Button button = (Button) super.findViewById(R.id.button1);
    58             frame = (FrameLayout)findViewById(R.id.frame);
    59         button.setOnClickListener(this);
     65        alpha = MINIMUM + OFFSET;
     66        frame = (FrameLayout)findViewById(R.id.frame);
     67        viewflipper = (ViewFlipper) findViewById(R.id.flipper);
     68        this.bar  = (VerticalSeekBar) findViewById(R.id.seekbar);
     69        this.value  = (TextView) super.findViewById(R.id.value);
     70        Button solve = (Button) super.findViewById(R.id.solve);
     71        solve.setOnClickListener(this);
     72        Button back = (Button) super.findViewById(R.id.back);
     73        back.setOnClickListener(this);
     74        ImageButton gl = (ImageButton) findViewById(R.id.greenland);           
     75                gl.setOnClickListener(this);
     76                ImageButton art = (ImageButton) findViewById(R.id.antarctica);
     77                art.setOnClickListener(this);
    6078        bar.setOnSeekBarChangeListener(new OnSeekBarChangeListener()
    6179        {
    6280                public void onProgressChanged(SeekBar seekBar, int progress,boolean fromUser)
    6381                {
    64        
     82                               
    6583                        alpha = progress + OFFSET;
    66                         txtValue.setText("Friction Scaling: " + alpha + "%");
     84                        value.setText("" + alpha + "%");
    6785                }
    6886
    6987                    @Override
    70                     public void onStartTrackingTouch(SeekBar seekBar) {
    71                             // TODO Auto-generated method stub
    72        
    73                     }
     88                    public void onStartTrackingTouch(SeekBar seekBar) {}
    7489       
    7590                    @Override
    76                     public void onStopTrackingTouch(SeekBar seekBar) {
    77                             // TODO Auto-generated method stub
    78        
    79                     }
     91                    public void onStopTrackingTouch(SeekBar seekBar) {}
    8092        });
    8193
     94        //load up the ISSM library and create double buffer in java
     95        //which later on will be pass for native for allocation.
     96        issmNative = new IssmJni();
    8297       
    83         //load up the ISSM library and create double buffer in java
    84         //which later on will be pass for native allocation.
    85         issmNative = new IssmJni();
    86         this.createModel();
     98        //set default color map to be HSV
    8799        this.colorMap = new ColorMap();
    88         buff = ByteBuffer.allocateDirect(size*12*8).order(ByteOrder.nativeOrder()).asDoubleBuffer();
     100        //create colorBar
     101        colorBar = new ColorBar(this);
     102        colorBar.setColorMap(colorMap);
    89103    }
    90104//------------------------------------------------------------------------------------------------   
     
    100114
    101115        size = issmNative.createISSMModel(solution_type,issmFolder,file);
    102     }
    103 //------------------------------------------------------------------------------------------------
    104     public void fillBuffer()
    105     {
    106         issmNative.solveISSMModel(alpha,buff);
     116        buff = ByteBuffer.allocateDirect(size*12*8).order(ByteOrder.nativeOrder()).asDoubleBuffer();
    107117    }
    108118//------------------------------------------------------------------------------------------------ 
    109     public boolean onCreateOptionsMenu(Menu menu)
     119    public boolean onCreateOptionsMenu(Menu menu) 
    110120    {
    111121        MenuInflater menuInflater = getMenuInflater();
     
    114124        return true;
    115125    }
    116 //------------------------------------------------------------------------------------------------
     126//------------------------------------------------------------------------------------------------ 
     127    //Option Menu that allow user to choose color.
    117128   public boolean onOptionsItemSelected(MenuItem item)
    118129    {
     
    124135                           
    125136                case R.id.cl_autumn:
    126                         colorMap.setAutumn();
     137                        colorMap.setAutumn(); colorBar.setColorMap(colorMap);
    127138                        drawFigure();
    128139                        return true;
    129140               
    130141                case R.id.cl_bone:
    131                         colorMap.setBone();
     142                        colorMap.setBone(); colorBar.setColorMap(colorMap);
    132143                        drawFigure();
    133144                        return true;
    134145               
    135146                case R.id.cl_cool:
    136                         colorMap.setCool();
     147                        colorMap.setCool(); colorBar.setColorMap(colorMap);
    137148                        drawFigure();
    138149                        return true;
    139150                       
    140151                case R.id.cl_copper:
    141                         colorMap.setCopper();
     152                        colorMap.setCopper(); colorBar.setColorMap(colorMap);
    142153                        drawFigure();
    143154                        return true;
    144155                       
    145156                case R.id.cl_gray:
    146                         colorMap.setGray();
     157                        colorMap.setGray(); colorBar.setColorMap(colorMap);
    147158                        drawFigure();
    148159                        return true;
    149160               
    150161                case R.id.cl_hot:
    151                         colorMap.setGray();
     162                        colorMap.setGray(); colorBar.setColorMap(colorMap);
    152163                        drawFigure();
    153164                        return true;
    154165               
    155166                case R.id.cl_hsv:
    156                         colorMap.setDefault();
     167                        colorMap.setDefault(); colorBar.setColorMap(colorMap);
    157168                        drawFigure();
    158169                        return true;
    159170                       
    160171                case R.id.cl_jet:
    161                         colorMap.setJet();
     172                        colorMap.setJet(); colorBar.setColorMap(colorMap);
    162173                        drawFigure();
    163174                        return true;
    164175                       
    165176                case R.id.cl_pink:
    166                         colorMap.setPink();
     177                        colorMap.setPink(); colorBar.setColorMap(colorMap);
    167178                        drawFigure();
    168179                        return true;
    169180                       
    170181                case R.id.cl_spring:
    171                         colorMap.setSpring();
     182                        colorMap.setSpring(); colorBar.setColorMap(colorMap);
    172183                        drawFigure();
    173184                        return true;
    174185                       
    175186                case R.id.cl_summer:   
    176                         colorMap.setSummer();
     187                        colorMap.setSummer(); colorBar.setColorMap(colorMap);
    177188                        drawFigure();
    178189                        return true;
    179190                       
    180191                case R.id.cl_winter:
    181                         colorMap.setWinter();
     192                        colorMap.setWinter();colorBar.setColorMap(colorMap);
    182193                        drawFigure();
    183194                        return true;
     
    185196                        return super.onOptionsItemSelected(item);
    186197        }
    187            
    188     }
     198       
     199    }
     200//   
     201   
    189202//---------------------------------------------------------------------------------   
    190203    public void onClick(View view)
    191204        {
    192                 this.fillBuffer();
    193                 drawFigure();
     205        switch(view.getId())
     206        {
     207                case R.id.greenland:
     208                        {
     209                                mapName= "greenland";
     210                                viewflipper.setInAnimation(inFromRightAnimation());
     211                        viewflipper.setOutAnimation(outToLeftAnimation());
     212                        viewflipper.showNext();
     213                        //create FemModel in native code and return the size of the model
     214                        this.createModel();
     215                        break;
     216                        }
     217                case R.id.antarctica:
     218                        {
     219                                mapName= "antarctica";
     220                                viewflipper.setInAnimation(inFromRightAnimation());
     221                        viewflipper.setOutAnimation(outToLeftAnimation());
     222                        viewflipper.showNext();
     223                        //create FemModel in native code and return the size of the model
     224                        this.createModel();
     225                        break;
     226                        }
     227                case R.id.back:
     228                {
     229                         frame.removeView(mGLView);
     230                         viewflipper.setInAnimation(inFromLeftAnimation());
     231                         viewflipper.setOutAnimation(outToRightAnimation());
     232                         viewflipper.showPrevious();
     233                         break;
     234                }
     235                case R.id.solve:
     236                {
     237                        dialog = new ProgressDialog(view.getContext());
     238                        dialog.setCancelable(true);
     239                        dialog.setMessage("Loading View. Please Wait ...");
     240                        dialog.setProgressStyle(ProgressDialog.STYLE_HORIZONTAL);
     241                        dialog.setProgress(0);
     242                        dialog.setMax(100);
     243                        new CalculationTask().execute(alpha);
     244                        break;
     245                }
     246        }
    194247        }
    195248//----------------------------------------------------------------------------------
    196249    public void drawFigure()
    197250    {
    198         frame.removeView(mGLView);
     251        frame.removeAllViews();
    199252        mGLView = new MyGLSurfaceView(this, buff, size, colorMap);
    200253        frame.addView(mGLView);
    201     }
    202 //-----------------------------------------------------------------------------------   
     254        frame.addView(colorBar);
     255    }
     256//------------------------------------------------------------------------------------
     257   //AsyncTask will allow to display while doing some task in the background
     258   private class CalculationTask extends AsyncTask<Integer,Integer,Boolean>
     259   {
     260                @Override
     261                protected Boolean doInBackground(Integer... target)
     262                {
     263                        Thread thread = new Thread()
     264                        {
     265                                public void run()
     266                                {
     267                                        for(int i = 0; i <= 100; i+=5)
     268                                        {
     269                                                try {
     270                                                        Thread.sleep(300);
     271                                                } catch (InterruptedException e) {
     272                                                        // TODO Auto-generated catch block
     273                                                        e.printStackTrace();
     274                                                }
     275                                                publishProgress(i);
     276                                        }
     277                                }
     278                        };
     279                        thread.start();
     280                        issmNative.solveISSMModel(target[0],buff);
     281                        return true;
     282                }
     283               
     284                protected void onPreExecute()
     285                {
     286                        super.onPostExecute(null);
     287                        dialog.show();
     288                }
     289                protected void onProgressUpdate(Integer ... value)
     290                {
     291                        super.onProgressUpdate();
     292                        dialog.setProgress(value[0]);
     293                }
     294                protected void onPostExecute(Boolean result)
     295                {
     296                        super.onPostExecute(result);
     297                        dialog.dismiss();
     298                        if(result) drawFigure();
     299                }
     300           
     301   }
     302//-----------------------------------------------------------------------------------
     303   
     304    // Below are implementation for the animation between map selection and core computation
     305
     306        private Animation inFromRightAnimation() {
     307
     308        Animation inFromRight = new TranslateAnimation(
     309        Animation.RELATIVE_TO_PARENT,  +1.0f, Animation.RELATIVE_TO_PARENT,  0.0f,
     310        Animation.RELATIVE_TO_PARENT,  0.0f, Animation.RELATIVE_TO_PARENT,   0.0f
     311        );
     312        inFromRight.setDuration(500);
     313        inFromRight.setInterpolator(new AccelerateInterpolator());
     314        return inFromRight;
     315        }
     316        private Animation outToLeftAnimation() {
     317        Animation outtoLeft = new TranslateAnimation(
     318          Animation.RELATIVE_TO_PARENT,  0.0f, Animation.RELATIVE_TO_PARENT,  -1.0f,
     319          Animation.RELATIVE_TO_PARENT,  0.0f, Animation.RELATIVE_TO_PARENT,   0.0f
     320        );
     321        outtoLeft.setDuration(500);
     322        outtoLeft.setInterpolator(new AccelerateInterpolator());
     323        return outtoLeft;
     324        }
     325
     326        private Animation inFromLeftAnimation() {
     327        Animation inFromLeft = new TranslateAnimation(
     328        Animation.RELATIVE_TO_PARENT,  -1.0f, Animation.RELATIVE_TO_PARENT,  0.0f,
     329        Animation.RELATIVE_TO_PARENT,  0.0f, Animation.RELATIVE_TO_PARENT,   0.0f
     330        );
     331        inFromLeft.setDuration(500);
     332        inFromLeft.setInterpolator(new AccelerateInterpolator());
     333        return inFromLeft;
     334        }
     335        private Animation outToRightAnimation() {
     336        Animation outtoRight = new TranslateAnimation(
     337          Animation.RELATIVE_TO_PARENT,  0.0f, Animation.RELATIVE_TO_PARENT,  +1.0f,
     338          Animation.RELATIVE_TO_PARENT,  0.0f, Animation.RELATIVE_TO_PARENT,   0.0f
     339        );
     340        outtoRight.setDuration(500);
     341        outtoRight.setInterpolator(new AccelerateInterpolator());
     342        return outtoRight;
     343        }
     344//-------------------------------------------------------------------------------------------   
    203345}
     346/////////////////////////////////////////////////////////////////////////////////////////////
  • issm/trunk-jpl/src/android/ISSM/src/com/example/issm/MyGLRenderer.java

    r14208 r14210  
    101101    {
    102102        // Set the background frame color
    103         GLES20.glClearColor(0.0f, 0.0f, 0.0f, 1.0f);
     103        GLES20.glClearColor(0.0f, 0.8f, 1.0f, 1.0f);
    104104       
    105105                // Position the eye behind the origin.
  • issm/trunk-jpl/src/android/ISSM/src/com/example/issm/MyGLSurfaceView.java

    r14192 r14210  
    22
    33import java.nio.DoubleBuffer;
     4import java.util.Random;
    45
    56import android.content.Context;
     
    107108                                f[i][15] =  (f[i][15]-ymin)/(ymax-ymin)*YSCALE_FACTOR;
    108109                }
     110               
     111                Random r = new Random();
     112                float z1,z2,z3;
     113                for(int i = 0 ; i <size; i++)
     114                {
     115                        //r.nextFloat() will generate random from 0-1
     116                        z1 = r.nextFloat();
     117                        z2 = r.nextFloat();
     118                        z3 = r.nextFloat();
     119                        f[i][2] = z1;
     120                        f[i][9] = z2;
     121                        f[i][16]= z3;
     122                       
     123                        //System.out.println("z = " + z1 + "," + z2 + "," + z3);
     124                        //System.out.println("x = " + f[i][1] + "," + f[i][7] + "," + f[i][14]);
     125                }
    109126                       
    110127        mRend = new MyGLRenderer(f);
     
    130147    private double getAlphaColor(double velocity)
    131148    {
    132         double alpha=(velocity-vmin)/(vmax-vmin) ;
    133         return alpha;
     149        return (velocity-vmin)/(vmax-vmin);
    134150    }
    135151   
Note: See TracChangeset for help on using the changeset viewer.