$args[1]) throw new Exception("Value ".$val.", not in range(" . $args[0] . "," . $args[1] . ")"); } return $val; } function flt_time($val, $name, $struct, $args) { $str = ""; if(is_string($val)) { if(strlen($val) === 0) throw new Exception("Bad value, string empty, crc28 can't be generated"); $reg = "/^([0-9]{1,2}):([0-9]{1,2}):([0-9]{1,2})$/"; if(!preg_match($reg, $val, $matches)) throw new Exception("Bad value, pattern 00:00:00"); $h = $matches[1]; $m = $matches[2]; $s = $matches[3]; return $h * 3600 + $m * 60 + $s; } return 0; } function flt_class($val, $name, $struct, $args) { global $GAME_ROOT; if(is_string($val)) { $conf_path = $val; if(strpos($conf_path, '@') === 0) $conf_path = substr($conf_path, 1) . '.conf.js'; $conf_path = \taskman\config_real_path($conf_path); $lines = file($conf_path); foreach($lines as $line) { if(preg_match('~"?class"?\s*:\s*"([^"]+)"~', $line, $matches)) { $conf_class = $matches[1]; if($conf_class != $args[0] && !is_subclass_of($conf_class, $args[0])) throw new Exception($val.". Config class is \"".$conf_class."\". Must be \"".$args[0]."\" or it's child"); else return $val; } } throw new Exception($val.". Config class is not found in '$conf_path'"); } return $val; }