aboutsummaryrefslogtreecommitdiff
path: root/src
Commit message (Collapse)AuthorAge
...
* Use "invert" cursor instead of drawing blockJoe Wilm2016-07-04
| | | | | The cursor now matches perfectly cell widths and actually shows the character underneath.
* Fix bug with scrolling regionsJoe Wilm2016-07-04
| | | | | insert_blank_lines and delete_lines were requesting scrolls in wrong directions since a recent refactor to use strongly typed directions.
* Add some printing for unhandled non-CSI escapesJoe Wilm2016-07-04
|
* Fix some debug printing in termJoe Wilm2016-07-04
| | | | | | A few instances of println! are replaced with debug_println! as to be excluded in release builds. Unimplemented methods are now tagged with [unimlemented] in the format string.
* Fix resizing on macOSJoe Wilm2016-07-04
| | | | | terminal.resize was not being called. Additionally, it was being called too much on other platforms (resize events were completely coalesced).
* Correctly handle Backspace and DeleteJoe Wilm2016-07-04
| | | | | | The default characters sent for this were incorrect. Delete now sends xterm-compatible escapes (dch1, kdch1), and Backspace sends the delete code 0x7f.
* Add support for application keypad modeJoe Wilm2016-07-04
| | | | Nothing uses it yet, but it is tracked in the terminal state.
* Term::ansi::Handler methods use debug_println!Joe Wilm2016-07-04
| | | | | | debug_println! statements are compiled out in release builds. This allows us to see what the terminal is sending in debug builds while having good perf in release builds.
* Merge renderer and input handling threadsJoe Wilm2016-07-04
| | | | | | | The extra render thread just resulted in extra complexity. There were also some startup bugs not resolved with that architecture. Finally, there was no noticeable performance boost from having the additional thread.
* Fix transpose bug with ansi gotoJoe Wilm2016-07-04
| | | | | The line/column were swapped. Strong types are great, but we still have to be careful at the lowest level before they take effect!
* Make ansi::Handler methods strongly typedJoe Wilm2016-07-03
| | | | | ansi::Handler methods dealing with lines or columns now accept a `Line` or `Column` where appropriate instead of ambiguous `i64`.
* Remove ansi::DebugHandlerJoe Wilm2016-07-03
| | | | | DebugHandler was a helper during initial development of the parser. It's not used any longer.
* Make ansi::TermInfo strongly typedJoe Wilm2016-07-03
| | | | | The rows function has been renamed to lines, and it now returns `Line`. The cols function correspondingly returns `Column`.
* Move ::grid::index to ::indexJoe Wilm2016-07-03
| | | | | | | | The grid and term modules already rely on the index types, and ansi is about to be updated with strongly typed APIs. Since Cursor, Line, and Column are fundamental to the code in several modules, namespacing them under one of them seems less correct than a module that stands by itself.
* Remove now unused CursorExtJoe Wilm2016-07-03
| | | | | Since the addition of `Line` and `Column`, the CursorExt methods were essentially unused.
* Mark ansi::Handler methods for Term with #[inline]Joe Wilm2016-07-03
| | | | | | | | The original idea with ansi::Handler and the ansi::Parser was that the Parser being generic over Handler could result in code equivalent to a hand written parser + handler from a method dispatch perspective. Proper inlining is required to achieve that, so this marks the ansi::Handler methods appropriately.
* Grid API is now generic and strongly typedJoe Wilm2016-07-03
| | | | | | | | | | | | | | | | | | The Grid no longer knows about a `Cell` and is instead generic. The `Cell` type is coupled to the `term` module already, and it's been moved there to reflect the strong relationship. Grid APIs previously accepted `usize` for many arguments. If the caller intended rows to be columns, but the function accepted them in reverse, there would be no compiler error. Now there is, and this should prevent such bugs from entering the code. The Grid internals grew significantly to accomodate the strongly typed APIs. There is now a `grid::index` module which defines Cursor, Line, and Column. The Grid APIs are all based on these types now. Indexing for Ranges proved to be somewhat awkward. A new range had to be constructed in the implementation. If the optimizer can't figure out what's going on in that case, the ranges may not be a zero-cost abstraction.
* Move WriteNotifier type into input moduleJoe Wilm2016-07-02
| | | | | | It's a generic impl of `input::Notify` for `Write` types; as such, it seems completely reasonable to include in the input module. Moving it also serves to declutter main.
* Improve ergonomics of iterating on grid::RowJoe Wilm2016-07-02
| | | | | Iterating on grid::Row types no longer requires calls to iter() or iter_mut().
* Implement Term::erase_charsJoe Wilm2016-07-01
| | | | | | | | | | Fixes last known issue with htop. I think this implementation might not be correct, but I don't yet understand the difference between erasing and deleting (I imagine it's the difference between graphics state vs grid state). Will probably need to circle back here. Adds all range indexing operations to rows. Some were needed for the erase_chars impl, and the rest are there for fully generality.
* Fix sign error with scroll directionsJoe Wilm2016-07-01
| | | | This resolves an issue with the htop process list becoming corrupt.
* Improve pty reading and renderer synchronizationJoe Wilm2016-07-01
| | | | | | | | | | | The pty read thread now runs the parser and directly updates the terminal in the same thread. This obviates the need for a channel which sends every char read from the pty; this is a huge performance boon. Synchronization between the updater and the renderer is now achieved with a PriorityMutex. Previously, an atomic bool was (poorly) used to request the lock on terminal. The PriorityMutex is dead simple to use, and it _Just Works_.
* Vendor upcoming Utf8Chars iterator from libstdJoe Wilm2016-06-30
| | | | | | | | | | | The upcoming Utf8Chars iterator was vendored from a libstd PR. The iterator works on BufRead types which is critical for improving performance. A small modification was made where the number of unused bytes is included with Utf8CharsError::IncompleteUtf8. The pty reader thread was updated to use this new type. Next steps will be moving the parsing there and either sending parse results in batches or updating the terminal directly from that thread.
* Add config fileJoe Wilm2016-06-30
| | | | | | | | | Configuration may now be specified in either `$HOME/.alacritty.yml` or `$HOME/.config/alacritty.yml`. See `alacritty.yml` in the repository root for an example. When a configuration file cannot be located, a default configuration is used.
* Add license headers to source filesJoe Wilm2016-06-29
|
* Fix resizing on macOSJoe Wilm2016-06-29
| | | | | | | The resize callback is the only way to perform live resizing on macOS. A callback is provided, and a static variable is used to provide a Sender to that function so that resize events may be processed in the usual way.
* Implement terminal resizingJoe Wilm2016-06-29
| | | | | | | | | | | | | | The resize event is received from glutin on the update thread, but the renderer needs to be informed as well for updating the viewport and projection matrix. This is achieved with an mpsc::channel. To support resizing, the grid now offers methods for growing and shrinking, and there are several implementations available for clear_region based on different Range* types. Core resize logic is all in Term::resize. It attempts to keep as much context as possible when shinking the window. When growing, it's basically just adding rows.
* Refactor Tty and Grid creation into Term::newJoe Wilm2016-06-28
| | | | | | | This moves more logic out of main() and prepares the Term type to handle resizing. By providing all size data to Term, it is now possible to implement a resize function there which handles all resizing logic save for the rendering subsystem.
* Enable vsyncJoe Wilm2016-06-27
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The input/pty processing loop previously consumed input on a channel and hit the rendering when the queue became empty. This had a couple of problems 1. It was possible to be overwhelmed with input and not give the renderer an opportunity to update the screen. This gave the appearance of locking up. 2. Multiple frames could be rendered for a single vblank (redundant work) 3. Open loop rendering would inevitably have buffer swapping out of sync with vblanks and visual tearing would occur. This commit enables vsync on the glutin window. The rendering was all moved onto a separate thread from input/pty processing to support vsync. However, the rendering thread must be 100% synchronized with the updater thread. There's now a Mutex on the Term, and an atomic bool to ask the input/pty processing to yield to the renderer. One aspect of this feature that hasn't been worked out is how to limit the frame rate. Currently, it just free runs at the screen refresh rate. The initial attempt here included the input/pty processor holding a lock while waiting for input. This *almost* worked, but there was a (not uncommon) edge case where the terminal state was "dirty" but the renderer was not ready to draw. Instead of blocking on the refresh issue, it's being punted to after an MVP is released. The overhead of drawing at 60Hz was profiled to be ~5% CPU usage, and this is deemed acceptable for an MVP.
* Function keys send escape sequencesJoe Wilm2016-06-23
| | | | | This doesn't currently handle any of the modifiers, but it does mean applications like `htop` can be used.
* Implement special input handlingJoe Wilm2016-06-23
| | | | | | | | | | | | | | | | There's a number of keys/combinations that should emit escape sequences to the PTY when triggered. This commit adds a framework to support that. The input::Processor is a type which tracks state of modifier keys. When special keys (like arrow, function) are detected, the processor pulls up a list of candidate escapes to send, and picks the first one based on terminal mode and active modifier keys. The input::Processor is generic over the thing receiving the escape sequences, the input::Notify type. Included is a wrapper for `&mut io::Write` which implements input::Notify and is currently used to connect the processor to the PTY stream. This added handling of the APP_CURSOR mode which changes affects input processing.
* Fix bug handling ansi mode sequencesJoe Wilm2016-06-23
| | | | | | | The sense of set_mode and unset_mode was inverted. The TextCursor/ShowCursor mode depended on the incorrect behavior, and that was fixed as well. TextCursor was renamed to ShowCursor to be perfectly clear on the intent.
* Fix a few compiler warningsJoe Wilm2016-06-14
|
* Add support for macOSJoe Wilm2016-06-14
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Alacritty now runs on macOS using CoreText for font rendering. The font rendering subsystems were moved into a separate crate called `font`. The font crate provides a unified (albeit limited) API which wraps CoreText on macOS and FreeType/FontConfig on other platforms. The unified API differed slightly from what the original Rasterizer for freetype implemented, and it was updated accordingly. The cell separation properties (sep_x and sep_y) are now premultiplied into the cell width and height. They were previously passed through as uniforms to the shaders; removing them prevents a lot of redundant work. `libc` has some differences between Linux and macOS. `__errno_location` is not available on macOS, and the `errno` crate was brought in to provide a cross-platform API for dealing with errno. Differences in `openpty` were handled by implementing a macOS specific version. It would be worth investigating a way to unify the implementations at some point. A type mismatch with TIOCSCTTY was resolved with a cast. Differences in libc::passwd struct fields were resolved by using std::mem::uninitialized instead of zeroing the struct ourselves. This has the benefit of being much cleaner. The thread setup had to be changed to support both macOS and Linux. macOS requires that events from the window be handled on the main thread. Failure to do so will prevent the glutin window from even showing up! For this reason, the renderer and parser were moved to their own thread, and the input is received on the main thread. This is essentially reverse the setup prior to this commit. Renderer initialization (and thus font cache initialization) had to be moved to the rendering thread as well since there's no way to make_context(null) with glx on Linux. Trying to just call make_context a second time on the rendering thread had resulted in a panic!.
* Fix backspaceJoe Wilm2016-06-09
| | | | | There's never a count associated with this, and it has been removed from the Handler method to reflect as much.
* Fix all trivial compiler warningsJoe Wilm2016-06-09
| | | | | | | | | | | Of note are the `ansi` and `grid` modules becoming public. There are several bits of unused code in each of these. In the case of `grid`, the unused parts are generally useful, like some indexing implementations. In ansi, there are pieces that will be used once the parser is more complete. In any case, these modules are fairly generic and mostly usable outside of Alacritty. Unused cargo packages were also removed.
* Sort some importsJoe Wilm2016-06-09
|
* Make state updates and rendering event drivenJoe Wilm2016-06-09
| | | | | | | | | | | | | | | | The main thing preventing this system being event driven in the past was input from the keyboard had to be polled separately from pty activity. This commit adds a thread for the window event iterator and sends them on the same channel as pty characters. With that in place, the render loop looks like - Block on 1 available input - Get all remaining available input that won't cause blocking - Render Which means that rendering is only performed on state changes. This obsoleted the need for a `dirty` flag in the Term struct.
* Fix shutdown deadlockJoe Wilm2016-06-08
| | | | | | Calling ::std::process::exit() from the SIGCHLD handler would sometimes deadlock some OpenGL internal shutdown procedure. To resolve this, a flag was added that can be checked with `process_should_exit`.
* Add support for scrolling regionsJoe Wilm2016-06-08
| | | | | | | | | | | | | | | | | | | | | | | | | | | | It's now possible to move around within Vim without the screen becoming corrupt! The ANSI parser now calls a (new) `set_scrolling_region` on the handler when the DECSTBM CSI is received. In order to provide a sensible default in case that the sequence doesn't include arguments, a TermInfo trait was added which currently has methods for inspecting number of rows and columns. This was added as an additional trait instead of being included on Handler since they have semantically different purposes. The tests had to be updated to account for the additional trait bounds. The utilities module now has a `Rotate` trait which is implemented for the built-in slice type. This means that slices and anything derefing to a slice can be rotated. Since VecDeque doesn't support slicing (it's a circular buffer), the grid rows are now held in a Vec to support rotation. For ergomomic access to the grid for scrolling and clearing regions, additional Index/IndexMut implementations were added to the grid::Row type. Finally, a `reset` method was added to `Cell` which properly resets the state to default (instead of just clearing the char). This supports region clearing and also fixed a bug where cell backgrounds would remain after being cleared.
* Handle TEXT_CURSOR modeJoe Wilm2016-06-07
| | | | When the flag is unset, the cursor is not rendered.
* Only draw when terminal state has changedJoe Wilm2016-06-07
| | | | | | | | This is achieved by setting a `dirty` flag when the terminal receives an event that causes visible state to change. The implementation is pretty much crap because most methods know about the flag. Figure out something better later.
* Parse a few more ansi terminal mode commandsJoe Wilm2016-06-07
|
* Handle pty char recv errorsJoe Wilm2016-06-07
| | | | The main loop is now exitted if the char sender hangs up.
* Add named thread for pty readerJoe Wilm2016-06-07
|
* Unwrap some unhandled errorsJoe Wilm2016-06-07
| | | | | | They're still unhandled, but they won't silently pass by anymore. TODO
* Add explicit bounds check when advancing cursorJoe Wilm2016-06-06
|
* Tweak some Grid methodsJoe Wilm2016-06-06
| | | | | | Adds some #[inline] tags, and delegates to internals for num_rows and num_cols. In case these become different than the expected values, this should help to fail sooner.
* Fix bug where there were extra grid rowsJoe Wilm2016-06-06
| | | | Apparently VecDeque::with_capacity is more of a suggestion.
* Terminal sets more attributes on grid CellsJoe Wilm2016-06-06
|