--- loncom/homework/default_homework.lcpm 2014/06/25 15:43:04 1.168
+++ loncom/homework/default_homework.lcpm 2019/04/03 22:46:30 1.172.2.1
@@ -1,7 +1,7 @@
# The LearningOnline Network with CAPA
# used by lonxml::xmlparse() as input variable $safeinit to Apache::run::run()
#
-# $Id: default_homework.lcpm,v 1.168 2014/06/25 15:43:04 raeburn Exp $
+# $Id: default_homework.lcpm,v 1.172.2.1 2019/04/03 22:46:30 raeburn Exp $
#
# Copyright Michigan State University Board of Trustees
#
@@ -632,16 +632,29 @@ sub hinton {
sub random {
my ($start,$end,$step)=@_;
if ( ! $hidden::RANDOMINIT ) {
- if ($external::randomseed == 0) { $external::randomseed=1; }
- if ($external::randomseed =~/,/) {
- my ($num1,$num2)=split(/,/,$external::randomseed);
- &random_set_seed(1,abs($num1));
- } elsif ($external::randomseed =~/:/) {
- my ($num1,$num2)=split(/:/,$external::randomseed);
- &random_set_seed(abs($num1),abs($num2));
- } else {
- &random_set_seed(1,int(abs($external::randomseed)));
- }
+ if ($external::randomseed == 0) { $external::randomseed=1; }
+ if ($external::randomseed =~/,/) {
+ my ($num1,$num2) = map { abs($_); } split(/,/,$external::randomseed);
+ if ((!$num1) || ($num1 > 2147483398)) {
+ &random_set_seed_from_phrase($external::randomseed);
+ } else {
+ &random_set_seed(1,$num1);
+ }
+ } elsif ($external::randomseed =~/:/) {
+ my ($num1,$num2) = map { abs($_); } split(/:/,$external::randomseed);
+ if ((!$num1) || (!$num2) || ($num1 > 2147483562) || ($num2 > 2147483398)) {
+ &random_set_seed_from_phrase($external::randomseed);
+ } else {
+ &random_set_seed($num1,$num2);
+ }
+ } else {
+ my $num1 = int(abs($external::randomseed));
+ if ((!$num1) || ($num1 > 2147483398)) {
+ &random_set_seed_from_phrase($external::randomseed);
+ } else {
+ &random_set_seed(1,$num1);
+ }
+ }
&math_random_uniform();
$hidden::RANDOMINIT=1;
}
@@ -902,11 +915,19 @@ sub chemparse {
my $formula = '';
foreach my $token (@tokens) {
if ($token eq '->' ) {
- $formula .= '\ensuremath{\rightarrow} ';
+ if ($external::target eq 'web') {
+ $formula .= '→ ';
+ } else {
+ $formula .= '\ensuremath{\rightarrow} ';
+ }
next;
}
if ($token eq '<-' ) {
- $formula .= '\ensuremath{\leftarrow} ';
+ if ($external::target eq 'web') {
+ $formula .= '← ';
+ } else {
+ $formula .= '\ensuremath{\leftarrow} ';
+ }
next;
}
if ($token eq '<=>') {
@@ -1228,21 +1249,27 @@ sub sec {
}
sub submission {
- my ($partid,$responseid,$subnumber,$encode)=@_;
+ my ($partid,$responseid,$subnumber,$encode,$cleanupnum,$mapalias)=@_;
my $sub='';
if ($subnumber) { $sub=$subnumber.':'; }
my $output =
- &EXT('user.resource.'.$sub.'resource.'.$partid.'.'.$responseid.'.submission');
+ &EXT('user.resource.'.$sub.'resource.'.$partid.'.'.$responseid.'.submission',$mapalias);
if (ref($output) eq 'ARRAY') {
my @items = @{$output};
if ($encode) {
@items = map { &encode_response($_); } @items;
}
+ if (ref($cleanupnum) eq 'HASH') {
+ @items = map { &cleanup_numerical_response($cleanupnum,$_); } @items;
+ }
return \@items;
} else {
if ($encode) {
$output = &encode_response($output);
}
+ if (ref($cleanupnum) eq 'HASH') {
+ $output = &cleanup_numerical_response($cleanupnum,$output);
+ }
return $output;
}
}
@@ -1256,6 +1283,46 @@ sub encode_response {
return $value;
}
+sub cleanup_numerical_response {
+ my ($cleanupnum,$value) = @_;
+ if (ref($cleanupnum) eq 'HASH') {
+ if ($cleanupnum->{exponent}) {
+ if ($value =~ m{^(.*)[\*xX]\s*10\s*\^\s*(\+|\-)?\s*(\d+)(.*)$}) {
+ my $pre_exp = $1;
+ my $sign = $2;
+ my $exponent = $3;
+ my $post_exp = $4;
+ if ($pre_exp !~ /\./) {
+ $pre_exp .= '.';
+ }
+ if ($sign eq '') {
+ $sign = '+';
+ }
+ $value = $pre_exp.'E'.$sign.$exponent.$post_exp;
+ }
+ }
+ if ($cleanupnum->{comma}) {
+ $value =~ s{(\d+),(\d+)}{$1$2};
+ }
+ if ($cleanupnum->{letterforzero}) {
+ $value =~ s/^\s*o(\.\d+)/0$1/i;
+ }
+ if ($cleanupnum->{spaces}) {
+ $value =~ s{^\s+|\s+$}{}g;
+ if ($value =~ m{^(.*)\.\s+(\d+)(.*)$}) {
+ my $pre_pt = $1;
+ my $decimal = $2;
+ my $post_dec = $3;
+ $value = $pre_pt.'.'.$decimal.$post_dec;
+ }
+ }
+ if ($cleanupnum->{format} =~ /^\d+s$/i) {
+ $value = &format_significant_figures($value,$cleanupnum->{format});
+ }
+ }
+ return $value;
+}
+
sub currentpart {
return $external::part;
}
@@ -1412,3 +1479,8 @@ sub proper_path {
}
}
+sub input_id {
+ my ($part_id, $response_id, $textline_id) = @_;
+ return 'HWVAL_'.$part_id.'_'.$response_id.'_'.$textline_id;
+}
+