Skip to content

Chunnyluny-RimWorld-Modding/rwxml-language-server

 
 

Repository files navigation

RWXML Language Server

provides various IDE functionalities, as VSCode Extension

Install (if you're using vscode first time?)

Check how-to

FAQ

Check FAQ

features

  • Custom syntax highlighting
  • Basic completion snippets.
  • Real time code analysis.
  • Code Completion.
  • Go to definition, Go to Reference support.
  • Find all symbol references.
  • find parent / childrenss
  • Symbol rename command.
  • Inheritance Attribute suggestion
  • AlienRace support
  • incremental update & validation
  • Texture preview
  • Texture path suggestion
  • patch operation snippets
  • Cache DLL extracted data

Commands

RWXML: Clear DLL Cache

deletes all DLL extracted cache.

RWXML: Open Cache Directory

opens your cache directory.

Install

VSCode Marketplace (Click)

Configuration

configures RWXML Language Server.

{
  "rwxml.paths.rimWorld": "C:\\...\\common\\RimWorld", // RimWorld/ Directory path.

  // overrides default path / assumed path from rimWorld
  "rwxml.paths.rimWorldData": "C:\\...\\RimWorld\\Data",
  "rwxml.paths.rimWorldManaged": "C:\\...\\RimWorld\\RimWorldWin64_Data\\Managed",
  "rwxml.paths.localMods": "C:\\...\\RimWorld\\Mods",
  "rwxml.paths.workshopMods": "C:\\...\\workshop\\contents\\294100",
  "rwxml.paths.externalMods": [
    "<other-mods-directory-1>",
    "<other-mods-directory-2>",
    // and so on...
  ],

  
  "rwxml.logs.level": "info", // set log level, "info", "warn", "error", "debug", "silly"

  "rwxml.codeHighlighting.enabled": true, // manages code highlighting. fine-grained control is not implemented yet
  
  "rwxml.diagnostics.enabled": true, // manages code diagnostics.
}

Default Paths

this extension requires RimWorld DLL, RimWorld Core to operate. it scans Workshop/Local Mod Directory to support external mods.

the path for these resources are below:

RimWorld DLL

  • windows: C:\Program files (x86)\Steam\steamapps\common\rimworld\RimWorldWin64_Data\Managed
  • darwin(macos): Library/Application Support/Steam/steamapps/common/RimWorld/RimWorldMac.app/Contents/Resources/Data/Managed

RimWorld Core

  • windows: C:\\Program Files (x86)\\Steam\\steamapps\\common\\RimWorld\\Data
  • darwin(macos): Library/Application Support/Steam/Steamapps/common/RimWorld/RimWorldMac.app/Data

Local Mod Directory

  • windows: C:\\Program Files (x86)\\Steam\\steamapps\\common\\RimWorld\\Mods
  • darwin(macos): Library/Application Support/Steam/Steamapps/common/RimWorld/RimWorldMac.app/Mods

Workshop Directory

  • windows: C:\\Program Files (x86)\\Steam\\steamapps\\workshop\\content\\294100
  • darwin(macos): Library/Application Support/Steam/Steamapps/workshop/content/294100

Setup devlopment environment

  1. clone repository locally
#!/bin/bash
git clone https://github.com/zzzz465/rwxml-language-server
  1. install project
#!/bin/bash
# cwd: repository root
pnpm install
  1. build project
#!/bin/bash
# cwd: repository root
pnpm run watch # this will build project and watch project changes
  1. open /vsc-extension with VSCode, and launch Launch Client

About

clone to use the tool autocomplete and debug your RimWorld XML

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • TypeScript 90.0%
  • C# 7.3%
  • JavaScript 2.7%