5acc2ea3a2
fix `Arg::allow_invalid_utf8` clap error |
||
---|---|---|
.. | ||
src | ||
tests | ||
Cargo.toml | ||
creature.png | ||
Inconsolata-Regular.ttf | ||
README.md | ||
snippet-ideas.md |
🚧 Work In Progress 🚧
The editor is a work in progress, only a limited subset of Roc expressions are currently supported.
Unlike most editors, we use projectional or structural editing to edit the Abstract Syntax Tree directly. This will allow for cool features like excellent auto-complete, refactoring and never needing to format your code.
Getting started
- Install the compiler, see here.
- Run the following from the roc folder:
cargo run edit
Troubleshooting
If you encounter problems with integrated graphics hardware, install mesa-vulkan-drivers
and vulkan-tools
.
If you encounter an error like gfx_backend_vulkan ... Failed to detect any valid GPUs in the current config ...
make sure the correct graphics card drivers are installed. On ubuntu sudo ubuntu-drivers autoinstall
can resolve the problem.
If the error persists, take a look here to see if your GPU supports vulkan.
Use of OpenGL instead of vulkan should be available in several months.
Make sure to create an issue if you encounter any problems not listed above.
Inspiration
We thank the following open source projects in particular for inspiring us when designing the Roc editor:
How does it work?
To take a look behind the scenes, open the editor with ./roc edit
or cargo run edit
and press F11.
This debug view shows important data structures that can be found in editor/src/editor/mvc/ed_model.rs
.
Add or delete some code to see how these data structures are updated.
From roc to render:
./roc edit
orcargo run edit
is first handled incli/src/main.rs
, from there the editor's launch function is called (editor/src/editor/main.rs
).- In
run_event_loop
we initialize the winit window, wgpu, the editor's model(EdModel
) and start the rendering loop. - The
ed_model
is filled in part with data obtained by loading and typechecking the roc file with the same function (load_and_typecheck
) that is used by the compiler. ed_model
also contains anEdModule
, which holds the parsed abstract syntax tree (AST).- In the
init_model
function:- The AST is converted into a tree of
MarkupNode
. The different types ofMarkupNode
are similar to the elements/nodes in HTML. A line of roc code is represented as a nestedMarkupNode
containing mostly textMarkupNode
s. The linefoo = "bar"
is represented as three textMarkupNode
; representingfoo
,=
andbar
. Multiple lines of roc code are represented as nestedMarkupNode
that contain other nestedMarkupNode
. CodeLines
holds aVec
ofString
, each line of code is aString
. When saving the file, the content ofCodeLines
is written to disk.GridNodeMap
maps every position of a char of roc code to aMarkNodeId
, for easy interaction with the caret.
- The AST is converted into a tree of
- Back in
editor/src/editor/main.rs
we convert theEdModel
toRenderedWgpu
by callingmodel_to_wgpu
. - The
RenderedWgpu
is passed to theglyph_brush
to draw the characters(glyphs) on the screen.
Important files
To understand how the editor works it is useful to know the most important files:
- editor/src/editor/main.rs
- editor/src/editor/mvc/ed_update.rs
- editor/src/editor/mvc/ed_model.rs
- editor/src/editor/mvc/ed_view.rs
- editor/src/editor/render_ast.rs
- editor/src/editor/render_debug.rs
Important folders/files outside the editor folder:
- code_markup/src/markup/convert
- code_markup/src/markup/nodes.rs
- ast/src/lang/core/def
- ast/src/lang/core/expr
- ast/src/lang/core/ast.rs
- ast/src/lang/env.rs
Contributing
We welcome new contributors ❤️ and are happy to help you get started. Check CONTRIBUTING.md for more info.