File:  [LON-CAPA] / capa / capa51 / GUITools / answers.c
Revision 1.1.1.1 (vendor branch): download - view: text, annotated - select for diffs
Tue Sep 28 21:25:37 1999 UTC (24 years, 8 months ago) by albertel
Branches: capa
CVS tags: start
Created directory structure

/* ======================================================================== */
/*       Feb. 10 1997   Isaac Tsai                                          */
/* ======================================================================== */

#ifdef NeXT
#include <stdlib.h>
#include <sys/types.h>
#include <sys/stat.h>  
#include <bsd/curses.h>
#else
#include <curses.h>
#include <malloc.h>
double atof();
#endif

#include <stdio.h>
#include <ctype.h>
#include <sys/types.h>
#include <sys/stat.h>  
#include <signal.h>
#include <time.h>
#include <math.h>
#include <string.h>


#define   YES    1

#include "Capa/capaCommon.h"

char    *progname;


void
print_answer(FILE *o_fp,int ans_cnt,char *ans,char *lower,char *upper,char *unit)
{
  if (unit && (strlen(unit)>0)) 
    if(ans_cnt==2)  fprintf(o_fp,"ANS:%s %s %s %s\n",ans,lower,upper,unit); 
    else  fprintf(o_fp,"ANS:%s %s\n",lower,unit);
  else 
    if(ans_cnt==2)  fprintf(o_fp,"ANS:%s %s %s\n",ans,lower,upper); 
    else  fprintf(o_fp,"ANS:%s\n",lower);
}

void print_question (FILE *o_fp,char *question)
{
  fprintf(o_fp,"BQES:\n%s\nEQES:\n",question);
}

int main (int argc, char  **argv) 
{
  extern  int        Parsemode_f;
    
  Problem_t  *first_prob,*p;
  int         q_cnt, num_answers, result, setIdx = 1, q_idx;
  char        lower[ANSWER_STRING_LENG], upper[ANSWER_STRING_LENG];
  int         StartSet = 1, EndSet = 1;
  char        tmp_str[ANSWER_STRING_LENG];
  double      tmp_ans;
  T_student   a_student;

  Parsemode_f=ASCII_MODE;
  if ( argc > 6 || argc < 5 ) {
    printf("USAGE: %s StudentNumber StudentName Section startSet [endSet]\n",argv[0]);
    exit(-1);
  }
  strncpy(a_student.s_sn,argv[1],MAX_STUDENT_NUMBER);
  a_student.s_sn[MAX_STUDENT_NUMBER]='\0';
  strncpy(a_student.s_nm,argv[2],MAX_NAME_CHAR);
  a_student.s_nm[MAX_NAME_CHAR]='\0';
  a_student.s_sec=atoi(argv[3]);
  
  StartSet=atoi(argv[4]);
  if ( argc == 6 ) {
    EndSet=atoi(argv[5]);
  } else {
    EndSet=StartSet;
  }
  for(setIdx=StartSet; setIdx <= EndSet; setIdx++) {
    printf("SET:%d\n",setIdx);
    result = capa_parse_student(setIdx, &first_prob, &a_student,&q_cnt,NULL);
    printf("\n");
    if ( result > 0 ) { 
      p = first_prob;
      for( q_idx = 0; q_idx < q_cnt; q_idx++ ) {
	print_question(stdout,p->question);
	if( p->ans_type == ANSWER_IS_SUBJECTIVE) {
	  printf("ANS: Subjective Answers\n");
	} else {
	  if( p->ans_type == ANSWER_IS_FLOAT ) {
	    tmp_ans = (double)atof(p->answer);
	    sprintf(tmp_str, p->ans_fmt, tmp_ans);
	  } else {
	    strcpy(tmp_str,p->answer);
	  }

	  num_answers = calc_ansrange(p->ans_type, p->calc, p->answer, p->ans_fmt,
				      p->tol_type, p->tolerance, lower, upper);
	  print_answer(stdout,num_answers,tmp_str,lower,upper,p->unit_str);
	}
	p = p->next;
      }
    } else {
      printf("ERROR:for %s set %d\n",a_student.s_sn,setIdx);
    }
    free_problems(first_prob);
    if( setIdx < EndSet ) { 
      printf("\n"); 
    }
  }
  printf("\nDONE:%s\n",a_student.s_sn);
  return (0);
}



FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>