diff options
author | dartraiden <wowemuh@gmail.com> | 2024-02-19 20:13:12 +0300 |
---|---|---|
committer | dartraiden <wowemuh@gmail.com> | 2024-02-19 20:16:52 +0300 |
commit | 2f47988d1ef6672929762fba39fa69ef1b4dfa7a (patch) | |
tree | baa3433b11b1c44ab5a12c919ab004a24d645043 /plugins/NewStory/src/utils.cpp | |
parent | f50885f33f7d1e129d719f06a43cc73518e0ffb1 (diff) |
NewStory:
- add [cX] tag to variables help
- convert sources to CR+LF
Diffstat (limited to 'plugins/NewStory/src/utils.cpp')
-rw-r--r-- | plugins/NewStory/src/utils.cpp | 227 |
1 files changed, 111 insertions, 116 deletions
diff --git a/plugins/NewStory/src/utils.cpp b/plugins/NewStory/src/utils.cpp index fc42f07f43..732728bf0b 100644 --- a/plugins/NewStory/src/utils.cpp +++ b/plugins/NewStory/src/utils.cpp @@ -1,116 +1,111 @@ -/* -Copyright (c) 2005 Victor Pavlychko (nullbyte@sotline.net.ua) -Copyright (C) 2012-24 Miranda NG team (https://miranda-ng.org) - -This program is free software; you can redistribute it and/or -modify it under the terms of the GNU General Public License -as published by the Free Software Foundation version 2 -of the License. - -This program is distributed in the hope that it will be useful, -but WITHOUT ANY WARRANTY; without even the implied warranty of -MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -GNU General Public License for more details. - -You should have received a copy of the GNU General Public License -along with this program. If not, see <http://www.gnu.org/licenses/>. -*/ - -#include "stdafx.h" - -uint32_t toggleBit(uint32_t dw, uint32_t bit) -{ - if (dw & bit) - return dw & ~bit; - return dw | bit; -} - -bool CheckFilter(wchar_t *buf, wchar_t *filter) -{ - // MessageBox(0, buf, filter, MB_OK); - int l1 = (int)mir_wstrlen(buf); - int l2 = (int)mir_wstrlen(filter); - for (int i = 0; i < l1 - l2 + 1; i++) - if (CompareString(LOCALE_USER_DEFAULT, NORM_IGNORECASE, buf + i, l2, filter, l2) == CSTR_EQUAL) - return true; - return false; -} - -int GetFontHeight(const LOGFONTA &lf) -{ - return 2 * abs(lf.lfHeight) * 74 / g_iPixelY; -} - -///////////////////////////////////////////////////////////////////////////////////////// - -struct -{ - wchar_t *pStart, *pEnd; - size_t cbStart, cbEnd; -} -static bbcodes[] = -{ - { L"[b]", nullptr }, - { L"[/b]", nullptr }, - { L"[i]", nullptr }, - { L"[/i]", nullptr }, - { L"[u]", nullptr }, - { L"[/u]", nullptr }, - { L"[s]", nullptr }, - { L"[/s]", nullptr }, - - { L"[color=", L"]" }, - { L"[/color]", nullptr }, - { L"[c0]", nullptr }, - { L"[c1]", nullptr }, - { L"[c2]", nullptr }, - { L"[c3]", nullptr }, - { L"[c4]", nullptr }, - { L"[c5]", nullptr }, - { L"[c6]", nullptr }, - - { L"[$hicon=", L"$]" }, - - { L"[url]", L"[/url]" }, - { L"[url=", L"]", }, - { L"[img]", L"[/img]" }, - { L"[img=", L"]" }, -}; - -void RemoveBbcodes(CMStringW &wszText) -{ - if (wszText.IsEmpty()) - return; - - if (bbcodes[0].cbStart == 0) - for (auto &it : bbcodes) { - it.cbStart = wcslen(it.pStart); - if (it.pEnd) - it.cbEnd = wcslen(it.pEnd); - } - - for (int idx = wszText.Find('[', 0); idx != -1; idx = wszText.Find('[', idx)) { - bool bFound = false; - for (auto &it : bbcodes) { - if (wcsncmp(wszText.c_str() + idx, it.pStart, it.cbStart)) - continue; - - wszText.Delete(idx, (int)it.cbStart); - - if (it.pEnd) { - int idx2 = wszText.Find(it.pEnd, idx); - if (idx2 != -1) { - wszText.Delete(idx, idx2 - idx); - wszText.Delete(idx, (int)it.cbEnd); - } - } - - bFound = true; - break; - } - - // just an occasional square bracket? skip it - if (!bFound) - idx++; - } -} +/*
+Copyright (c) 2005 Victor Pavlychko (nullbyte@sotline.net.ua)
+Copyright (C) 2012-24 Miranda NG team (https://miranda-ng.org)
+
+This program is free software; you can redistribute it and/or
+modify it under the terms of the GNU General Public License
+as published by the Free Software Foundation version 2
+of the License.
+
+This program is distributed in the hope that it will be useful,
+but WITHOUT ANY WARRANTY; without even the implied warranty of
+MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+GNU General Public License for more details.
+
+You should have received a copy of the GNU General Public License
+along with this program. If not, see <http://www.gnu.org/licenses/>.
+*/
+
+#include "stdafx.h"
+
+uint32_t toggleBit(uint32_t dw, uint32_t bit)
+{
+ if (dw & bit)
+ return dw & ~bit;
+ return dw | bit;
+}
+
+bool CheckFilter(wchar_t *buf, wchar_t *filter)
+{
+ // MessageBox(0, buf, filter, MB_OK);
+ int l1 = (int)mir_wstrlen(buf);
+ int l2 = (int)mir_wstrlen(filter);
+ for (int i = 0; i < l1 - l2 + 1; i++)
+ if (CompareString(LOCALE_USER_DEFAULT, NORM_IGNORECASE, buf + i, l2, filter, l2) == CSTR_EQUAL)
+ return true;
+ return false;
+}
+
+int GetFontHeight(const LOGFONTA &lf)
+{
+ return 2 * abs(lf.lfHeight) * 74 / g_iPixelY;
+}
+
+/////////////////////////////////////////////////////////////////////////////////////////
+
+struct
+{
+ wchar_t *pStart, *pEnd;
+ size_t cbStart, cbEnd;
+}
+static bbcodes[] =
+{
+ { L"[b]", nullptr },
+ { L"[/b]", nullptr },
+ { L"[i]", nullptr },
+ { L"[/i]", nullptr },
+ { L"[u]", nullptr },
+ { L"[/u]", nullptr },
+ { L"[s]", nullptr },
+ { L"[/s]", nullptr },
+
+ { L"[color=", L"]" },
+ { L"[/color]", nullptr },
+ { L"[c0]", nullptr },
+ { L"[c1]", nullptr },
+
+ { L"[$hicon=", L"$]" },
+
+ { L"[url]", L"[/url]" },
+ { L"[url=", L"]", },
+ { L"[img]", L"[/img]" },
+ { L"[img=", L"]" },
+};
+
+void RemoveBbcodes(CMStringW &wszText)
+{
+ if (wszText.IsEmpty())
+ return;
+
+ if (bbcodes[0].cbStart == 0)
+ for (auto &it : bbcodes) {
+ it.cbStart = wcslen(it.pStart);
+ if (it.pEnd)
+ it.cbEnd = wcslen(it.pEnd);
+ }
+
+ for (int idx = wszText.Find('[', 0); idx != -1; idx = wszText.Find('[', idx)) {
+ bool bFound = false;
+ for (auto &it : bbcodes) {
+ if (wcsncmp(wszText.c_str() + idx, it.pStart, it.cbStart))
+ continue;
+
+ wszText.Delete(idx, (int)it.cbStart);
+
+ if (it.pEnd) {
+ int idx2 = wszText.Find(it.pEnd, idx);
+ if (idx2 != -1) {
+ wszText.Delete(idx, idx2 - idx);
+ wszText.Delete(idx, (int)it.cbEnd);
+ }
+ }
+
+ bFound = true;
+ break;
+ }
+
+ // just an occasional square bracket? skip it
+ if (!bFound)
+ idx++;
+ }
+}
|