곰픽 문제1번 소스 추가 및 채점기준표 작성

This commit is contained in:
2025-03-21 21:42:09 +09:00
parent 257df29eee
commit 6fe41f783e
6 changed files with 376 additions and 242 deletions

Binary file not shown.

View File

@@ -411,6 +411,87 @@
} }
}, },
"4": { "4": {
"1": {
"type": "multi",
"ele": "//Document/Width/@value | //Document/Height/@value",
"value": [
"650",
"350"
],
"point": 5,
"desc": "캔버스 사이즈 650*350"
},
"2": {
"ele": "none",
"point": 5,
"desc": "자유 변형 문항은 채점 불가"
},
"3": {
"type" : "isExist",
"ele": "//Layer/Name/@value",
"value": "Germs",
"point": 5,
"desc": "Germs 레이어가 있는지 여부 체크"
},
"4": {
"type" : "multiValue",
"ele": "//Layer[Name[@value='Germs']]/Effects/Item/Name/@value | //Layer[Name[@value='Germs']]/Effects/Item/EffectData/amount/@value",
"value" : [
"12",
"선명하게"
],
"point": 5,
"desc": "Germs 레이어의 효과 체크"
},
"5": {
"ele": "none",
"point": 6,
"desc": "올가미 도구/이미지 제거 문항은 채점 불가"
},
"6": {
"type" : "isExist",
"ele": "//Layer/Effects/Item/Name/@value",
"value" : "세피아",
"point": 6,
"desc": "세피아 효과가 있는지 여부 체크"
},
"7": {
"type": "exact",
"ele": "//Layer/Shapes/Shape/shape_type/@value",
"value": "ELLIPSE",
"point": 3,
"desc": "레이어 쉐이프 타입이 타원인지 체크"
},
"8": {
"type": "size",
"posX": "//Layer//op_points[Item]/Item[last()]/X/@value - //Layer//op_points[Item]/Item[1]/X/@value",
"posY": "//Layer//op_points[Item]/Item[last()]/Y/@value - //Layer//op_points[Item]/Item[1]/Y/@value",
"value": {
"width": 130,
"height": 80
},
"point": 3,
"desc": "레이어 쉐이프 X, Y 좌표를 가지고 너비, 높이 계산하여 정답 채점"
},
"9": {
"type": "color",
"ele": "//Layer//Shape[contains(draw_type/@value, 'Interior')]/secondary_color/@value",
"value": "000555",
"point": 6,
"desc": "색상 코드 비교 시 소문자로 입력할 것"
},
"10": {
"type" : "multiValue",
"ele": "//Layer/BlendOp/@value | //Layer/Opacity/@value",
"value" : [
"중첩",
"75"
],
"point": 5,
"desc": "혼합모드(중첩, 불투명도 : 75) 체크"
}
},
"5": {
"1": { "1": {
"type": "multi", "type": "multi",
"ele": "//Document/Width/@value | //Document/Height/@value", "ele": "//Document/Width/@value | //Document/Height/@value",

View File

@@ -24,6 +24,19 @@ function parseColorToHex(colorString) {
} }
module.exports = getGpdpScore; module.exports = getGpdpScore;
/**
* /Document/Layers/Layer/Shapes/Shape/draw_type 속성값
* > Interior: 내부 채우기 / Outline: 외곽선
* /Document/Layers/Layer/Shapes/Shape/interior_type 속성값
* > Fill: 채우기 / Gradient: 그라데이션
* @param {*} gpdpData
* @param {*} scoringJson
* @param {*} index
* @returns
*/
// xml 형식의 GPDP 파일을 읽어서 점수를 계산 // xml 형식의 GPDP 파일을 읽어서 점수를 계산
// scoring.json 파일 내에 있는 ele 요소는 xpath 형식으로 접근하여 요소를 탐색하고 나오는 값을 value와 비교하여 점수를 계산 // scoring.json 파일 내에 있는 ele 요소는 xpath 형식으로 접근하여 요소를 탐색하고 나오는 값을 value와 비교하여 점수를 계산
// scoring.json 파일 내에 있는 type은 비교할 값의 타입을 의미하며, boolean, array 등이 있음 // scoring.json 파일 내에 있는 type은 비교할 값의 타입을 의미하며, boolean, array 등이 있음
@@ -48,14 +61,6 @@ function getGpdpScore(gpdpData, scoringJson, index) {
let type = scoringData[key].type; let type = scoringData[key].type;
let search = scoringData[key].search; let search = scoringData[key].search;
// search 값이 undefined 아니면 ele의 {search}부분을 search로 치환
/**
* JSON파일 곰믹스 5번문항/22번 문항
* type : "subtitle" 인 항목들
* GPString태그 VID7속성 찾는 xpath구문
* CRCUnitArr태그 Name속성 찾는 구문으로 변환
* > 멀티라인 텍스트 유사도 판별하기 어려움
*/
if (search !== undefined) { if (search !== undefined) {
let result = findSimilarString(gpdpXmlDoc, search, 0.8) let result = findSimilarString(gpdpXmlDoc, search, 0.8)
// xpath 내부 "(큰따옴표) 필터링 // xpath 내부 "(큰따옴표) 필터링
@@ -68,7 +73,54 @@ function getGpdpScore(gpdpData, scoringJson, index) {
} }
} }
console.log(`example number: ${key}`) console.log(`example number: ${key}`)
if (type == "exact") {
if (type == "multiValue") {
if (Array.isArray(rightAnswer)) {
const result = ele ? xpath.select(ele, gpdpXmlDoc) : [];
const resultValues = Array.isArray(result) ? result.map(r => (typeof r === 'object' ? r.value : r)) : [result];
console.log("🚀 ~ getGpdpScore ~ resultValues:", resultValues)
const groupSize = rightAnswer.length;
const groupedResult = [];
for (let i = 0; i < resultValues.length; i += groupSize) {
groupedResult.push(resultValues.slice(i, i + groupSize));
}
console.log("🚀 ~ getGpdpScore ~ groupedResult:", groupedResult)
// 배열 비교 함수
function arraysEqual(arr1, arr2) {
if (arr1.length !== arr2.length) return false;
return arr1.every((value, index) => value === arr2[index]);
}
// groupedResult 내부 배열에서 rightAnswer와 일치하는 배열이 있는지 확인
const isMatch = groupedResult.some(group => arraysEqual(group, rightAnswer));
if (isMatch) {
totalScore += point;
scoringResult[key] = point;
console.log("🚀 ~ 정답 포함");
} else {
scoringResult[key] = 0;
console.log("🚀 ~ 오답");
}
}
}
else if (type == "isExist" ) {
const result = xpath.select(ele, gpdpXmlDoc);
result.forEach((v, i) => {
if ( v.value === rightAnswer ) {
totalScore += point;
scoringResult[key] = point;
console.log("🚀 ~ result.forEach ~ 정답 일치:", rightAnswer)
return;
} else {
scoringResult[key] = 0;
}
});
}
else if (type == "exact") {
let result = xpath.select(ele, gpdpXmlDoc); let result = xpath.select(ele, gpdpXmlDoc);
if (result.length == 0) { if (result.length == 0) {
scoringResult[key] = 0; scoringResult[key] = 0;
@@ -269,4 +321,3 @@ function getGpdpScore(gpdpData, scoringJson, index) {
scoringResult['총점'] = totalScore; scoringResult['총점'] = totalScore;
return scoringResult; return scoringResult;
} }

View File

@@ -102,7 +102,7 @@ studentDirs.forEach(student => {
const xmlDocument = new DOMParser().parseFromString(xmlString, 'application/xml'); const xmlDocument = new DOMParser().parseFromString(xmlString, 'application/xml');
// console.log('xmlDocument:', xmlDocument); // console.log('xmlDocument:', xmlDocument);
scoringResult[index + 1] = getGpdpScore(xmlDocument, scoringJson, index + 3); scoringResult[index + 1] = getGpdpScore(xmlDocument, scoringJson, index + 4);
}); });
gmepFile.forEach((gmep, index) => { gmepFile.forEach((gmep, index) => {
const gmepPath = path.join('./', studentDir, gmep); const gmepPath = path.join('./', studentDir, gmep);
@@ -260,9 +260,9 @@ function getGmepScore(gmepData, scoringJson, index) {
} }
} }
console.log("🚀 ~ getGmepScore ~ ele:", ele) // console.log("🚀 ~ getGmepScore ~ ele:", ele)
console.log("🚀 ~ getGmepScore ~ ele2:", ele2) // console.log("🚀 ~ getGmepScore ~ ele2:", ele2)
console.log("🚀 ~ getGmepScore ~ ele3:", ele3) // console.log("🚀 ~ getGmepScore ~ ele3:", ele3)
// xpath // xpath
if (ele === 'none') { if (ele === 'none') {
@@ -525,7 +525,9 @@ function getGmepScore(gmepData, scoringJson, index) {
} }
else if (arr2.length > 1) { else if (arr2.length > 1) {
for (let i = 0; i < arr1.length; i++) { for (let i = 0; i < arr1.length; i++) {
if (Math.abs(arr1[i] - arr2[i]) > 0.1) return false; // 좌표값 범위 비교
const errorRange = 0.1;
if (Math.abs(arr1[i] - arr2[i]) > errorRange) return false;
} }
return true; return true;
} }

View File

@@ -1 +1 @@
[{"kind":2,"language":"xpath","value":"//CROwneUnit[position() = (//CRTrackList[@Name='텍스트']/CRTrackClip[sum(preceding-sibling::CRTrackClip/@Length) = 170]/@ClipIndex) + 1]/CRCUnitArr/@VID600 | //CROwneUnit[position() = (//CRTrackList[@Name='텍스트']/CRTrackClip[sum(preceding-sibling::CRTrackClip/@Length) = 170]/@ClipIndex) + 1]/CRCUnitArr/@VID601"},{"kind":2,"language":"xpath","value":"//CRCUnitArr[@Name='대룡산의 아름다움']/@*[name()='VID600' or name()='VID601']"},{"kind":2,"language":"xpath","value":"sum(//CRTrackList[@Name='텍스트']/CRTrackClip[@ClipIndex=count(//CROwneUnit[CRCUnitArr[@Name='나무기차']]/preceding-sibling::CROwneUnit)]/preceding-sibling::CRTrackClip/@Length)"},{"kind":2,"language":"xpath","value":"//CROwneUnit[CRCUnitArr[@Name='나무 기차']]"},{"kind":2,"language":"xpath","value":"sum(//CRTrackList[@Name='텍스트']/CRTrackClip[not(@ClipIndex='-1')][{subtitleOrder}]/preceding-sibling::CRTrackClip/@Length)\r\nsum(//CRTrackList[@Name='텍스트']/CRTrackClip[]/preceding-sibling::CRTrackClip/@Length)"},{"kind":2,"language":"xpath","value":"count(//CROwneUnit[CRCUnitArr[@Name='나무 기차']]/preceding-sibling::CROwneUnit)"},{"kind":2,"language":"xpath","value":"//CRTrackList[@Name='텍스트']/CRTrackClip[@ClipIndex=count(//CROwneUnit[CRCUnitArr[@Name='나무 기차']]/preceding-sibling::CROwneUnit)]"},{"kind":2,"language":"xpath","value":"//CRTrackList[@Name='텍스트']/CRTrackClip[@ClipIndex=1]"},{"kind":2,"language":"xpath","value":"sum(//CRTrackList[@Name='텍스트']/CRTrackClip[not(@ClipIndex='-1')][@ClipIndex=0]/preceding-sibling::CRTrackClip/@Length)"},{"kind":2,"language":"xpath","value":"//CRTrackList[@Name='텍스트']/CRTrackClip[not(@ClipIndex='-1')][@ClipIndex=1]/@Length"}] [{"kind":2,"language":"xpath","value":"//Layer/Name/@value = 'Germs'"},{"kind":2,"language":"xpath","value":"//Layer[Name[@value='Germs']]/Effects/Item[Name[@value='선명하게'] and EffectData[amount[@value=\"12\"]]]"},{"kind":2,"language":"xpath","value":"//Layer[Name[@value='Germs']]/Effects/Item/(Name/@value | EffectData/amount/@value)"},{"kind":2,"language":"xpath","value":"//CRCUnitArr[@Name='{search}']//GCUnitPool/GCUnit[@Type='2']/@*[name()='VID100' or name()='VID101']"},{"kind":2,"language":"xpath","value":"//Layer//op_points[Item]/Item[last()]/X/@value"},{"kind":2,"language":"xpath","value":"//Layer//op_points[Item]/Item[1]/X/@value"},{"kind":2,"language":"xpath","value":"//Layer//Shape[contains(draw_type/@value, 'Interior')]/secondary_color/@value"},{"kind":2,"language":"xpath","value":"//Layer//Shape[contains(draw_type/@value, 'Interior')]/secondary_color/@value"},{"kind":2,"language":"xpath","value":"//Layer/BlendOp/@value | //Layer/Opacity/@value"}]