2016-01-05 23:01:17 +08:00
|
|
|
// textthread.cc
|
|
|
|
// 8/24/2013 jichi
|
|
|
|
// Branch IHF/TextThread.cpp, rev 133
|
|
|
|
#ifdef _MSC_VER
|
|
|
|
# pragma warning (disable:4100) // C4100: unreference formal parameter
|
|
|
|
#endif // _MSC_VER
|
|
|
|
|
2018-07-18 05:01:56 +08:00
|
|
|
#include "host.h"
|
2016-01-05 23:01:17 +08:00
|
|
|
#include "textthread.h"
|
2018-07-21 04:26:27 +08:00
|
|
|
#include "../vnrhook/include/const.h"
|
2018-07-21 05:21:35 +08:00
|
|
|
#include "winmutex.h"
|
2016-01-05 23:01:17 +08:00
|
|
|
|
2018-07-18 05:01:56 +08:00
|
|
|
extern HookManager* man;
|
2018-07-19 04:18:43 +08:00
|
|
|
extern HWND dummyWindow;
|
2016-01-05 23:01:17 +08:00
|
|
|
|
2018-07-19 13:44:44 +08:00
|
|
|
#define TT_LOCK CriticalSectionLocker ttLocker(ttCs) // Synchronized scope for accessing private data
|
2018-07-18 05:01:56 +08:00
|
|
|
|
2018-07-19 04:18:43 +08:00
|
|
|
TextThread::TextThread(ThreadParameter tp, unsigned int threadNumber, unsigned int splitDelay) :
|
|
|
|
storage(),
|
|
|
|
sentenceBuffer(),
|
|
|
|
status(0),
|
|
|
|
threadNumber(threadNumber),
|
|
|
|
splitDelay(splitDelay),
|
|
|
|
output(nullptr),
|
|
|
|
tp(tp)
|
|
|
|
{
|
|
|
|
InitializeCriticalSection(&ttCs);
|
2018-07-18 05:01:56 +08:00
|
|
|
}
|
2016-01-05 23:01:17 +08:00
|
|
|
|
2018-07-19 04:18:43 +08:00
|
|
|
TextThread::~TextThread()
|
2016-01-05 23:01:17 +08:00
|
|
|
{
|
2018-07-19 04:18:43 +08:00
|
|
|
TT_LOCK;
|
|
|
|
DeleteCriticalSection(&ttCs);
|
2016-01-05 23:01:17 +08:00
|
|
|
}
|
2018-06-11 07:15:05 +08:00
|
|
|
|
2016-01-05 23:01:17 +08:00
|
|
|
void TextThread::Reset()
|
|
|
|
{
|
2018-07-19 04:18:43 +08:00
|
|
|
TT_LOCK;
|
|
|
|
storage.clear();
|
|
|
|
}
|
|
|
|
|
2018-07-12 08:18:04 +08:00
|
|
|
void TextThread::AddSentence()
|
2016-01-05 23:01:17 +08:00
|
|
|
{
|
2018-07-19 04:18:43 +08:00
|
|
|
TT_LOCK;
|
2018-07-12 08:18:04 +08:00
|
|
|
std::wstring sentence;
|
|
|
|
if (status & USING_UNICODE)
|
2018-05-25 16:34:40 +08:00
|
|
|
{
|
2018-07-12 08:18:04 +08:00
|
|
|
sentence = std::wstring((wchar_t*)sentenceBuffer.data(), sentenceBuffer.size() / 2);
|
2018-05-25 16:34:40 +08:00
|
|
|
}
|
|
|
|
else
|
2018-06-12 07:49:28 +08:00
|
|
|
{
|
2018-07-12 08:18:04 +08:00
|
|
|
wchar_t* converted = new wchar_t[sentenceBuffer.size()];
|
|
|
|
sentence = std::wstring(converted, MultiByteToWideChar(932, 0, sentenceBuffer.data(), sentenceBuffer.size(), converted, sentenceBuffer.size()));
|
|
|
|
delete[] converted;
|
2018-06-12 07:49:28 +08:00
|
|
|
}
|
2018-07-21 05:21:35 +08:00
|
|
|
AddSentence(sentence);
|
2018-07-12 08:18:04 +08:00
|
|
|
sentenceBuffer.clear();
|
2016-01-05 23:01:17 +08:00
|
|
|
}
|
2018-05-25 16:34:40 +08:00
|
|
|
|
2018-07-12 08:18:04 +08:00
|
|
|
void TextThread::AddSentence(std::wstring sentence)
|
|
|
|
{
|
2018-07-19 04:18:43 +08:00
|
|
|
TT_LOCK;
|
2018-07-13 05:47:22 +08:00
|
|
|
sentence.append(L"\r\n");
|
2018-07-21 05:21:35 +08:00
|
|
|
if (output) sentence = output(this, sentence);
|
2018-07-19 04:18:43 +08:00
|
|
|
storage.append(sentence);
|
2016-01-05 23:01:17 +08:00
|
|
|
}
|
|
|
|
|
2018-07-12 08:18:04 +08:00
|
|
|
void TextThread::AddText(const BYTE *con, int len)
|
|
|
|
{
|
2018-07-19 04:18:43 +08:00
|
|
|
TT_LOCK;
|
2018-07-19 12:09:58 +08:00
|
|
|
sentenceBuffer.insert(sentenceBuffer.end(), con, con + len);
|
|
|
|
SetTimer(dummyWindow, (UINT_PTR)this, splitDelay,
|
|
|
|
[](HWND hWnd, UINT uMsg, UINT_PTR idEvent, DWORD dwTime)
|
2018-07-12 08:18:04 +08:00
|
|
|
{
|
|
|
|
KillTimer(hWnd, idEvent);
|
|
|
|
((TextThread*)idEvent)->AddSentence();
|
|
|
|
});
|
|
|
|
}
|
2016-01-05 23:01:17 +08:00
|
|
|
|
|
|
|
// EOF
|