/* ==================================================== created by Isaac Tsai, 1999 old score extraplolator widget Copyright (C) 1992-2000 Michigan State University The CAPA system is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. The CAPA system is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with the CAPA system; see the file COPYING. If not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. As a special exception, you have permission to link this program with the TtH/TtM library and distribute executables, as long as you follow the requirements of the GNU GPL in regard to all of the software in the executable aside from TtH/TtM. */
[< PARAM NAME = appletParameter1 VALUE = value >] [< PARAM NAME = appletParameter2 VALUE = value >] . . . [alternateHTML] */ import java.applet.*; import java.awt.*; import java.lang.*; import java.util.*; import java.net.*; public class Tscore extends Applet implements Runnable { public float hw_w; public float qz_w; public float ex_w; public float fe_w; public float hw_s; public int hw_c; public int hw_r; public float qz_s; public int qz_c; public int qz_r; public float ex_s; public int ex_c; public int ex_r; public float fe_s; public float fe_x; public float hw_ext; public float qz_ext; public float ex_ext; public float fe_ext; public float term_score; public void init() { String p, q; p=getParameter("HW_W"); hw_w=(p==null)?1:Float.valueOf(p).floatValue(); p=getParameter("QZ_W"); qz_w=(p==null)?1:Float.valueOf(p).floatValue(); p=getParameter("EX_W"); ex_w=(p==null)?1:Float.valueOf(p).floatValue(); p=getParameter("FE_W"); fe_w=(p==null)?1:Float.valueOf(p).floatValue(); p=getParameter("PC_W"); pc_w=(p==null)?1:Float.valueOf(p).floatValue(); p=getParameter("HW_C"); hw_c=(p==null)?1:Integer.valueOf(p).intValue(); p=getParameter("HW_S"); hw_s=(p==null)?1:Float.valueOf(p).floatValue(); p=getParameter("HW_R"); hw_r=(p==null)?1:Integer.valueOf(p).intValue(); p=getParameter("QZ_C"); qz_c=(p==null)?1:Integer.valueOf(p).intValue(); p=getParameter("QZ_S"); qz_s=(p==null)?1:Float.valueOf(p).floatValue(); p=getParameter("QZ_R"); qz_r=(p==null)?1:Integer.valueOf(p).intValue(); p=getParameter("EX_C"); ex_c=(p==null)?1:Integer.valueOf(p).intValue(); p=getParameter("EX_S"); ex_s=(p==null)?1:Float.valueOf(p).floatValue(); p=getParameter("EX_R"); ex_r=(p==null)?1:Integer.valueOf(p).intValue(); p=getParameter("FE_S"); fe_s=(p==null)?1:Float.valueOf(p).floatValue(); p=getParameter("FE_X"); fe_x=(p==null)?1:Integer.valueOf(p).intValue(); } public void paint(Graphics g) { int idx; Dimension d = size(); int appw = d.width; int apph = d.height; int x1,y1,x2,y2; g.setFont(f16); if( img != null ) { g.drawImage(img, 0, 0, this); } else { g.setColor(Color.white); g.fillRect(0, 0, appw, apph); } g.setColor(Color.black); for(idx=0;idx1)) { for(x1=0,y1=0,y2=apph;x1<=appw;x1=x1+grid_ww) { x2=x1; g.drawLine(x1,y1,x2,y2); } for(x1=0,y1=0,x2=appw;y1<=apph;y1=y1+grid_ww) { y2=y1; g.drawLine(x1,y1,x2,y2); } } } public void run() { } public void start() { } public void stop() { } }