simverse2026 / cutrope /data /rope-043.json
simver
Add files using upload-large-folder tool
6e15c35 verified
{
"schema_version": 1,
"level_id": "rope-043",
"level_file": "data/task/rope-043.json",
"video": {
"path": "data/video/rope-043.mp4",
"mime_type": "video/mp4",
"duration_seconds": 3,
"fps": 30
},
"prompt_level": {
"canvas_width": 1920,
"canvas_height": 1080,
"map_width": 320,
"map_height": 480,
"two_parts": true,
"special": 1,
"object_counts": {
"grab_or_rope_anchor": 4,
"left_candy": 1,
"right_candy": 1,
"star": 3,
"target": 1
}
},
"level_json_without_solution": {
"settings": [
{
"name": 0,
"width": 320,
"height": 480,
"gridSize": 32
},
{
"name": 1,
"ropePhysicsSpeed": 1,
"special": 1,
"twoParts": true
}
],
"objects": [
{
"name": 2,
"x": 158,
"y": 424
},
{
"name": 51,
"x": 203,
"y": 204
},
{
"name": 50,
"x": 81,
"y": 207
},
{
"name": 3,
"x": 196,
"y": 292,
"timeout": -1
},
{
"name": 3,
"x": 66,
"y": 298,
"timeout": -1
},
{
"name": 3,
"x": 140,
"y": 360,
"timeout": -1
},
{
"name": 100,
"x": 83,
"y": 72,
"length": 100,
"wheel": false,
"radius": -1,
"moveLength": -1,
"moveVertical": false,
"moveOffset": 0,
"spider": false,
"part": "L"
},
{
"name": 100,
"x": 210,
"y": 78,
"length": 100,
"wheel": false,
"radius": -1,
"moveLength": -1,
"moveVertical": false,
"moveOffset": 0,
"spider": false,
"part": "R"
},
{
"name": 100,
"x": 149,
"y": 140,
"length": 136,
"wheel": false,
"radius": -1,
"moveLength": -1,
"moveVertical": false,
"moveOffset": 0,
"spider": false,
"part": "L"
},
{
"name": 100,
"x": 152,
"y": 143,
"length": 154,
"wheel": false,
"radius": -1,
"moveLength": -1,
"moveVertical": false,
"moveOffset": 0,
"spider": false,
"part": "R"
}
],
"generatorTemplate": "split_drop",
"mirroredFrom": "18-05.json"
},
"reference_solution": "cut_rope 0,1 \ncut_rope 2 when candy_still for 0.3 and candy_near 920,700,60\ncut_rope 3",
"reference": {
"won": true,
"stars": 3,
"updated_at": "2026-05-05T19:04:09.649Z"
},
"answer": {
"commands": "cut_rope 0,1 \ncut_rope 2 when candy_still for 0.3 and candy_near 920,700,60\ncut_rope 3",
"reason": "reference solution",
"confidence": 1.0
},
"legacy_answer": "cut_rope 0,1 \ncut_rope 2 when candy_still for 0.3 and candy_near 920,700,60\ncut_rope 3",
"prompt": {
"system": "You are a Cut the Rope replayable-script solver. Given a short gameplay video of one Cut the Rope level (with a coordinate grid overlay) and a structured description of the level objects, you produce a deterministic command script that, replayed from the same initial state, wins the level.\n\nYou will receive: (a) one short gameplay video of the level, (b) a structured text body listing the canvas size, the count of each gameplay object (candy, target, ropes, bubbles, pumps, gravity switches, stars), and the level metadata.\n\nYou may reason step by step before the final answer. Place your final answer on the very last line of your reply, in the form: FINAL_JSON: <one-line JSON>\n\nThe JSON object must follow the commands schema described in section 8 of the user prompt: keys `commands`, `reason`, `confidence`. Multiple winning scripts may be valid; output any one. Do NOT wrap FINAL_JSON in Markdown code fences. Do NOT write anything after the FINAL_JSON line. Emit exactly one FINAL_JSON line.\n\nIf you cannot reason out a confident solution, still emit a best-effort FINAL_JSON line with at least one command and a confidence value below 1.0. Never refuse, never return prose only.",
"user": "## 1. TASK\nProduce a replayable command script that wins the Cut the Rope level shown in the gameplay video. The script must be deterministic so that replaying it from the same initial state in the simulator produces a win.\nThe level is solved when the candy reaches the target monster's mouth. Three-star completion is preferred but stable winning is the first priority.\n\n## 2. WORLD MODEL\n- Candy: a physics object affected by gravity, ropes, bubbles, pumps, and other active objects. Must be delivered to the target.\n- Target / monster: the level is won when the candy enters the target's mouth.\n- Rope: a constraint between the candy (or a split-candy half) and an anchor. Cutting a rope releases the candy from that constraint. Ropes are zero-indexed.\n- Grab: an anchor for a rope that can be repositioned during play. Zero-indexed.\n- Bubble: when the candy enters a bubble, it usually floats upward. Pop the bubble to release the candy.\n- Pump: a gust source that pushes objects. Each activation produces one impulse.\n- Gravity switch: toggles gravity direction or magnitude.\n- Star: collected by candy passing through its position. Up to 3 stars per level.\n- Split candy: some levels start with two candy halves (`left_candy`, `right_candy`). Use the half-specific conditions before the halves merge; switch to `candy_*` conditions after they merge.\n\n## 3. VISUAL LEGEND\n- The video is a short clip showing the full level layout and a coordinate grid overlay.\n- Coordinates: origin at the top-left corner. x increases to the right; y increases downward.\n- Indices in the video are zero-based for ropes, bubbles, pumps, and grabs. Infer indices from object positions and the order they appear in the clip.\n\n## 4. INPUT FIELDS\n- level_id: rope-043\n- canvas_size: 1920 x 1080\n- two_parts (split candy): True\n- object_counts:\n - target: 1\n - star: 3\n - left split candy: 1\n - right split candy: 1\n - rope/grab: 4\n- gameplay objects in this level:\n- Target (monster): the level is won when the candy reaches the monster's mouth. The target is usually fixed in place.\n- Split candy: the level starts with left_candy and right_candy halves. Before they merge, use left_candy_* and right_candy_* conditions. After they touch and merge, use candy_* for the complete candy.\n- Ropes / grabs: ropes constrain the candy or split-candy movement. `cut_rope N` cuts rope N; `cut_rope N,M,K` cuts multiple at once. If a grab can move, `move_grab N X` or `move_grab N X Y` repositions it.\n- Stars: candy or split-candy collects a star by passing through it. Prefer paths that collect 3 stars, but stable completion takes priority.\n\n## 5. ACTION VOCABULARY\nA complete answer is one ordered command script (one command per line). Available actions:\n- `cut_rope N` — cut rope N\n- `cut_rope N,M,K` — cut several ropes simultaneously\n- `pop_bubble N` — pop bubble N\n- `pop_bubble_left` — pop the bubble holding the left split-candy half\n- `pop_bubble_right` — pop the bubble holding the right split-candy half\n- `activate_pump N` — fire pump N once\n- `activate_pump N times C` — fire C times back-to-back\n- `activate_pump N times C every S` — fire C times spaced S seconds apart\n- `activate_pump N every S until <CONDITION>` — fire repeatedly until CONDITION holds\n- `move_grab N X` — move grab N to x-coordinate X (y unchanged)\n- `move_grab N X Y` — move grab N to (X, Y)\n- `kick_rope N` — apply a one-shot impulse to rope N\n- `toggle_gravity` — toggle the gravity setting\n\nEach command may be guarded by an optional `when <CONDITION>` clause. Available condition primitives:\n- `candy_x > N`, `candy_x < N`, `candy_y > N`, `candy_y < N`\n- `candy_near X,Y,R` — candy is within radius R of (X,Y); optional `for S` requires the predicate to hold for S seconds\n- `candy_still for S` — candy speed is below threshold for S seconds (useful before cutting after a swing settles)\n- `left_candy_*` and `right_candy_*` mirror the candy_* primitives for the corresponding split half\n- `grab_x I > N`, `grab_y I < N`, `grab_near I,X,Y,R`\n- `rope_cut N` — rope N has been cut\n- `no_rope`, `candy_in_bubble`\n- Conditions can be combined with `and`, `or`, and parentheses.\n\n## 6. CONSTRAINTS\n- One command per line in the `commands` string.\n- Indices must be zero-based and consistent with the level video.\n- `wait_frames` is NOT allowed in this benchmark version. Use condition-based waits.\n- The script must be deterministic; do not output stochastic or \"either-or\" entries.\n- The script must terminate without manual intervention; the simulator runs it from the initial state and decides win/loss.\n\n## 7. SOLVING ADVICE\n- Identify which ropes mainly control the candy first; choose a cut order that releases the candy along the shortest stable path to the target.\n- When waiting for the candy to reach a place, prefer `candy_near` / `candy_y` / `candy_x` over fixed timing.\n- For repeated pumping, use `activate_pump N times C every S` or `activate_pump N every S until CONDITION`.\n- In split-candy levels, do NOT use `candy_still` / `candy_near` for the merged candy before the halves merge; use the `left_candy_*` / `right_candy_*` primitives instead.\n\n## 8. OUTPUT SCHEMA\nFINAL_JSON: {\"commands\":\"<command-script with \\n separators>\",\"reason\":\"<one-sentence intent>\",\"confidence\":<0..1>}\n- commands: string. One command per line; lines separated by `\\n`.\n- reason: short one-sentence explanation of the intended sequence.\n- confidence: float in `[0, 1]`.\n\n## 9. FINAL INSTRUCTION\nYou may include reasoning above, but the very last line of your reply must start with FINAL_JSON: followed by exactly one valid JSON object.\nDo not wrap FINAL_JSON in code fences and do not write anything after it."
}
}