Changeset 14210
- Timestamp:
- 01/06/13 14:13:48 (12 years ago)
- 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 12 12 android:label="@string/app_name" 13 13 android:theme="@style/AppTheme" > 14 <activity android:name=" .MapSelection"14 <activity android:name="com.example.issm.SplashScreen" 15 15 android:label="@string/title_activity_issm" > 16 16 <intent-filter> … … 20 20 </activity> 21 21 <activity 22 android:name=".MenuPage" 23 android:label="@string/title_activity_issm" > 24 </activity> 25 <activity 22 26 android:name=".ISSM" 23 27 android:label="@string/title_activity_issm" > -
issm/trunk-jpl/src/android/ISSM/bin/AndroidManifest.xml
r14110 r14210 12 12 android:label="@string/app_name" 13 13 android:theme="@style/AppTheme" > 14 <activity android:name=" .MapSelection"14 <activity android:name="com.example.issm.SplashScreen" 15 15 android:label="@string/title_activity_issm" > 16 16 <intent-filter> … … 20 20 </activity> 21 21 <activity 22 android:name=".MenuPage" 23 android:label="@string/title_activity_issm" > 24 </activity> 25 <activity 22 26 android:name=".ISSM" 23 27 android:label="@string/title_activity_issm" > -
issm/trunk-jpl/src/android/ISSM/src/com/example/issm/ColorMap.java
r14189 r14210 12 12 } 13 13 //------------------------------------------------------- 14 public double[][] getColorBuffer() 15 { 16 return d; 17 } 18 //-------------------------------------------------------- 14 19 //set default color map => hsv {{{ 15 20 public void setDefault() -
issm/trunk-jpl/src/android/ISSM/src/com/example/issm/ISSM.java
r14208 r14210 4 4 import java.nio.ByteOrder; 5 5 import java.nio.DoubleBuffer; 6 7 6 import android.opengl.GLSurfaceView; 7 import android.os.AsyncTask; 8 8 import android.os.Bundle; 9 9 import android.app.Activity; 10 import android.app.ProgressDialog; 10 11 import android.view.Menu; 11 12 import android.view.MenuInflater; … … 13 14 import android.view.View; 14 15 import android.view.View.OnClickListener; 16 import android.view.animation.AccelerateInterpolator; 17 import android.view.animation.Animation; 18 import android.view.animation.TranslateAnimation; 15 19 import android.widget.Button; 16 import android.widget.EditText;17 20 import android.widget.FrameLayout; 21 import android.widget.ImageButton; 18 22 import android.widget.SeekBar; 19 23 import android.widget.SeekBar.OnSeekBarChangeListener; 20 24 import android.widget.TextView; 21 25 import android.widget.Toast; 22 23 24 public class ISSM extends Activity implements OnClickListener 26 import android.widget.ViewFlipper; 27 28 29 public class ISSM extends Activity implements OnClickListener 25 30 { 26 private EditText input;27 private TextView output;28 31 private DoubleBuffer buff; 29 32 private IssmJni issmNative; … … 33 36 private GLSurfaceView mGLView; 34 37 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 //------------------------------------------------------------------------------------------------ 41 48 @Override 42 //------------------------------------------------------------------------------------------------43 public void onCreate(Bundle savedInstanceState){49 public void onCreate(Bundle savedInstanceState) 50 { 44 51 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(); 46 59 { 47 60 if(map!= null) 48 61 { 49 mapName = map.getString("map");50 62 issmFolder = map.getString("pathToFile"); 51 63 } 52 64 } 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); 60 78 bar.setOnSeekBarChangeListener(new OnSeekBarChangeListener() 61 79 { 62 80 public void onProgressChanged(SeekBar seekBar, int progress,boolean fromUser) 63 81 { 64 82 65 83 alpha = progress + OFFSET; 66 txtValue.setText("Friction Scaling: " +alpha + "%");84 value.setText("" + alpha + "%"); 67 85 } 68 86 69 87 @Override 70 public void onStartTrackingTouch(SeekBar seekBar) { 71 // TODO Auto-generated method stub 72 73 } 88 public void onStartTrackingTouch(SeekBar seekBar) {} 74 89 75 90 @Override 76 public void onStopTrackingTouch(SeekBar seekBar) { 77 // TODO Auto-generated method stub 78 79 } 91 public void onStopTrackingTouch(SeekBar seekBar) {} 80 92 }); 81 93 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(); 82 97 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 87 99 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); 89 103 } 90 104 //------------------------------------------------------------------------------------------------ … … 100 114 101 115 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(); 107 117 } 108 118 //------------------------------------------------------------------------------------------------ 109 public boolean onCreateOptionsMenu(Menu menu) 119 public boolean onCreateOptionsMenu(Menu menu) 110 120 { 111 121 MenuInflater menuInflater = getMenuInflater(); … … 114 124 return true; 115 125 } 116 //------------------------------------------------------------------------------------------------ 126 //------------------------------------------------------------------------------------------------ 127 //Option Menu that allow user to choose color. 117 128 public boolean onOptionsItemSelected(MenuItem item) 118 129 { … … 124 135 125 136 case R.id.cl_autumn: 126 colorMap.setAutumn(); 137 colorMap.setAutumn(); colorBar.setColorMap(colorMap); 127 138 drawFigure(); 128 139 return true; 129 140 130 141 case R.id.cl_bone: 131 colorMap.setBone(); 142 colorMap.setBone(); colorBar.setColorMap(colorMap); 132 143 drawFigure(); 133 144 return true; 134 145 135 146 case R.id.cl_cool: 136 colorMap.setCool(); 147 colorMap.setCool(); colorBar.setColorMap(colorMap); 137 148 drawFigure(); 138 149 return true; 139 150 140 151 case R.id.cl_copper: 141 colorMap.setCopper(); 152 colorMap.setCopper(); colorBar.setColorMap(colorMap); 142 153 drawFigure(); 143 154 return true; 144 155 145 156 case R.id.cl_gray: 146 colorMap.setGray(); 157 colorMap.setGray(); colorBar.setColorMap(colorMap); 147 158 drawFigure(); 148 159 return true; 149 160 150 161 case R.id.cl_hot: 151 colorMap.setGray(); 162 colorMap.setGray(); colorBar.setColorMap(colorMap); 152 163 drawFigure(); 153 164 return true; 154 165 155 166 case R.id.cl_hsv: 156 colorMap.setDefault(); 167 colorMap.setDefault(); colorBar.setColorMap(colorMap); 157 168 drawFigure(); 158 169 return true; 159 170 160 171 case R.id.cl_jet: 161 colorMap.setJet(); 172 colorMap.setJet(); colorBar.setColorMap(colorMap); 162 173 drawFigure(); 163 174 return true; 164 175 165 176 case R.id.cl_pink: 166 colorMap.setPink(); 177 colorMap.setPink(); colorBar.setColorMap(colorMap); 167 178 drawFigure(); 168 179 return true; 169 180 170 181 case R.id.cl_spring: 171 colorMap.setSpring(); 182 colorMap.setSpring(); colorBar.setColorMap(colorMap); 172 183 drawFigure(); 173 184 return true; 174 185 175 186 case R.id.cl_summer: 176 colorMap.setSummer(); 187 colorMap.setSummer(); colorBar.setColorMap(colorMap); 177 188 drawFigure(); 178 189 return true; 179 190 180 191 case R.id.cl_winter: 181 colorMap.setWinter(); 192 colorMap.setWinter();colorBar.setColorMap(colorMap); 182 193 drawFigure(); 183 194 return true; … … 185 196 return super.onOptionsItemSelected(item); 186 197 } 187 188 } 198 199 } 200 // 201 189 202 //--------------------------------------------------------------------------------- 190 203 public void onClick(View view) 191 204 { 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 } 194 247 } 195 248 //---------------------------------------------------------------------------------- 196 249 public void drawFigure() 197 250 { 198 frame.remove View(mGLView);251 frame.removeAllViews(); 199 252 mGLView = new MyGLSurfaceView(this, buff, size, colorMap); 200 253 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 //------------------------------------------------------------------------------------------- 203 345 } 346 ///////////////////////////////////////////////////////////////////////////////////////////// -
issm/trunk-jpl/src/android/ISSM/src/com/example/issm/MyGLRenderer.java
r14208 r14210 101 101 { 102 102 // 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); 104 104 105 105 // Position the eye behind the origin. -
issm/trunk-jpl/src/android/ISSM/src/com/example/issm/MyGLSurfaceView.java
r14192 r14210 2 2 3 3 import java.nio.DoubleBuffer; 4 import java.util.Random; 4 5 5 6 import android.content.Context; … … 107 108 f[i][15] = (f[i][15]-ymin)/(ymax-ymin)*YSCALE_FACTOR; 108 109 } 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 } 109 126 110 127 mRend = new MyGLRenderer(f); … … 130 147 private double getAlphaColor(double velocity) 131 148 { 132 double alpha=(velocity-vmin)/(vmax-vmin) ; 133 return alpha; 149 return (velocity-vmin)/(vmax-vmin); 134 150 } 135 151
Note:
See TracChangeset
for help on using the changeset viewer.