Tool for creating puzzles interactively.
모든 평가
사용자 평가 1개 - 점수를 표시하려면 사용자 평가가 더 필요합니다.
출시일:
2024년 7월 2일
개발자:
배급사:
태그

로그인하셔서 게임을 찜 목록에 추가하거나, 팔로우하거나 또는 제외하기로 표시하세요.

한국어(을)를 지원하지 않습니다

이 제품은 귀하의 로컬 언어를 지원하지 않습니다. 구매하기 전에 아래에 있는 지원하는 언어 목록을 확인해주세요.

PuzzleScriptMIS 사용

무료
 

소프트웨어 정보

PuzzleScriptMIS is a development tool for puzzle games that contains a level editor, a test mode, a solver and uniquely a transformer for PuzzleScript. The transformer functions as a new way for puzzle designers to find or refine levels for puzzle games.

How the transformer works:
Designers can specify transformation rules according to which a current level design is transformed. The transformation rules follow a similar syntax to PuzzleScript and should be very easy to pick up for anyone familiar with PuzzleScript. It extends the language by introducing the keyword choose.

choose 1 [Player | No Obstacle] -> [|Player]

This chooses, with equal probability, any match of [Player | No Obstacle] (provided there is one) and replaces it with [] according to the normal rules of PuzzleScript. Notice that this can lead to multiple possible subsequent transformations. For example, the following level could be transformed into two different choices:


The final outcomes are then ranked according to their difficulty and presented to the designer. In this very simple example, the level where the player is moved to the right is considered slightly more difficult than the level where the player is moved to the right. The difficulty metric is based on the number of states the fastest solver requires in order to find the solution, and does not always match human judgement. The transformer works best if the ratio of interesting levels is high in the search space and the levels need a moderately low number of steps to be solved. The following are example use cases of using a transformer for designing Sokoban puzzle games, but the techniques apply to other puzzle games.

Use case: Inspiration
In the following example, the designer restricts the transformer to only create 4x4 Sokoban levels with 4 crates and targets and no walls. The transformer takes as an input an initially empty 4x4 level and transforms it according to the following rule.

choose 1 [] -> [Player]
choose 4 [No Crate][No Target] -> [Crate][Target]



Use case: Make it solvable when stuck
In the user study, most designers got stuck at some point when designing a level by introducing or removing an object which made the level unsolvable. Surprisingly, instead of figuring out a way to make the design solvable again, they posed this as a problem to the transformer. The transformer did generic operations on the level as follows:

( move players and crates around )
choose 20 [Player | No Obstacle] -> []
or [Crate | No Obstacle] -> []
( randomly remove or add 10 walls with prob. 0.4 )
choose 5 option 0.5 [Wall] -> []
choose 5 option 0.5 [No Obstacle] -> [Wall]
( remove one crate/target pair if it exists and add one )
choose 1 [Crate][Target] -> [][]
choose 1 [No Wall No Player No Crate][No Wall No Player No Target] -> [Crate][Target]




Use case: Polish
The transformer can be used to polish certain things at the end, like finding the most difficult starting position of the player in a Sokoban level. Also, an often reoccurring problem is to know when to stop designing a level. The transformer can give you a level of confidence if it cannot find any simple transformations that would make the level significantly more interesting.

choose 1 [Player][No Wall No Crate] -> [][Player]



Use case: Backward design

The idea is to start with a solved level and transform the level using only valid moves (in reverse). For Sokoban you would write transform rules that pull the boxes instead of pushing them.

(add a placeholder to all crates)
[Crate] -> [Crate Placeholder]
(move the player around and let him push crates)
choose 50 [Player | No Obstacle] -> []
or [Player | Crate | No Obstacle] -> []
(replace crates with targets and placeholders with crates)
[Crate] -> [Target]
[Placeholder] -> [Crate]

시스템 요구 사항

Windows
macOS
    최소:
    • 64비트 프로세서와 운영 체제가 필요합니다
    • 운영 체제 *: Windows 8
    • 메모리: 1024 MB RAM
    • 저장공간: 30 MB 사용 가능 공간
    권장:
    • 64비트 프로세서와 운영 체제가 필요합니다
* 2024년 1월 1일부터 Steam 클라이언트는 Windows 10 이상 버전만 지원합니다.
    최소:
    • 운영 체제: 10.15
    • 프로세서: Apple M1 or Intel Core M
    • 메모리: 1024 MB RAM
    • 저장공간: 30 MB 사용 가능 공간
    • 추가 사항: The more working memory you have, the better the generator will run.
    권장:

    고객 평가

    평가 유형


    구매 형식


    언어


    날짜 범위
    특정 날짜 범위에 속하는 평가를 보려면, 위의 그래프에서 선택 항목을 클릭한 후 드래그하거나 원하는 바를 클릭하세요.

    그래프 보기



    플레이 시간
    평가를 작성한 시점의 사용자 플레이 시간을 기준으로 평가를 필터링:



    최소 시간 없음 ~ 최대 시간 없음
    검색 조건:
    그래프 보기
     
    그래프 숨기기
     
    필터
    주제에서 벗어난 평가 활동 제외
    플레이 시간:
    위에서 설정한 필터 조건에 맞는 평가가 없습니다
    다른 평가를 보려면 위에서 필터를 조정해주세요
    평가 불러오는 중...