aboutsummaryrefslogtreecommitdiffstats
path: root/src/de/mud/terminal/vt320.java
Commit message (Collapse)AuthorAgeFilesLines
* Remove instances of System.out and System.errKenny Root2009-05-301-117/+200
| | | | git-svn-id: https://connectbot.googlecode.com/svn/trunk/connectbot@239 df292f66-193f-0410-a5fc-6d59da041ff2
* Fix scrolling bug when at the bottom and bottomMargin is setKenny Root2009-01-281-33/+36
|
* Some call optimizations to make terminal emulation fasterKenny Root2009-01-161-34/+54
| | | | | | * Instead of making a String and then breaking it down again, pass in our Character array * Don't bother checking the type of a Character below or equal to 0x7F because it's ASCII * We don't always need to know the bottom and top margins, so only call getTopMargin() or getBottomMargin() when we do
* Restore DEC special for GR sets as wellKenny Root2009-01-041-2/+0
|
* Terminal emulation fixesKenny Root2009-01-041-42/+19
| | | | | | * Only display DEC special graphics when it's in the correct range (GL only) * Make sure terminal reset is consistent * Change the default graphics set to be compliant with ANSI level 1 (all ASCII, basically) instead of 0
* Disable DEC special characters for nowKenny Root2008-12-311-0/+4
| | | | | | * It appears that DEC special characters were enabled when they shouldn't be * Specification for VT emulation should be reviewed to determine when to enable * Precomposed Unicode characters should work better now
* Add (limited) support for switching encodings on host connections; a more ↵Kenny Root2008-12-161-1/+20
| | | | | | | radical change is needed to be fully Unicode. * This only supports Unicode characters that can be precomposed for now (e.g., no combining marks or other zero-width characters) which will break a lot of languages. * This does not support full-width characters (e.g., Asian languages)
* Add extra bit for default color supportKenny Root2008-12-121-8/+8
|
* * Support more xterm attributes ESC [90m - 97m and 100m - 107mKenny Root2008-12-121-27/+41
| | | | | | * Move onus of color tracking to VDUDisplay implementors * Fix some indentation to match mud.de style * Add color resets to "ESC c" functionality
* Add in xterm-style 256 color supportKenny Root2008-12-121-3/+46
|
* Duplicate ESC-c reset functionality in vt320.reset() (perhaps should be inlined)Kenny Root2008-11-241-0/+5
|
* * Respond to channel EOF instead of exit status.Kenny Root2008-11-191-2/+7
| | | | * Make ESC-c clear the buffer like other terminal emulators.
* * Support PINE's style of highlighting menu items with SGR italicsKenny Root2008-11-101-0/+6
|
* Okay, you're not going to believe this:Kenny Root2008-10-301-6/+2
| | | | * Fixed yet another error with scroll regions; this time with cursor movement into them.
* * Fix bug introduced that makes lines scroll too much. I think the last two ↵Kenny Root2008-10-301-1/+1
| | | | revisions fix the real bug that this was covering up.
* * Fix delete line bug in emulation that was messing up irssi clock updates.Kenny Root2008-10-301-7/+3
| | | | * Remove some debugging statements that snuck into the code.
* * Fix scrolling region setting bug.Kenny Root2008-10-301-2/+20
| | | | * Ignore xterm-style title updates (we could use this for the TerminalManager title, actually).
* * Fix breaking out of scroll regions when the line wraps.Kenny Root2008-10-291-1/+7
|
* * moved all terminal logic into a Service backend. connections are held in ↵Jeffrey Sharkey2008-08-271-4/+7
| | | | | | | | | | | | | | | | | | place by a TerminalBridge, which keeps the connection alive and renders the screen to a bitmap if provided. a Console creates TerminalViews for each bridge while it is active, and handles panning back/forth between them. * volume up/down controls will change console font size * extended trilead library to support resizePTY() command * left/right screen gestures will pan between various open consoles * up/down screen gestures on right-half will look through scrollback buffer * up/down screen gestures on left-half will trigger pageup/down keys * broke ctrl+ keyboard mapping, will need to bring back over from older code
* Restore Marcus Meißner's name from clobberingKenny Root2008-08-261-2/+2
|
* * Fixing an off-by-one error in vt320 for ANSI 'U' escape sequences.Was ↵Jeffrey Sharkey2008-08-241-2/+4
| | | | | | | | | | | messing up scrollback on irssi sessions. * Filling buffer will ' ' (spaces) instead of null characters. Android's MONOSPACE font doesn't render the null correctly; might be trying to interpret them as unicode. Was messing up indentation on rtorrent sessions. * Removed SoftFont from redraw() and sped things up immensely. Everything seems to still render fine, was there a reason we needed the SoftFont? * Corrected buffer.update[] handling so we aren't repainting entire screen each time; much faster now. * Added OpenGL rendering by default, but doesn't change speed on emulator.
* Merging back in the jcterm branchKenny Root2007-11-211-0/+2722