곰픽 문제 채점 관련 내용 추가
This commit is contained in:
274
gpdpScoring.js
Normal file
274
gpdpScoring.js
Normal file
@@ -0,0 +1,274 @@
|
|||||||
|
const xpath = require('xpath');
|
||||||
|
const { DOMParser } = require('xmldom');
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
function parseColorToHex(colorString) {
|
||||||
|
// 정규식을 사용하여 B, G, R, A 값 추출
|
||||||
|
const regex = /B:\s*(\d+),\s*G:\s*(\d+),\s*R:\s*(\d+),\s*A:\s*(\d+)/;
|
||||||
|
const matches = colorString.match(regex);
|
||||||
|
|
||||||
|
if (!matches) {
|
||||||
|
throw new Error('Invalid color string format');
|
||||||
|
}
|
||||||
|
|
||||||
|
// matches[1]은 B, matches[2]는 G, matches[3]은 R, matches[4]는 A
|
||||||
|
const [_, b, g, r, a] = matches;
|
||||||
|
|
||||||
|
// 각 값을 16진수로 변환하고 2자리로 패딩
|
||||||
|
const rHex = parseInt(r).toString(16).padStart(2, '0');
|
||||||
|
const gHex = parseInt(g).toString(16).padStart(2, '0');
|
||||||
|
const bHex = parseInt(b).toString(16).padStart(2, '0');
|
||||||
|
const aHex = parseInt(a).toString(16).padStart(2, '0');
|
||||||
|
|
||||||
|
// #RRGGBBAA 형식으로 반환
|
||||||
|
return `${rHex}${gHex}${bHex}`;
|
||||||
|
}
|
||||||
|
|
||||||
|
module.exports = getGpdpScore;
|
||||||
|
// xml 형식의 GPDP 파일을 읽어서 점수를 계산
|
||||||
|
// scoring.json 파일 내에 있는 ele 요소는 xpath 형식으로 접근하여 요소를 탐색하고 나오는 값을 value와 비교하여 점수를 계산
|
||||||
|
// scoring.json 파일 내에 있는 type은 비교할 값의 타입을 의미하며, boolean, array 등이 있음
|
||||||
|
// scoring.json 파일 내에 있는 type에 따라 비교하는 방식이 달라짐
|
||||||
|
// 채점 결과를 scoringResultList 배열에 저장
|
||||||
|
function getGpdpScore(gpdpData, scoringJson, index) {
|
||||||
|
const gpdpXmlDoc = gpdpData;
|
||||||
|
const scoringResult = {};
|
||||||
|
|
||||||
|
const scoringData = scoringJson[index];
|
||||||
|
// console.log(scoringData);
|
||||||
|
|
||||||
|
let totalScore = 0;
|
||||||
|
|
||||||
|
// 채점기준표 문항별 분류
|
||||||
|
for (const key in scoringData) {
|
||||||
|
let ele = scoringData[key].ele;
|
||||||
|
let ele2 = scoringData[key].ele2;
|
||||||
|
let existEle = scoringData[key].existEle;
|
||||||
|
let rightAnswer = scoringData[key].value;
|
||||||
|
let point = scoringData[key].point;
|
||||||
|
let type = scoringData[key].type;
|
||||||
|
let search = scoringData[key].search;
|
||||||
|
|
||||||
|
// search 값이 undefined 아니면 ele의 {search}부분을 search로 치환
|
||||||
|
/**
|
||||||
|
* JSON파일 곰믹스 5번문항/22번 문항
|
||||||
|
* type : "subtitle" 인 항목들
|
||||||
|
* GPString태그 VID7속성 찾는 xpath구문
|
||||||
|
* CRCUnitArr태그 Name속성 찾는 구문으로 변환
|
||||||
|
* > 멀티라인 텍스트 유사도 판별하기 어려움
|
||||||
|
*/
|
||||||
|
if (search !== undefined) {
|
||||||
|
let result = findSimilarString(gpdpXmlDoc, search, 0.8)
|
||||||
|
// xpath 내부 "(큰따옴표) 필터링
|
||||||
|
if (result !== null) {
|
||||||
|
result = result.replace(/"/g, "'");
|
||||||
|
}
|
||||||
|
ele = ele.replace(/{search}/g, result);
|
||||||
|
if (existEle !== undefined) {
|
||||||
|
existEle = existEle.replace(/{search}/g, result);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
console.log(`example number: ${key}`)
|
||||||
|
if (type == "exact") {
|
||||||
|
let result = xpath.select(ele, gpdpXmlDoc);
|
||||||
|
if (result.length == 0) {
|
||||||
|
scoringResult[key] = 0;
|
||||||
|
console.log('ele not found');
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
if (result[0].value === rightAnswer) {
|
||||||
|
totalScore += point;
|
||||||
|
scoringResult[key] = point;
|
||||||
|
} else {
|
||||||
|
scoringResult[key] = 0;
|
||||||
|
console.log('ele not matched, ' + result[0].value);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
else if (type == "color") {
|
||||||
|
let result = xpath.select(ele, gpdpXmlDoc);
|
||||||
|
if (result.length == 0) {
|
||||||
|
scoringResult[key] = 0;
|
||||||
|
console.log('ele not found');
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
const hexColor = parseColorToHex(result[0].value);
|
||||||
|
|
||||||
|
if (hexColor === rightAnswer) {
|
||||||
|
totalScore += point;
|
||||||
|
scoringResult[key] = point;
|
||||||
|
console.log('color matched, ' + hexColor);
|
||||||
|
} else {
|
||||||
|
scoringResult[key] = 0;
|
||||||
|
console.log('color not matched, ' + hexColor);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
else if (type == "multi") {
|
||||||
|
try {
|
||||||
|
const result = xpath.select(ele, gpdpXmlDoc);
|
||||||
|
let isSame = true;
|
||||||
|
// console.log(`ele: ${ele}, value: ${value} result: ${result}`);
|
||||||
|
|
||||||
|
if (result.length == 0) {
|
||||||
|
console.log('result length 0');
|
||||||
|
scoringResult[key] = 0;
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
|
||||||
|
result.forEach((v, i) => {
|
||||||
|
// value[i] 값이 정수형인 경우에는 float로 변환하여 비교
|
||||||
|
// 정수형 v값을 float 형으로 변환하고 소수점 3자리까지 버림
|
||||||
|
let temp = v.value;
|
||||||
|
let answer = rightAnswer[i];
|
||||||
|
|
||||||
|
if (Number.isFinite(rightAnswer[i]) && !Number.isInteger(rightAnswer[i])) {
|
||||||
|
temp = parseFloat(v.value);
|
||||||
|
answer = parseFloat(rightAnswer[i]);
|
||||||
|
// 소수점 3자리까지 버림
|
||||||
|
temp = Math.floor(temp * 1000) / 1000;
|
||||||
|
}
|
||||||
|
// answer 문자열 중 : 가 포함되어 있다면 각각 분리하고 그 값의 차이를 구함
|
||||||
|
if (typeof answer == "string" && answer.indexOf(':') > -1) {
|
||||||
|
const [answerStart, answerEnd] = answer.split(':').map(Number);
|
||||||
|
const [tempStart, tempEnd] = temp.split(':').map(Number);
|
||||||
|
answer = answerEnd - answerStart;
|
||||||
|
temp = tempEnd - tempStart;
|
||||||
|
}
|
||||||
|
|
||||||
|
console.log(`temp: ${temp} answer: ${answer}`);
|
||||||
|
if (answer !== temp) {
|
||||||
|
console.log(`answer !== temp`);
|
||||||
|
isSame = false;
|
||||||
|
}
|
||||||
|
});
|
||||||
|
totalScore += isSame ? point : 0;
|
||||||
|
scoringResult[key] = isSame ? point : 0;
|
||||||
|
} catch (e) {
|
||||||
|
console.log('err :', e);
|
||||||
|
scoringResult[key] = 0;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
else if (type == "size") {
|
||||||
|
let posX = scoringData[key].posX;
|
||||||
|
let posY = scoringData[key].posY;
|
||||||
|
|
||||||
|
let answerWidth = rightAnswer["width"];
|
||||||
|
let answerHeight = rightAnswer["height"];
|
||||||
|
|
||||||
|
let width = xpath.select(posX, gpdpXmlDoc);
|
||||||
|
let height = xpath.select(posY, gpdpXmlDoc);
|
||||||
|
width = Math.round(width);
|
||||||
|
height = Math.round(height);
|
||||||
|
|
||||||
|
console.log(`width:${answerWidth},${width}, height: ${answerHeight},${height}`);
|
||||||
|
if (answerWidth === width && answerHeight === height) {
|
||||||
|
totalScore += point;
|
||||||
|
scoringResult[key] = point;
|
||||||
|
console.log("same size");
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
scoringResult[key] = 0;
|
||||||
|
console.log("different size");
|
||||||
|
}
|
||||||
|
}
|
||||||
|
else if (type == "gradient") {
|
||||||
|
let startColor = scoringData[key].startColor;
|
||||||
|
let endColor = scoringData[key].endColor;
|
||||||
|
|
||||||
|
let answerStartColor = rightAnswer["startColor"];
|
||||||
|
let answerEndColor = rightAnswer["endColor"];
|
||||||
|
|
||||||
|
let start = xpath.select(startColor, gpdpXmlDoc);
|
||||||
|
let end = xpath.select(endColor, gpdpXmlDoc);
|
||||||
|
|
||||||
|
// console.log(start[0].value, end[0].value);
|
||||||
|
if (start.length == 0 || end.length == 0) {
|
||||||
|
console.log("gradient color not found");
|
||||||
|
scoringResult[key] = 0;
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
|
||||||
|
const startHexColor = parseColorToHex(start[0].value);
|
||||||
|
const endHexColor = parseColorToHex(end[0].value);
|
||||||
|
console.log(startHexColor + ":" + answerStartColor, endHexColor + ":" + answerEndColor);
|
||||||
|
|
||||||
|
if (startHexColor === answerStartColor && endHexColor === answerEndColor) {
|
||||||
|
totalScore += point;
|
||||||
|
scoringResult[key] = point;
|
||||||
|
console.log("same color");
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
scoringResult[key] = 0;
|
||||||
|
console.log("different color");
|
||||||
|
}
|
||||||
|
}
|
||||||
|
// 그림자 속성이 있는지 여부 파악해서 그림자 속성 별로 점수 1 점씩 부여
|
||||||
|
else if(type == "shadow"){
|
||||||
|
|
||||||
|
let result = xpath.select(ele["shadow"], gpdpXmlDoc);
|
||||||
|
let shadowScore = 0;
|
||||||
|
if (result.length == 0) {
|
||||||
|
scoringResult[key] = 0;
|
||||||
|
console.log('shadow not found');
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
|
||||||
|
shadowScore += 1;
|
||||||
|
let width = xpath.select(ele["width"], gpdpXmlDoc);
|
||||||
|
let distance = xpath.select(ele["distance"], gpdpXmlDoc);
|
||||||
|
let blur = xpath.select(ele["blur"], gpdpXmlDoc);
|
||||||
|
let angle = xpath.select(ele["angle"], gpdpXmlDoc);
|
||||||
|
|
||||||
|
if(width.length !== 0 && width[0].value == rightAnswer["width"]){
|
||||||
|
shadowScore += 1;
|
||||||
|
console.log('width matched');
|
||||||
|
}
|
||||||
|
if(distance.length !== 0 && distance[0].value == rightAnswer["distance"]){
|
||||||
|
shadowScore += 1;
|
||||||
|
console.log('distence matched');
|
||||||
|
}
|
||||||
|
if(blur.length !== 0 && blur[0].value == rightAnswer["blur"]){
|
||||||
|
shadowScore += 1;
|
||||||
|
console.log('blur matched');
|
||||||
|
}
|
||||||
|
if(angle.length !== 0 && angle[0].value == rightAnswer["angle"]){
|
||||||
|
shadowScore += 1;
|
||||||
|
console.log('angle matched');
|
||||||
|
}
|
||||||
|
totalScore += shadowScore;
|
||||||
|
scoringResult[key] = shadowScore;
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
let result = xpath.select(ele, gpdpXmlDoc);
|
||||||
|
let result2 = null;
|
||||||
|
let isCheck = false;
|
||||||
|
|
||||||
|
if (ele === 'none') {
|
||||||
|
scoringResult[key] = "확인필요";
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (result.length == 0) {
|
||||||
|
isCheck = true;
|
||||||
|
}
|
||||||
|
if (isCheck && ele2) {
|
||||||
|
result2 = xpath.select(ele2, gpdpXmlDoc);
|
||||||
|
|
||||||
|
if (result2.length == 0) {
|
||||||
|
scoringResult[key] = 0;
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
result = result2;
|
||||||
|
// console.log(`1st isChecked: ${isCheck}, result: ${result}`)
|
||||||
|
}
|
||||||
|
// value와 result[0].value를 비교하여 같으면 점수 point 부여
|
||||||
|
// console.log(`${(value === result[0].value)}, ${result.length > 0 && value === result[0].value} `)
|
||||||
|
// console.log(`2nd isChecked: ${isCheck}, result: ${result}`)
|
||||||
|
totalScore += result.length > 0 ? point : 0;
|
||||||
|
scoringResult[key] = result.length > 0 ? point : 0;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
scoringResult['총점'] = totalScore;
|
||||||
|
return scoringResult;
|
||||||
|
}
|
||||||
|
|
||||||
@@ -7,6 +7,7 @@ const xpath = require('xpath');
|
|||||||
const { DOMParser } = require('xmldom');
|
const { DOMParser } = require('xmldom');
|
||||||
|
|
||||||
const findSimilarString = require('./findSimilarString');
|
const findSimilarString = require('./findSimilarString');
|
||||||
|
const getGpdpScore = require('./gpdpScoring.js');
|
||||||
const getToday = require('./getToday.js');
|
const getToday = require('./getToday.js');
|
||||||
const todayDate = getToday();
|
const todayDate = getToday();
|
||||||
|
|
||||||
@@ -25,8 +26,8 @@ const scoringJson = require('./DIC_2502D.json');
|
|||||||
// const answerFilesDir = './output/A/DIC';
|
// const answerFilesDir = './output/A/DIC';
|
||||||
// const answerFilesDir = './output/B/DIC';
|
// const answerFilesDir = './output/B/DIC';
|
||||||
// const answerFilesDir = './output/C/DIC';
|
// const answerFilesDir = './output/C/DIC';
|
||||||
const answerFilesDir = './output/D/DIC';
|
// const answerFilesDir = './output/D/DIC';
|
||||||
|
const answerFilesDir = './samples/';
|
||||||
// TEST
|
// TEST
|
||||||
// const answerFilesDir = './output/A/TEST';
|
// const answerFilesDir = './output/A/TEST';
|
||||||
// const answerFilesDir = './output/B/TEST';
|
// const answerFilesDir = './output/B/TEST';
|
||||||
@@ -37,7 +38,7 @@ const answerFilesDir = './output/D/DIC';
|
|||||||
// const outputExcelFile = './'+todayDate+'_DIC_2502A_채점결과.xlsx';
|
// const outputExcelFile = './'+todayDate+'_DIC_2502A_채점결과.xlsx';
|
||||||
// const outputExcelFile = './'+todayDate+'_DIC_2502B_채점결과.xlsx';
|
// const outputExcelFile = './'+todayDate+'_DIC_2502B_채점결과.xlsx';
|
||||||
// const outputExcelFile = './'+todayDate+'_DIC_2502C_채점결과.xlsx';
|
// const outputExcelFile = './'+todayDate+'_DIC_2502C_채점결과.xlsx';
|
||||||
const outputExcelFile = './'+todayDate+'_DIC_2502D_채점결과.xlsx';
|
const outputExcelFile = './' + todayDate + '_DIC_2502D_채점결과.xlsx';
|
||||||
|
|
||||||
// TEST
|
// TEST
|
||||||
// const outputExcelFile = './'+todayDate+'_DIC_2502A_TEST.xlsx';
|
// const outputExcelFile = './'+todayDate+'_DIC_2502A_TEST.xlsx';
|
||||||
@@ -46,6 +47,7 @@ const outputExcelFile = './'+todayDate+'_DIC_2502D_채점결과.xlsx';
|
|||||||
// const outputExcelFile = './'+todayDate+'_DIC_2502D_TEST.xlsx';
|
// const outputExcelFile = './'+todayDate+'_DIC_2502D_TEST.xlsx';
|
||||||
// --------------------------------------------------------
|
// --------------------------------------------------------
|
||||||
|
|
||||||
|
|
||||||
// 답안 폴더 내부에 디렉토리가 아닌 일반 파일이 있을 경우 디렉토리만 필터링 해서 불러옴
|
// 답안 폴더 내부에 디렉토리가 아닌 일반 파일이 있을 경우 디렉토리만 필터링 해서 불러옴
|
||||||
const studentDirs = fs.readdirSync(answerFilesDir).filter(file => {
|
const studentDirs = fs.readdirSync(answerFilesDir).filter(file => {
|
||||||
const filePath = path.join(answerFilesDir, file);
|
const filePath = path.join(answerFilesDir, file);
|
||||||
@@ -69,6 +71,11 @@ studentDirs.forEach(student => {
|
|||||||
file => file.endsWith('.gmep') || file.endsWith('.gmdp')
|
file => file.endsWith('.gmep') || file.endsWith('.gmdp')
|
||||||
);
|
);
|
||||||
|
|
||||||
|
// 곰픽 파일 gpdp 파일 이거나 xml 파일
|
||||||
|
const gpdpFile = fs.readdirSync(studentDir).filter(
|
||||||
|
file => file.endsWith('.xml')
|
||||||
|
);
|
||||||
|
|
||||||
// 학생 이름을 key로 하는 객체 생성
|
// 학생 이름을 key로 하는 객체 생성
|
||||||
// 채점결과
|
// 채점결과
|
||||||
const scoringResult = {
|
const scoringResult = {
|
||||||
@@ -87,10 +94,21 @@ studentDirs.forEach(student => {
|
|||||||
console.error(`Error reading PSD file: ${psdPath}`, error);
|
console.error(`Error reading PSD file: ${psdPath}`, error);
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
gpdpFile.forEach((gpdp, index) => {
|
||||||
|
const gpdpPath = path.join('./', studentDir, gpdp);
|
||||||
|
console.log(`Reading ${gpdpPath}...`);
|
||||||
|
|
||||||
|
const xmlString = fs.readFileSync(gpdpPath, 'utf8');
|
||||||
|
// XML 문자열을 파싱하여 XML 문서 객체로 변환
|
||||||
|
const xmlDocument = new DOMParser().parseFromString(xmlString, 'application/xml');
|
||||||
|
// console.log('xmlDocument:', xmlDocument);
|
||||||
|
|
||||||
|
scoringResult[index + 1] = getGpdpScore(xmlDocument, scoringJson, index + 3);
|
||||||
|
});
|
||||||
gmepFile.forEach((gmep, index) => {
|
gmepFile.forEach((gmep, index) => {
|
||||||
const gmepPath = path.join('./', studentDir, gmep);
|
const gmepPath = path.join('./', studentDir, gmep);
|
||||||
console.log(`Reading ${gmepPath}...`);
|
console.log(`Reading ${gmepPath}...`);
|
||||||
|
|
||||||
const xmlString = fs.readFileSync(gmepPath, 'utf8');
|
const xmlString = fs.readFileSync(gmepPath, 'utf8');
|
||||||
// XML 문자열을 파싱하여 XML 문서 객체로 변환
|
// XML 문자열을 파싱하여 XML 문서 객체로 변환
|
||||||
const xmlDocument = new DOMParser().parseFromString(xmlString, 'application/xml');
|
const xmlDocument = new DOMParser().parseFromString(xmlString, 'application/xml');
|
||||||
@@ -125,7 +143,9 @@ XLSX.utils.book_append_sheet(workbook, worksheet, '채점 결과');
|
|||||||
|
|
||||||
// 엑셀 파일 저장
|
// 엑셀 파일 저장
|
||||||
XLSX.writeFile(workbook, outputExcelFile);
|
XLSX.writeFile(workbook, outputExcelFile);
|
||||||
console.log('채점 결과가 '+outputExcelFile+' 파일에 저장되었습니다.');
|
console.log('채점 결과가 ' + outputExcelFile + ' 파일에 저장되었습니다.');
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
// xml 형식의 gmep 파일을 읽어서 점수를 계산
|
// xml 형식의 gmep 파일을 읽어서 점수를 계산
|
||||||
@@ -141,7 +161,7 @@ function getGmepScore(gmepData, scoringJson, index) {
|
|||||||
// console.log(scoringData);
|
// console.log(scoringData);
|
||||||
|
|
||||||
let totalScore = 0;
|
let totalScore = 0;
|
||||||
|
|
||||||
// 채점기준표 문항별 분류
|
// 채점기준표 문항별 분류
|
||||||
for (const key in scoringData) {
|
for (const key in scoringData) {
|
||||||
let ele = scoringData[key].ele;
|
let ele = scoringData[key].ele;
|
||||||
@@ -167,7 +187,7 @@ function getGmepScore(gmepData, scoringJson, index) {
|
|||||||
result = result.replace(/"/g, "'");
|
result = result.replace(/"/g, "'");
|
||||||
}
|
}
|
||||||
ele = ele.replace(/{search}/g, result);
|
ele = ele.replace(/{search}/g, result);
|
||||||
if ( existEle !== undefined ){
|
if (existEle !== undefined) {
|
||||||
existEle = existEle.replace(/{search}/g, result);
|
existEle = existEle.replace(/{search}/g, result);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -208,7 +228,7 @@ function getGmepScore(gmepData, scoringJson, index) {
|
|||||||
const motionClipPathNode = xpath.select1(`//CRClipArr/CRClip[${clipIndex}]/CRCUnitArr/@Path`, gmepXmlDoc);
|
const motionClipPathNode = xpath.select1(`//CRClipArr/CRClip[${clipIndex}]/CRCUnitArr/@Path`, gmepXmlDoc);
|
||||||
const notUndefinedClipNode = clipPathNode ?? motionClipPathNode;
|
const notUndefinedClipNode = clipPathNode ?? motionClipPathNode;
|
||||||
|
|
||||||
if ( notUndefinedClipNode === undefined ) {
|
if (notUndefinedClipNode === undefined) {
|
||||||
console.log("🚀 ~ getGmepScore ~ notUndefinedClipNode:", notUndefinedClipNode)
|
console.log("🚀 ~ getGmepScore ~ notUndefinedClipNode:", notUndefinedClipNode)
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
@@ -260,7 +280,7 @@ function getGmepScore(gmepData, scoringJson, index) {
|
|||||||
// else if (type == "subtitle") {
|
// else if (type == "subtitle") {
|
||||||
// const result = xpath.select(ele, gmepXmlDoc);
|
// const result = xpath.select(ele, gmepXmlDoc);
|
||||||
// const length = scoringData[key].length;
|
// const length = scoringData[key].length;
|
||||||
|
|
||||||
// // 결과는 배열로 나오는데 2개 일 경우가 있음
|
// // 결과는 배열로 나오는데 2개 일 경우가 있음
|
||||||
// if (result.length !== length) {
|
// if (result.length !== length) {
|
||||||
// scoringResult[key] = 0;
|
// scoringResult[key] = 0;
|
||||||
@@ -293,11 +313,11 @@ function getGmepScore(gmepData, scoringJson, index) {
|
|||||||
const start = scoringData[key].start;
|
const start = scoringData[key].start;
|
||||||
const end = scoringData[key].end;
|
const end = scoringData[key].end;
|
||||||
|
|
||||||
try{
|
try {
|
||||||
let result = xpath.select(ele, gmepXmlDoc);
|
let result = xpath.select(ele, gmepXmlDoc);
|
||||||
if (result.length == 0) {
|
if (result.length == 0) {
|
||||||
result = xpath.select(ele2, gmepXmlDoc);
|
result = xpath.select(ele2, gmepXmlDoc);
|
||||||
if (result.length == 0 ) {
|
if (result.length == 0) {
|
||||||
scoringResult[key] = 0;
|
scoringResult[key] = 0;
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
@@ -314,10 +334,10 @@ function getGmepScore(gmepData, scoringJson, index) {
|
|||||||
const y2 = parseFloat(end[1]);
|
const y2 = parseFloat(end[1]);
|
||||||
|
|
||||||
// (x1,y1) <= (x,y) <= (x2,y2) 이면 true
|
// (x1,y1) <= (x,y) <= (x2,y2) 이면 true
|
||||||
const isPointInRange = (x, y, x1, y1, x2, y2) =>
|
const isPointInRange = (x, y, x1, y1, x2, y2) =>
|
||||||
(x >= x1 && x <= x2) && (y >= y1 && y <= y2);
|
(x >= x1 && x <= x2) && (y >= y1 && y <= y2);
|
||||||
|
|
||||||
if (isPointInRange(x, y, x1, y1, x2, y2) === true ) {
|
if (isPointInRange(x, y, x1, y1, x2, y2) === true) {
|
||||||
totalScore += point;
|
totalScore += point;
|
||||||
scoringResult[key] = point;
|
scoringResult[key] = point;
|
||||||
}
|
}
|
||||||
@@ -405,7 +425,7 @@ function getGmepScore(gmepData, scoringJson, index) {
|
|||||||
console.log(`not found. ${existEle} `);
|
console.log(`not found. ${existEle} `);
|
||||||
const result = xpath.select1(ele, gmepXmlDoc);
|
const result = xpath.select1(ele, gmepXmlDoc);
|
||||||
console.log("🚀 ~ getGmepScore ~ result:", result)
|
console.log("🚀 ~ getGmepScore ~ result:", result)
|
||||||
if ( result == rightAnswer ) {
|
if (result == rightAnswer) {
|
||||||
totalScore += point;
|
totalScore += point;
|
||||||
scoringResult[key] = point;
|
scoringResult[key] = point;
|
||||||
}
|
}
|
||||||
@@ -419,14 +439,14 @@ function getGmepScore(gmepData, scoringJson, index) {
|
|||||||
let result = xpath.select(ele, gmepXmlDoc);
|
let result = xpath.select(ele, gmepXmlDoc);
|
||||||
let result2 = null;
|
let result2 = null;
|
||||||
let isCheck = false;
|
let isCheck = false;
|
||||||
|
|
||||||
if (result.length == 0) {
|
if (result.length == 0) {
|
||||||
isCheck = true;
|
isCheck = true;
|
||||||
}
|
}
|
||||||
if (isCheck && ele2) {
|
if (isCheck && ele2) {
|
||||||
result2 = xpath.select(ele2, gmepXmlDoc);
|
result2 = xpath.select(ele2, gmepXmlDoc);
|
||||||
|
|
||||||
if (result2.length == 0) {
|
if (result2.length == 0) {
|
||||||
scoringResult[key] = 0;
|
scoringResult[key] = 0;
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
@@ -479,7 +499,7 @@ function getScore(psdData, scoring, index) {
|
|||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
if (type == "boolean") {
|
if (type == "boolean") {
|
||||||
// console.log(`result ${result.length}`);
|
// console.log(`result ${result.length}`);
|
||||||
|
|
||||||
scoringResult[key] = result.length > 0 ? point : 0;
|
scoringResult[key] = result.length > 0 ? point : 0;
|
||||||
}
|
}
|
||||||
@@ -488,9 +508,9 @@ function getScore(psdData, scoring, index) {
|
|||||||
// result: [255,162,0,255]
|
// result: [255,162,0,255]
|
||||||
// 255,162,0,255 -> ffa200
|
// 255,162,0,255 -> ffa200
|
||||||
else if (type == "color") {
|
else if (type == "color") {
|
||||||
// console.log(`result ${result}`); // result 255,162,0,255
|
// console.log(`result ${result}`); // result 255,162,0,255
|
||||||
const temp = result[0].slice(0, 3).join(','); // 255,162,0
|
const temp = result[0].slice(0, 3).join(','); // 255,162,0
|
||||||
|
|
||||||
// RGB의 각 색상값이 한자리수 일 경우 0을 채워 두자리로 만듬
|
// RGB의 각 색상값이 한자리수 일 경우 0을 채워 두자리로 만듬
|
||||||
color = temp.split(',').map(v => parseInt(v).toString(16).padStart(2, '0')).join(''); // ffa200
|
color = temp.split(',').map(v => parseInt(v).toString(16).padStart(2, '0')).join(''); // ffa200
|
||||||
// ffa20 -> ffa200
|
// ffa20 -> ffa200
|
||||||
@@ -498,16 +518,16 @@ function getScore(psdData, scoring, index) {
|
|||||||
// color = color + '0';
|
// color = color + '0';
|
||||||
// }
|
// }
|
||||||
|
|
||||||
// console.log(`color: ${color}`);
|
// console.log(`color: ${color}`);
|
||||||
scoringResult[key] = result.length > 0 && value === color ? point : 0;
|
scoringResult[key] = result.length > 0 && value === color ? point : 0;
|
||||||
}
|
}
|
||||||
// type이 font인 경우 font의 이름만 추출하여 비교
|
// type이 font인 경우 font의 이름만 추출하여 비교
|
||||||
// value: "Arial"
|
// value: "Arial"
|
||||||
// result: ["Arial-BoldItalicMT"]
|
// result: ["Arial-BoldItalicMT"]
|
||||||
else if (type == "font") {
|
else if (type == "font") {
|
||||||
// console.log(`result ${result}`);
|
// console.log(`result ${result}`);
|
||||||
const font = result[0].split('-')[0];
|
const font = result[0].split('-')[0];
|
||||||
// console.log(`font: ${font}`);
|
// console.log(`font: ${font}`);
|
||||||
scoringResult[key] = result.length > 0 && value === font ? point : 0;
|
scoringResult[key] = result.length > 0 && value === font ? point : 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user