WSS - редактор скриптов

Translation of this page is incomplete.


Witcher Script Studio IDE The Witcher Script Studio является частью инструментария REDkit. Это Интегрированная Среда Разработки (IDE) для создания, изменения, отладки и профилирования скриптов для использования в REDkit: World Editor и в самой игре The Witcher 2. Скрипты используются для добавления собственного функционала и написаны на собственном языке, разработанном CD Projekt RED известным как Witcher Script.

IDE состоит из панели меню, инструментов, обозревателе решений, различных вкалдок и панели редактора, которая может отображать одну и более вкладок документов. Следующие секции будут определять каждый из этих вариантов.

Эта статья описывает различные особенности Witcher Script Studio. Для информации о том как использовать эти особенности или для обучения по разработке скриптов посмотрите эту секцию в конце статьи.



Панель меню

Панель меню содержит:
  • File Menu
  • Edit Menu
  • Debug Menu
  • Tools Menu
  • Window Menu

File Menu

  • File menu Open Solution File: Displays a list of all solution files, i.e. scripts, and allows the user to select one and open it. The scripts are listed alphabetically according to their path within the solution, for example game\gameplay\traps.ws. The list can be filtered using a keyword which can appear anywhere in the scripts name or path.
  • Save: Saves the current script.
  • Save All: Saves all open scripts.
  • Properties: TBC

Edit Menu

  • Edit menu Undo: Reverses the last edit action.
  • Redo: Reverses the last undo action.
  • Copy: Copies the selected text to the clipboard.
  • Cut: Cuts the selected text from the document after copying it to the clipboard.
  • Paste: Inserts the contents of the clipboard into the current document at the insertion point. Any selected text will be replaced.
  • Find: Displays the Find & Replace form and preselects the Current document option in the Files to check section. Any text that was selected in the current document will be used to populate the Find what field.
  • Find all: Displays the Find & Replace form and preselects the All files in solution option in the Files to check section. Any text that was selected in the current document will be used to populate the Find what field.
  • Find next: Highlights the next occurrence of the text being sought matching the criteria. An alert is displayed if there are nor more occurrences.
  • Find previous: Highlights the previous occurrence of the text being sought matching the criteria. An alert is displayed if there are nor more occurrences.
  • Go To: Displays the Go To Line form and jumps to the line number entered by the user. An alert is displayed if the user enters a bad line number.
  • Bookmarks: Opens the Bookmarks submenu:
    • Bookmarks menu Toggle Bookmark: Adds a new bookmark to or removes an existing bookmark from the current line.
    • Next Bookmark: Navigates to the next bookmark based on the order in which they were created. See the Bookmarks panel (below).
    • Previous Bookmark: Navigates to the previous bookmark based on the order in which they were created. See the Bookmarks panel (below).
    • Clear All Bookmarks: Removes all bookmarks from all documents.

Debug Menu

  • Debug menu Reload Scripts: Recompiles (TBC) and reloads all the scripts in the solution into the current game.
  • Continue:
  • Step Over:
  • Step Into:
  • Step Out:
  • Toggle Breakpoint:

Tools Menu

  • Tools menu Find Symbol: Displays a list of all symbols (classes, enums, functions, fields and methods) and their signature in the solution files. The symbols are listed alphabetically according to their identifier. The list can be filtered using a keyword which can appear anywhere in the symbol's name.


Windows Menu

  • Window menu Close All Documents: Closes all open docoments. If a document has been edited since it was opened or previously saved the user will be given the opportunity to save it before it is closed.

Toolbar

Toolbar Save SaveSaves the current script
Toolbar Save All Save AllSaves all open scripts
rk_witcher_script_studio_12. View HistoryTBC
Toolbar Undo UndoReverses the last edit action
Toolbar Redo RedoReverses the last undo action
rk_witcher_script_studio_15. CutCuts the selected text from the document and copies it to the clipboard
Toolbar Copy CopyCopies the selected text to the clipboard
Toolbar Paste PasteInserts the contents of the clipboard into the current document at the insertion point. Any selected text will be replaced.
Toolbar Search FindDisplays the Find & Replace form and preselects the Current document option in the Files to check section. Any text that was selected in the current document will be used to populate the Find what field.
Toolbar Reload Scripts Reload ScriptsTODO
Toolbar Continue ContinueContinue execution of the game
Toolbar Step Over Step OverStep over the current statement
Toolbar Step Into Step IntoStep into the current function
Toolbar Step Out Step OutStep out of the current function
Toolbar Connect To Running Game Connect To GameConnect to the game or REDkit: World Editor
Toolbar Gamer Server Connect To Game HostConnect to a defined host or define a new host.
rk_witcher_script_studio_26. Profile Function CallsTODO
rk_witcher_script_studio_27. Profile Function Calls (Continuous Mode)TODO
Toolbar Properties PropertiesShows the unfiltered properites in the Locals panel


Solution Explorer







The Solution Explorer displays all the directories and script files in the solution, i.e. that are available to use in the REDkit: World Editor and/or The Witcher 2 game. The directories and files are displayed in a tree structure relative to the solution's root path. For a normal installation this is The Witcher 2 Root\bin\scripts\.

It is possible to add directories and add or remove files through the Solution Explorer or through the file system (using the Rescan function) however it is only possible to remove directories from the solution through the file system.

Right clicking on the Solution node or a directory node displays the following context menu options:
 
 
 
 

  • Add File: TODO
  • Add Directory: TODO
  • Rescan: TODO






Right clicking on a file (i.e. script) node displays the following context menu options:
 
 
 
 

  • Delete: TODO

Panels


Bookmarks


  • TODO: displays a list of bookmarks in the current solution; double clicking on an entry will display that script (opening if necessary) and scroll to the appropriate line. Bookmarks are not saved.

Breakpoints


  • TODO: displays a list of breakpoints in the current solution; double clicking on an entry will display that script (opening if necessary) and scroll to the appropriate line. Breakpoints are not saved.

Callstack


  • TODO: once I have debugging working!

Console


  • TODO: cls works!

Find results


  • TODO: displays the results of a "Find All" (see above), double clicking on an entry will display that script (opening if necessary) and scroll to the appropriate line.

Locals


  • TODO: once I have debugging working!

Ouput


  • TODO: displays a greeting message when started; displays output from "Reload all Scripts"; is there a script function debug.writeline or println or log etc.?

Editor Pane


  • TODO: information about editor pane and tabbed documents; both scripts and profilers are displayed in this pane. Context menu "Close all but this".

See Also