2017-11-04 07:03:53 +01:00
|
|
|
/***********************************************************************
|
|
|
|
* ftermbuffer.cpp - Buffer for virtual terminal strings *
|
|
|
|
* *
|
2020-07-08 21:32:47 +02:00
|
|
|
* This file is part of the FINAL CUT widget toolkit *
|
2017-11-04 07:03:53 +01:00
|
|
|
* *
|
2020-02-02 22:34:27 +01:00
|
|
|
* Copyright 2017-2020 Markus Gans *
|
2017-11-04 07:03:53 +01:00
|
|
|
* *
|
2020-07-08 21:32:47 +02:00
|
|
|
* FINAL CUT is free software; you can redistribute it and/or modify *
|
|
|
|
* it under the terms of the GNU Lesser General Public License as *
|
|
|
|
* published by the Free Software Foundation; either version 3 of *
|
2017-11-04 07:03:53 +01:00
|
|
|
* the License, or (at your option) any later version. *
|
|
|
|
* *
|
2020-07-08 21:32:47 +02:00
|
|
|
* FINAL CUT is distributed in the hope that it will be useful, but *
|
|
|
|
* WITHOUT ANY WARRANTY; without even the implied warranty of *
|
2017-11-04 07:03:53 +01:00
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
|
|
|
|
* GNU Lesser General Public License for more details. *
|
|
|
|
* *
|
|
|
|
* You should have received a copy of the GNU Lesser General Public *
|
|
|
|
* License along with this program. If not, see *
|
|
|
|
* <http://www.gnu.org/licenses/>. *
|
|
|
|
***********************************************************************/
|
2017-07-12 01:16:57 +02:00
|
|
|
|
2020-02-19 21:59:13 +01:00
|
|
|
#include <algorithm>
|
2017-09-11 03:06:02 +02:00
|
|
|
#include <string>
|
|
|
|
#include <vector>
|
|
|
|
|
2019-07-21 23:31:21 +02:00
|
|
|
#include "final/fc.h"
|
|
|
|
#include "final/fcolorpair.h"
|
|
|
|
#include "final/fstring.h"
|
2020-02-16 00:01:36 +01:00
|
|
|
#include "final/fstyle.h"
|
2017-09-17 21:32:46 +02:00
|
|
|
#include "final/ftermbuffer.h"
|
2019-07-21 23:31:21 +02:00
|
|
|
#include "final/fvterm.h"
|
|
|
|
#include "final/ftypes.h"
|
2017-07-12 01:16:57 +02:00
|
|
|
|
2018-09-20 23:59:01 +02:00
|
|
|
namespace finalcut
|
|
|
|
{
|
2017-07-12 01:16:57 +02:00
|
|
|
|
|
|
|
//----------------------------------------------------------------------
|
|
|
|
// class FTermBuffer
|
|
|
|
//----------------------------------------------------------------------
|
2020-11-24 21:06:39 +01:00
|
|
|
FTermBuffer::~FTermBuffer() noexcept = default; // destructor
|
|
|
|
|
2017-07-12 01:16:57 +02:00
|
|
|
|
|
|
|
// public methods of FTermBuffer
|
|
|
|
//----------------------------------------------------------------------
|
2020-10-04 00:59:21 +02:00
|
|
|
FString FTermBuffer::toString() const
|
2017-07-12 01:16:57 +02:00
|
|
|
{
|
2019-09-28 03:13:06 +02:00
|
|
|
std::wstring wide_string{};
|
|
|
|
wide_string.reserve(data.size());
|
2020-02-19 21:59:13 +01:00
|
|
|
std::transform ( data.begin()
|
|
|
|
, data.end()
|
|
|
|
, std::back_inserter(wide_string)
|
2020-04-19 20:38:52 +02:00
|
|
|
, [] (const FChar& fchar)
|
2020-02-19 21:59:13 +01:00
|
|
|
{
|
2020-11-14 20:59:26 +01:00
|
|
|
return fchar.ch[0];
|
2020-02-19 21:59:13 +01:00
|
|
|
}
|
|
|
|
);
|
2020-05-02 00:07:35 +02:00
|
|
|
return wide_string;
|
2017-07-12 01:16:57 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
//----------------------------------------------------------------------
|
2019-09-28 03:13:06 +02:00
|
|
|
int FTermBuffer::write (const FString& string)
|
2017-07-12 01:16:57 +02:00
|
|
|
{
|
2019-09-28 03:13:06 +02:00
|
|
|
assert ( ! string.isNull() );
|
2020-10-04 00:59:21 +02:00
|
|
|
const auto len = int(string.getLength());
|
2017-07-12 01:16:57 +02:00
|
|
|
|
2019-09-28 03:13:06 +02:00
|
|
|
for (auto&& c : string)
|
2017-07-12 01:16:57 +02:00
|
|
|
{
|
2020-12-03 10:43:20 +01:00
|
|
|
FChar nc{FVTerm::getAttribute()}; // next character
|
2020-11-14 20:59:26 +01:00
|
|
|
nc.ch[0] = c;
|
|
|
|
nc.attr.byte[2] = 0;
|
|
|
|
nc.attr.byte[3] = 0;
|
2019-09-28 03:13:06 +02:00
|
|
|
getColumnWidth(nc); // add column width
|
2020-12-03 10:43:20 +01:00
|
|
|
data.emplace_back(nc);
|
2017-07-12 01:16:57 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
return len;
|
|
|
|
}
|
|
|
|
|
|
|
|
//----------------------------------------------------------------------
|
2019-09-28 03:13:06 +02:00
|
|
|
int FTermBuffer::write (wchar_t ch)
|
2017-07-12 01:16:57 +02:00
|
|
|
{
|
2020-12-03 10:43:20 +01:00
|
|
|
FChar nc{FVTerm::getAttribute()}; // next character
|
2020-11-14 20:59:26 +01:00
|
|
|
nc.ch[0] = ch;
|
2019-09-28 03:13:06 +02:00
|
|
|
getColumnWidth(nc); // add column width
|
2017-08-20 17:30:30 +02:00
|
|
|
nc.attr.bit.no_changes = false;
|
|
|
|
nc.attr.bit.printed = false;
|
2020-12-03 10:43:20 +01:00
|
|
|
data.emplace_back(nc);
|
2017-07-12 01:16:57 +02:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2020-02-16 00:01:36 +01:00
|
|
|
//----------------------------------------------------------------------
|
2020-07-12 15:25:21 +02:00
|
|
|
void FTermBuffer::write (const FStyle& style) const
|
2020-02-16 00:01:36 +01:00
|
|
|
{
|
2020-07-12 15:25:21 +02:00
|
|
|
FAttribute attr = style.getStyle();
|
2020-02-16 00:01:36 +01:00
|
|
|
|
|
|
|
if ( attr == 0 )
|
|
|
|
FVTerm::setNormal();
|
|
|
|
else if ( (attr & fc::Bold) != 0 )
|
|
|
|
FVTerm::setBold();
|
|
|
|
else if ( (attr & fc::Dim) != 0 )
|
|
|
|
FVTerm::setDim();
|
|
|
|
else if ( (attr & fc::Italic) != 0 )
|
|
|
|
FVTerm::setItalic();
|
|
|
|
else if ( (attr & fc::Underline) != 0 )
|
|
|
|
FVTerm::setUnderline();
|
|
|
|
else if ( (attr & fc::Blink) != 0 )
|
|
|
|
FVTerm::setBlink();
|
|
|
|
else if ( (attr & fc::Reverse) != 0 )
|
|
|
|
FVTerm::setReverse();
|
|
|
|
else if ( (attr & fc::Standout) != 0 )
|
|
|
|
FVTerm::setStandout();
|
|
|
|
else if ( (attr & fc::Invisible) != 0 )
|
|
|
|
FVTerm::setInvisible();
|
|
|
|
else if ( (attr & fc::Protected) != 0 )
|
|
|
|
FVTerm::setProtected();
|
|
|
|
else if ( (attr & fc::CrossedOut) != 0 )
|
|
|
|
FVTerm::setCrossedOut();
|
|
|
|
else if ( (attr & fc::DoubleUnderline) != 0 )
|
|
|
|
FVTerm::setDoubleUnderline();
|
|
|
|
else if ( (attr & fc::Transparent) != 0 )
|
|
|
|
FVTerm::setTransparent();
|
|
|
|
else if ( (attr & fc::ColorOverlay) != 0 )
|
|
|
|
FVTerm::setColorOverlay();
|
|
|
|
else if ( (attr & fc::InheritBackground) != 0 )
|
|
|
|
FVTerm::setInheritBackground();
|
|
|
|
}
|
|
|
|
|
2019-01-30 12:17:48 +01:00
|
|
|
//----------------------------------------------------------------------
|
2020-07-12 15:25:21 +02:00
|
|
|
void FTermBuffer::write (const FColorPair& pair) const
|
2019-01-30 12:17:48 +01:00
|
|
|
{
|
2019-09-04 23:57:31 +02:00
|
|
|
FVTerm::setColor(pair.getForegroundColor(), pair.getBackgroundColor());
|
2019-01-30 12:17:48 +01:00
|
|
|
}
|
|
|
|
|
2017-07-12 01:16:57 +02:00
|
|
|
|
2017-08-06 17:02:19 +02:00
|
|
|
// FTermBuffer non-member operators
|
2017-07-12 01:16:57 +02:00
|
|
|
//----------------------------------------------------------------------
|
2019-10-08 04:37:19 +02:00
|
|
|
FTermBuffer::FCharVector& operator << ( FTermBuffer::FCharVector& termString
|
|
|
|
, const FTermBuffer& buf )
|
2017-08-06 17:02:19 +02:00
|
|
|
{
|
|
|
|
if ( ! buf.data.empty() )
|
|
|
|
termString.assign(buf.data.begin(), buf.data.end());
|
|
|
|
|
|
|
|
return termString;
|
|
|
|
}
|
2018-09-20 23:59:01 +02:00
|
|
|
|
|
|
|
} // namespace finalcut
|