Modify a text file: $/old/project7.java
$/old/project7.java
//////// CST 112 -- Project 7 //////// Person[] people = new Person[20]; int many=20; int year; String title=""; void setup() { size( 800, 600 ); fill( people, many ); year= 2010; } void draw() //// Draw frame: show bar charts, based on key pressed. { background( 255,255, 200 ); if (key == '?') { help(); } else { text( title, width/3, 20 ); text( "Press the ? key for help", width*2/3, 30); text( year, 20, 20 ); showData( people, many ); } } //// MAKE BUTTONS FOR THESE //// void keyPressed() //// Check which key was pressed. { if (key == 'f') //// Fill with new values. { fill(people, many); } if (key == 'a') //// Sort by age { title= "SORTED BY AGE"; sortByAge( people, many ); } if (key == 'h') //// Sort by height { title= "SORTED BY HEIGHT"; sortByHeight( people, many ); } if (key == 'w') //// Sort by height { title= "SORTED BY WEIGHT"; sortByWeight( people, many ); } if (key == 'b') //// Sort by BMI { title= "SORTED BY BMI"; sortByBMI( people, many ); } if (key == 'q') //// Quit! { exit(); } if (key == 'y') //// Next year. { year++; for (int i=0; i