Compare commits
20 Commits
776d376232
...
master
Author | SHA1 | Date | |
---|---|---|---|
|
c7ae6490cc | ||
|
5041cfa6fa | ||
|
2353d57dd3 | ||
|
8e805522d5 | ||
|
5978a14224 | ||
|
e27276bf65 | ||
|
2f230d7ea7 | ||
|
7a030d50b2 | ||
|
69481869d3 | ||
|
0c9fb6b322 | ||
|
6e029a13a8 | ||
|
97e3e8451e | ||
|
d63ae90332 | ||
|
8fb6f40709 | ||
|
bc039d19cb | ||
|
2482b7dd09 | ||
|
43f6759d42 | ||
|
e34a763967 | ||
|
cbdb733417 | ||
|
231e83da4d |
116
.github/workflows/cd.yml
vendored
116
.github/workflows/cd.yml
vendored
@@ -14,7 +14,7 @@ jobs:
|
||||
linux-ubuntu:
|
||||
timeout-minutes: 10
|
||||
|
||||
runs-on: ubuntu-22.04
|
||||
runs-on: ubuntu-24.04
|
||||
|
||||
steps:
|
||||
- uses: actions/checkout@v4
|
||||
@@ -47,14 +47,14 @@ jobs:
|
||||
- name: Compress artifacts
|
||||
shell: bash
|
||||
run: |
|
||||
tar -czvf ${{ github.event.repository.name }}-${{ steps.tag.outputs.name }}-${{ runner.os }}-ubuntu22.04-x86_64.tar.gz -C ${{github.workspace}}/build/bin/ .
|
||||
tar -czvf ${{ github.event.repository.name }}-${{ steps.tag.outputs.name }}-${{ runner.os }}-ubuntu24.04-x86_64.tar.gz -C ${{github.workspace}}/build/bin/ .
|
||||
|
||||
- uses: actions/upload-artifact@v4
|
||||
with:
|
||||
name: ${{ github.event.repository.name }}-${{ steps.tag.outputs.name }}-${{ runner.os }}-ubuntu22.04-x86_64
|
||||
name: ${{ github.event.repository.name }}-${{ steps.tag.outputs.name }}-${{ runner.os }}-ubuntu24.04-x86_64
|
||||
# TODO: do propper packing
|
||||
path: |
|
||||
${{github.workspace}}/${{ github.event.repository.name }}-${{ steps.tag.outputs.name }}-${{ runner.os }}-ubuntu22.04-x86_64.tar.gz
|
||||
${{github.workspace}}/${{ github.event.repository.name }}-${{ steps.tag.outputs.name }}-${{ runner.os }}-ubuntu24.04-x86_64.tar.gz
|
||||
|
||||
android:
|
||||
timeout-minutes: 30
|
||||
@@ -165,7 +165,12 @@ jobs:
|
||||
windows:
|
||||
timeout-minutes: 15
|
||||
|
||||
runs-on: windows-2022
|
||||
runs-on: ${{matrix.os}}
|
||||
|
||||
strategy:
|
||||
matrix:
|
||||
type: ['', 'asan']
|
||||
os: ['windows-2022']
|
||||
|
||||
permissions:
|
||||
# vcpkg caching action
|
||||
@@ -199,7 +204,8 @@ jobs:
|
||||
#- uses: ilammy/setup-nasm@v1
|
||||
|
||||
- name: Configure CMake
|
||||
run: cmake -G Ninja -B ${{github.workspace}}/build -DCMAKE_BUILD_TYPE=${{env.BUILD_TYPE}} -DCMAKE_TOOLCHAIN_FILE=C:/vcpkg/scripts/buildsystems/vcpkg.cmake -DVCPKG_TARGET_TRIPLET=x64-windows-static -DTOMATO_DEP_LIBWEBP_USE_SYSTEM=ON -DSDLIMAGE_VENDORED=OFF -DSDLIMAGE_DEPS_SHARED=OFF -DSDLIMAGE_JXL=OFF -DSDLIMAGE_AVIF=OFF -DPKG_CONFIG_EXECUTABLE=C:/vcpkg/installed/x64-windows/tools/pkgconf/pkgconf.exe -DTOMATO_BREAKPAD=ON -DTOMATO_TOX_AV=ON
|
||||
# TODO: og asan had this -DCMAKE_MSVC_RUNTIME_LIBRARY=MultiThreaded
|
||||
run: cmake -G Ninja -B ${{github.workspace}}/build -DCMAKE_BUILD_TYPE=${{env.BUILD_TYPE}} -DCMAKE_TOOLCHAIN_FILE=C:/vcpkg/scripts/buildsystems/vcpkg.cmake -DVCPKG_TARGET_TRIPLET=x64-windows-static -DTOMATO_DEP_LIBWEBP_USE_SYSTEM=ON -DSDLIMAGE_VENDORED=OFF -DSDLIMAGE_DEPS_SHARED=OFF -DSDLIMAGE_JXL=OFF -DSDLIMAGE_AVIF=OFF -DPKG_CONFIG_EXECUTABLE=C:/vcpkg/installed/x64-windows/tools/pkgconf/pkgconf.exe -DTOMATO_BREAKPAD=ON -DTOMATO_TOX_AV=ON -DTOMATO_ASAN=${{matrix.type == 'asan' && 'ON' || 'OFF'}}
|
||||
|
||||
- name: Build
|
||||
run: cmake --build ${{github.workspace}}/build --config ${{env.BUILD_TYPE}} -t tomato
|
||||
@@ -223,92 +229,28 @@ jobs:
|
||||
run: |
|
||||
Remove-Item "${{github.workspace}}/build/bin/*.ilk"
|
||||
|
||||
- name: Compress artifacts
|
||||
- name: Add asan runtime deps
|
||||
if: ${{matrix.type == 'asan'}}
|
||||
# msvc redist does not ship them
|
||||
shell: powershell
|
||||
run: |
|
||||
Compress-Archive -Path ${{github.workspace}}/build/bin/* -Destination ${{ github.event.repository.name }}-${{ steps.tag.outputs.name }}-${{ runner.os }}-msvc-x86_64.zip
|
||||
|
||||
- uses: actions/upload-artifact@v4
|
||||
with:
|
||||
name: ${{github.event.repository.name}}-${{steps.tag.outputs.name}}-${{runner.os}}-msvc-x86_64
|
||||
# TODO: do propper packing
|
||||
path: |
|
||||
${{github.workspace}}/${{ github.event.repository.name }}-${{ steps.tag.outputs.name }}-${{ runner.os }}-msvc-x86_64.zip
|
||||
|
||||
|
||||
windows-asan:
|
||||
timeout-minutes: 15
|
||||
|
||||
runs-on: windows-2022
|
||||
|
||||
permissions:
|
||||
# vcpkg caching action
|
||||
actions: read
|
||||
contents: read
|
||||
|
||||
steps:
|
||||
- uses: actions/checkout@v4
|
||||
with:
|
||||
submodules: recursive
|
||||
fetch-depth: 0
|
||||
|
||||
- name: Restore vcpkg cache
|
||||
id: vcpkg-cache
|
||||
uses: TAServers/vcpkg-cache@v3
|
||||
with:
|
||||
token: ${{secrets.GITHUB_TOKEN}}
|
||||
|
||||
- name: Install Dependencies
|
||||
env:
|
||||
VCPKG_FEATURE_FLAGS: "binarycaching"
|
||||
VCPKG_BINARY_SOURCES: "clear;files,${{steps.vcpkg-cache.outputs.path}},readwrite"
|
||||
run: vcpkg install pkgconf:x64-windows libsodium:x64-windows-static pthreads:x64-windows-static opus:x64-windows-static libvpx:x64-windows-static zstd:x64-windows-static libwebp:x64-windows-static libpng:x64-windows-static libjpeg-turbo:x64-windows-static freetype:x64-windows-static
|
||||
|
||||
|
||||
# setup vs env
|
||||
- uses: ilammy/msvc-dev-cmd@v1
|
||||
with:
|
||||
arch: amd64
|
||||
|
||||
## sdl_image vendored needs nasm for dav1d
|
||||
#- uses: ilammy/setup-nasm@v1
|
||||
|
||||
- name: Configure CMake
|
||||
run: cmake -G Ninja -B ${{github.workspace}}/build -DCMAKE_BUILD_TYPE=${{env.BUILD_TYPE}} -DCMAKE_TOOLCHAIN_FILE=C:/vcpkg/scripts/buildsystems/vcpkg.cmake -DVCPKG_TARGET_TRIPLET=x64-windows-static -DTOMATO_ASAN=ON -DCMAKE_MSVC_RUNTIME_LIBRARY=MultiThreaded -DTOMATO_DEP_LIBWEBP_USE_SYSTEM=ON -DSDLIMAGE_VENDORED=OFF -DSDLIMAGE_DEPS_SHARED=OFF -DSDLIMAGE_JXL=OFF -DSDLIMAGE_AVIF=OFF -DPKG_CONFIG_EXECUTABLE=C:/vcpkg/installed/x64-windows/tools/pkgconf/pkgconf.exe -DTOMATO_TOX_AV=ON
|
||||
|
||||
- name: Build
|
||||
run: cmake --build ${{github.workspace}}/build --config ${{env.BUILD_TYPE}} -j 4 -t tomato
|
||||
|
||||
- name: Determine tag name
|
||||
id: tag
|
||||
shell: bash
|
||||
# taken from llama.cpp
|
||||
run: |
|
||||
SHORT_HASH="$(git rev-parse --short=7 HEAD)"
|
||||
if [[ "${{ env.BRANCH_NAME }}" == "master" ]]; then
|
||||
echo "name=dev-${SHORT_HASH}" >> $GITHUB_OUTPUT
|
||||
else
|
||||
SAFE_NAME=$(echo "${{ env.BRANCH_NAME }}" | tr '/' '-')
|
||||
echo "name=dev-${SAFE_NAME}-${SHORT_HASH}" >> $GITHUB_OUTPUT
|
||||
fi
|
||||
|
||||
- name: Clean temporary artifacts
|
||||
# msvc sometimes produces .ilk files, which are used for linking only
|
||||
shell: powershell
|
||||
run: |
|
||||
Remove-Item "${{github.workspace}}/build/bin/*.ilk"
|
||||
Copy-Item "$env:VCToolsInstallDir/bin/Hostx64/x64/clang_rt.asan_dynamic-x86_64.dll" -Destination "${{github.workspace}}/build/bin/"
|
||||
|
||||
- name: Compress artifacts
|
||||
shell: powershell
|
||||
run: |
|
||||
Compress-Archive -Path ${{github.workspace}}/build/bin/* -Destination ${{ github.event.repository.name }}-${{ steps.tag.outputs.name }}-${{ runner.os }}-msvc-asan-x86_64.zip
|
||||
Compress-Archive -Path ${{github.workspace}}/build/bin/* -Destination ${{ github.event.repository.name }}-${{ steps.tag.outputs.name }}-${{ runner.os }}-msvc${{matrix.type == 'asan' && '-asan' || ''}}-x86_64.zip
|
||||
|
||||
- uses: actions/upload-artifact@v4
|
||||
with:
|
||||
name: ${{ github.event.repository.name }}-${{ steps.tag.outputs.name }}-${{ runner.os }}-msvc-asan-x86_64
|
||||
name: ${{github.event.repository.name}}-${{steps.tag.outputs.name}}-${{runner.os}}-msvc${{matrix.type == 'asan' && '-asan' || ''}}-x86_64
|
||||
# TODO: do propper packing
|
||||
path: |
|
||||
${{github.workspace}}/${{ github.event.repository.name }}-${{ steps.tag.outputs.name }}-${{ runner.os }}-msvc-asan-x86_64.zip
|
||||
${{github.workspace}}/${{ github.event.repository.name }}-${{ steps.tag.outputs.name }}-${{ runner.os }}-msvc${{matrix.type == 'asan' && '-asan' || ''}}-x86_64.zip
|
||||
|
||||
# - name: Configure CMake
|
||||
# run: cmake -G Ninja -B ${{github.workspace}}/build -DCMAKE_BUILD_TYPE=${{env.BUILD_TYPE}} -DCMAKE_TOOLCHAIN_FILE=C:/vcpkg/scripts/buildsystems/vcpkg.cmake -DVCPKG_TARGET_TRIPLET=x64-windows-static -DTOMATO_ASAN=ON -DCMAKE_MSVC_RUNTIME_LIBRARY=MultiThreaded -DTOMATO_DEP_LIBWEBP_USE_SYSTEM=ON -DSDLIMAGE_VENDORED=OFF -DSDLIMAGE_DEPS_SHARED=OFF -DSDLIMAGE_JXL=OFF -DSDLIMAGE_AVIF=OFF -DPKG_CONFIG_EXECUTABLE=C:/vcpkg/installed/x64-windows/tools/pkgconf/pkgconf.exe -DTOMATO_TOX_AV=ON
|
||||
|
||||
|
||||
dumpsyms:
|
||||
runs-on: ubuntu-latest
|
||||
@@ -317,7 +259,7 @@ jobs:
|
||||
- linux-ubuntu
|
||||
- android
|
||||
- windows
|
||||
- windows-asan
|
||||
#- windows-asan
|
||||
|
||||
permissions:
|
||||
contents: write
|
||||
@@ -358,8 +300,8 @@ jobs:
|
||||
run: |
|
||||
mkdir ./artifacts/extract
|
||||
|
||||
echo $(unar -D -o ./artifacts/extract/ ./artifacts/${{ github.event.repository.name }}-${{ steps.tag.outputs.name }}-Linux-ubuntu22.04-x86_64/*)
|
||||
dump_syms -s tomato-dev-ubuntu22.04-x86_64-sym ./artifacts/extract/tomato
|
||||
echo $(unar -D -o ./artifacts/extract/ ./artifacts/${{ github.event.repository.name }}-${{ steps.tag.outputs.name }}-Linux-ubuntu24.04-x86_64/*)
|
||||
dump_syms -s tomato-dev-ubuntu24.04-x86_64-sym ./artifacts/extract/tomato
|
||||
rm -rf ./artifacts/extract/*
|
||||
|
||||
echo $(unar -D -o ./artifacts/extract/ ./artifacts/${{ github.event.repository.name }}-${{ steps.tag.outputs.name }}-Windows-msvc-x86_64/*)
|
||||
@@ -369,14 +311,14 @@ jobs:
|
||||
- name: Compress symbol stores
|
||||
shell: bash
|
||||
run: |
|
||||
tar -czvf ${{ github.event.repository.name }}-${{ steps.tag.outputs.name }}-Linux-ubuntu22.04-x86_64-symbol_store.tar.gz -C ./tomato-dev-ubuntu22.04-x86_64-sym .
|
||||
tar -czvf ${{ github.event.repository.name }}-${{ steps.tag.outputs.name }}-Linux-ubuntu24.04-x86_64-symbol_store.tar.gz -C ./tomato-dev-ubuntu24.04-x86_64-sym .
|
||||
tar -czvf ${{ github.event.repository.name }}-${{ steps.tag.outputs.name }}-Windows-msvc-x86_64-symbol_store.tar.gz -C ./tomato-dev-Windows-msvc-x86_64-sym .
|
||||
|
||||
- uses: actions/upload-artifact@v4
|
||||
with:
|
||||
name: ${{ github.event.repository.name }}-${{ steps.tag.outputs.name }}-symbol_stores
|
||||
path: |
|
||||
${{ github.event.repository.name }}-${{ steps.tag.outputs.name }}-Linux-ubuntu22.04-x86_64-symbol_store.tar.gz
|
||||
${{ github.event.repository.name }}-${{ steps.tag.outputs.name }}-Linux-ubuntu24.04-x86_64-symbol_store.tar.gz
|
||||
${{ github.event.repository.name }}-${{ steps.tag.outputs.name }}-Windows-msvc-x86_64-symbol_store.tar.gz
|
||||
|
||||
release:
|
||||
@@ -388,7 +330,7 @@ jobs:
|
||||
- linux-ubuntu
|
||||
- android
|
||||
- windows
|
||||
- windows-asan
|
||||
#- windows-asan
|
||||
- dumpsyms
|
||||
|
||||
permissions:
|
||||
|
25
.github/workflows/ci.yml
vendored
25
.github/workflows/ci.yml
vendored
@@ -7,13 +7,21 @@ on:
|
||||
branches: [ master ]
|
||||
|
||||
env:
|
||||
# maybe pull into matrix?
|
||||
BUILD_TYPE: Debug
|
||||
|
||||
jobs:
|
||||
linux:
|
||||
timeout-minutes: 10
|
||||
|
||||
runs-on: ubuntu-latest
|
||||
runs-on: ${{matrix.os}}
|
||||
name: ${{matrix.type}} on ${{matrix.os}}
|
||||
|
||||
strategy:
|
||||
fail-fast: false
|
||||
matrix:
|
||||
type: ['', 'asan']
|
||||
os: ['ubuntu-latest', 'ubuntu-24.04-arm']
|
||||
|
||||
steps:
|
||||
- uses: actions/checkout@v4
|
||||
@@ -21,15 +29,15 @@ jobs:
|
||||
submodules: recursive
|
||||
|
||||
- name: Install Dependencies
|
||||
run: sudo apt update && sudo apt -y install libsodium-dev cmake libx11-dev libxext-dev libxrandr-dev
|
||||
run: sudo apt update && sudo apt -y install libsodium-dev cmake libx11-dev libxext-dev libxrandr-dev
|
||||
|
||||
- name: ccache
|
||||
uses: hendrikmuhs/ccache-action@v1.2
|
||||
with:
|
||||
key: ${{github.event.repository.name}}-${{github.job}}
|
||||
key: ${{github.event.repository.name}}-${{github.job}}-${{matrix.os}}-${{matrix.type}}
|
||||
|
||||
- name: Configure CMake
|
||||
run: cmake -B ${{github.workspace}}/build -DCMAKE_BUILD_TYPE=${{env.BUILD_TYPE}} -DCMAKE_C_COMPILER_LAUNCHER=ccache -DCMAKE_CXX_COMPILER_LAUNCHER=ccache
|
||||
run: cmake -B ${{github.workspace}}/build -DCMAKE_BUILD_TYPE=${{env.BUILD_TYPE}} -DCMAKE_C_COMPILER_LAUNCHER=ccache -DCMAKE_CXX_COMPILER_LAUNCHER=ccache -DTOMATO_ASAN=${{matrix.type == 'asan' && 'ON' || 'OFF'}}
|
||||
|
||||
- name: Build
|
||||
run: cmake --build ${{github.workspace}}/build --config ${{env.BUILD_TYPE}} -j 4 -t tomato
|
||||
@@ -170,15 +178,6 @@ jobs:
|
||||
with:
|
||||
arch: amd64
|
||||
|
||||
## sdl_image vendored needs nasm for dav1d
|
||||
#- uses: ilammy/setup-nasm@v1
|
||||
|
||||
#- name: ccache
|
||||
# uses: hendrikmuhs/ccache-action@v1.2
|
||||
# with:
|
||||
# variant: sccache
|
||||
# key: ${{github.event.repository.name}}-${{github.job}}
|
||||
|
||||
- name: Configure CMake
|
||||
run: cmake -G Ninja -B ${{github.workspace}}/build -DCMAKE_BUILD_TYPE=${{env.BUILD_TYPE}} -DCMAKE_TOOLCHAIN_FILE=C:/vcpkg/scripts/buildsystems/vcpkg.cmake -DVCPKG_TARGET_TRIPLET=x64-windows-static -DTOMATO_DEP_LIBWEBP_USE_SYSTEM=ON -DSDLIMAGE_VENDORED=OFF -DSDLIMAGE_DEPS_SHARED=OFF -DSDLIMAGE_JXL=OFF -DSDLIMAGE_AVIF=OFF -DPKG_CONFIG_EXECUTABLE=C:/vcpkg/installed/x64-windows/tools/pkgconf/pkgconf.exe
|
||||
|
||||
|
10
external/breakpad/CMakeLists.txt
vendored
10
external/breakpad/CMakeLists.txt
vendored
@@ -8,13 +8,14 @@ if (NOT TARGET breakpad_client)
|
||||
if (NOT TARGET lss)
|
||||
FetchContent_Declare(lss
|
||||
GIT_REPOSITORY https://chromium.googlesource.com/linux-syscall-support/
|
||||
GIT_TAG 9719c1e1e676814c456b55f5f070eabad6709d31
|
||||
#GIT_TAG 9719c1e1e676814c456b55f5f070eabad6709d31 # v2022.10.12
|
||||
GIT_TAG ed31caa60f20a4f6569883b2d752ef7522de51e0 # v2024.02.01
|
||||
|
||||
FIND_PACKAGE_ARGS # for the future
|
||||
)
|
||||
FetchContent_GetProperties(lss)
|
||||
if(NOT lss_POPULATED)
|
||||
FetchContent_Populate(lss)
|
||||
FetchContent_MakeAvailable(lss)
|
||||
|
||||
# HACK: breakpad expects this at a specific path
|
||||
configure_file(
|
||||
@@ -31,13 +32,14 @@ if (NOT TARGET breakpad_client)
|
||||
|
||||
FetchContent_Declare(breakpad
|
||||
GIT_REPOSITORY https://chromium.googlesource.com/breakpad/breakpad
|
||||
GIT_TAG v2023.06.01
|
||||
#GIT_TAG 76a3c2013b2ebb0d781a523608102f6c0d22231c # v2023.06.01
|
||||
GIT_TAG 0f8fea981d0f09174e2cc6289aad9a58239c1780 # v2024.02.16
|
||||
|
||||
FIND_PACKAGE_ARGS # for the future
|
||||
)
|
||||
FetchContent_GetProperties(breakpad)
|
||||
if(NOT breakpad_POPULATED)
|
||||
FetchContent_Populate(breakpad)
|
||||
FetchContent_MakeAvailable(breakpad)
|
||||
|
||||
add_library(breakpad_common STATIC
|
||||
${breakpad_SOURCE_DIR}/src/common/convert_UTF.h
|
||||
|
1
external/implot/CMakeLists.txt
vendored
1
external/implot/CMakeLists.txt
vendored
@@ -9,7 +9,6 @@ if (NOT TARGET implot)
|
||||
#GIT_TAG 193b9d8f92c4a437e84182b171f1ae266e72321f # 05-03-2025
|
||||
GIT_TAG 3da8bd34299965d3b0ab124df743fe3e076fa222 # 19-03-2025
|
||||
EXCLUDE_FROM_ALL
|
||||
CONFIGURE_COMMAND "" # no cmake
|
||||
)
|
||||
|
||||
FetchContent_GetProperties(implot)
|
||||
|
2
external/solanaceae_contact
vendored
2
external/solanaceae_contact
vendored
Submodule external/solanaceae_contact updated: 5adf5bf9da...fdbe643958
2
external/solanaceae_tox
vendored
2
external/solanaceae_tox
vendored
Submodule external/solanaceae_tox updated: 178f08ee96...83367b2d2e
16
flake.lock
generated
16
flake.lock
generated
@@ -21,17 +21,17 @@
|
||||
"imgui": {
|
||||
"flake": false,
|
||||
"locked": {
|
||||
"lastModified": 1750870001,
|
||||
"narHash": "sha256-qiESah4j/yHqkOuL5BYANvZfrSqM04CqKONz1jVnkJ0=",
|
||||
"lastModified": 1752080038,
|
||||
"narHash": "sha256-m5h/H8k/CZ5Qwr3L9+Elt8XT/Tgwr3s4HuhVtI4wkwE=",
|
||||
"owner": "ocornut",
|
||||
"repo": "imgui",
|
||||
"rev": "85b2fe8486190fa9326565a2fb5fccb6caea4396",
|
||||
"rev": "5d4126876bc10396d4c6511853ff10964414c776",
|
||||
"type": "github"
|
||||
},
|
||||
"original": {
|
||||
"owner": "ocornut",
|
||||
"repo": "imgui",
|
||||
"rev": "85b2fe8486190fa9326565a2fb5fccb6caea4396",
|
||||
"rev": "5d4126876bc10396d4c6511853ff10964414c776",
|
||||
"type": "github"
|
||||
}
|
||||
},
|
||||
@@ -54,16 +54,16 @@
|
||||
},
|
||||
"nixpkgs": {
|
||||
"locked": {
|
||||
"lastModified": 1751290243,
|
||||
"narHash": "sha256-kNf+obkpJZWar7HZymXZbW+Rlk3HTEIMlpc6FCNz0Ds=",
|
||||
"lastModified": 1754292888,
|
||||
"narHash": "sha256-1ziydHSiDuSnaiPzCQh1mRFBsM2d2yRX9I+5OPGEmIE=",
|
||||
"owner": "NixOS",
|
||||
"repo": "nixpkgs",
|
||||
"rev": "5ab036a8d97cb9476fbe81b09076e6e91d15e1b6",
|
||||
"rev": "ce01daebf8489ba97bd1609d185ea276efdeb121",
|
||||
"type": "github"
|
||||
},
|
||||
"original": {
|
||||
"owner": "NixOS",
|
||||
"ref": "release-24.11",
|
||||
"ref": "release-25.05",
|
||||
"repo": "nixpkgs",
|
||||
"type": "github"
|
||||
}
|
||||
|
@@ -6,7 +6,7 @@
|
||||
# $ nix bundle --bundler github:ralismark/nix-appimage 'git+file:///home/green/workspace/tox/tomato?submodules=1#'
|
||||
|
||||
inputs = {
|
||||
nixpkgs.url = "github:NixOS/nixpkgs/release-24.11";
|
||||
nixpkgs.url = "github:NixOS/nixpkgs/release-25.05";
|
||||
flake-utils.url = "github:numtide/flake-utils";
|
||||
nlohmann-json = {
|
||||
url = "github:nlohmann/json/v3.11.3"; # TODO: read version from file
|
||||
@@ -21,7 +21,7 @@
|
||||
flake = false;
|
||||
};
|
||||
imgui = {
|
||||
url = "github:ocornut/imgui/85b2fe8486190fa9326565a2fb5fccb6caea4396";
|
||||
url = "github:ocornut/imgui/5d4126876bc10396d4c6511853ff10964414c776";
|
||||
flake = false;
|
||||
};
|
||||
plutosvg = {
|
||||
|
@@ -82,6 +82,8 @@ target_sources(tomato PUBLIC
|
||||
./sys_tray.cpp
|
||||
|
||||
./string_formatter_utils.hpp
|
||||
./chat_gui/about.hpp
|
||||
./chat_gui/about.cpp
|
||||
./chat_gui/theme.hpp
|
||||
./chat_gui/theme.cpp
|
||||
./chat_gui/icons/direct.hpp
|
||||
|
54
src/chat_gui/about.cpp
Normal file
54
src/chat_gui/about.cpp
Normal file
@@ -0,0 +1,54 @@
|
||||
#include "./about.hpp"
|
||||
|
||||
#include "./version.hpp"
|
||||
|
||||
#include <imgui.h>
|
||||
|
||||
#include <string>
|
||||
|
||||
void ImGuiTomatoAbout(void) {
|
||||
if (ImGui::BeginTabBar("about")) {
|
||||
if (ImGui::BeginTabItem("tomato")) {
|
||||
std::string tomato_version_string {"tomato " TOMATO_VERSION_STR};
|
||||
if (TOMATO_GIT_DEPTH != 0) {
|
||||
tomato_version_string += "-" + std::to_string(TOMATO_GIT_DEPTH);
|
||||
}
|
||||
if (std::string_view{TOMATO_GIT_COMMIT} != "UNK") {
|
||||
tomato_version_string += "+git.";
|
||||
tomato_version_string += TOMATO_GIT_COMMIT;
|
||||
}
|
||||
|
||||
ImGui::TextUnformatted(tomato_version_string.c_str());
|
||||
|
||||
ImGui::SameLine();
|
||||
if (ImGui::SmallButton("click to copy")) {
|
||||
ImGui::SetClipboardText(tomato_version_string.c_str());
|
||||
}
|
||||
|
||||
ImGui::Separator();
|
||||
|
||||
ImGui::TextUnformatted("TODO: tomato license");
|
||||
|
||||
ImGui::EndTabItem();
|
||||
}
|
||||
|
||||
if (ImGui::BeginTabItem("imgui")) {
|
||||
ImGui::ShowAboutWindow();
|
||||
ImGui::EndTabItem();
|
||||
}
|
||||
|
||||
if (ImGui::BeginTabItem("others")) {
|
||||
ImGui::TextUnformatted("TODO: list all the other libs and their licenses");
|
||||
ImGui::EndTabItem();
|
||||
}
|
||||
|
||||
if (ImGui::BeginTabItem("funding")) {
|
||||
ImGui::TextWrapped("Your Help is needed, to keep the project alive, expand it's features and to inspire new features!");
|
||||
ImGui::TextLinkOpenURL("https://github.com/sponsors/Green-Sky");
|
||||
ImGui::TextUnformatted("Contact Me for more ways to help the project. :)");
|
||||
ImGui::EndTabItem();
|
||||
}
|
||||
|
||||
ImGui::EndTabBar();
|
||||
}
|
||||
}
|
5
src/chat_gui/about.hpp
Normal file
5
src/chat_gui/about.hpp
Normal file
@@ -0,0 +1,5 @@
|
||||
#pragma once
|
||||
|
||||
// not a window, just the content
|
||||
void ImGuiTomatoAbout(void);
|
||||
|
@@ -1,6 +1,7 @@
|
||||
#include "./contact_list.hpp"
|
||||
|
||||
#include <solanaceae/contact/components.hpp>
|
||||
#include <solanaceae/contact/contact_model4.hpp>
|
||||
#include <solanaceae/message3/components.hpp>
|
||||
#include <solanaceae/util/utils.hpp>
|
||||
#include <solanaceae/util/time.hpp>
|
||||
@@ -325,6 +326,7 @@ bool renderContactList(
|
||||
) {
|
||||
bool selection_changed {false};
|
||||
for (const Contact4 cv : view) {
|
||||
ImGui::PushID(entt::to_integral(cv));
|
||||
ContactHandle4 c{cr, cv};
|
||||
const bool selected = selected_c == c;
|
||||
|
||||
@@ -342,6 +344,36 @@ bool renderContactList(
|
||||
selected_c = c;
|
||||
selection_changed = true;
|
||||
}
|
||||
|
||||
// TODO: move to own function
|
||||
if (ImGui::BeginPopupContextItem("contact_context")) {
|
||||
if (c.all_of<Contact::Components::ContactModel>()) {
|
||||
const auto& cm = c.get<Contact::Components::ContactModel>();
|
||||
// TODO: make hookable
|
||||
if (ImGui::BeginMenu("invite to")) {
|
||||
// big?
|
||||
//for (const auto& c : cr.view<Contact::Components::TagBig>()) {
|
||||
// // filter
|
||||
// if (cr.any_of<Contact::Components::RequestIncoming, Contact::Components::TagRequestOutgoing>(c)) {
|
||||
// continue;
|
||||
// }
|
||||
for (auto [tov] : cr.storage<Contact4>().each()) {
|
||||
if (cm->canInvite(c, tov)) {
|
||||
ContactHandle4 to{cr, tov};
|
||||
|
||||
if (renderContactBig(th, contact_tc, to, 1, false, true, false)) {
|
||||
// TODO: error check
|
||||
cm->invite(c, tov);
|
||||
}
|
||||
}
|
||||
}
|
||||
ImGui::EndMenu();
|
||||
}
|
||||
}
|
||||
|
||||
ImGui::EndPopup();
|
||||
}
|
||||
ImGui::PopID();
|
||||
}
|
||||
return selection_changed;
|
||||
}
|
||||
|
@@ -478,6 +478,8 @@ float ChatGui4::render(float time_delta, bool window_hidden, bool window_focused
|
||||
ImGui::EndChild();
|
||||
|
||||
if (ImGui::BeginChild("text_input", {-150, 0})) {
|
||||
ImGui::SetNextItemShortcut(ImGuiKey_I, ImGuiInputFlags_RouteGlobal);
|
||||
|
||||
constexpr ImGuiInputTextFlags input_flags =
|
||||
//ImGuiInputTextFlags_AllowTabInput |
|
||||
ImGuiInputTextFlags_NoHorizontalScroll |
|
||||
@@ -670,6 +672,28 @@ void ChatGui4::sendFilePath(std::string_view file_path) {
|
||||
}
|
||||
|
||||
void ChatGui4::renderChatLog(Contact4 c, bool window_focused, const std::vector<Contact4>* sub_contacts) {
|
||||
const float scroll_amount {2.f * TEXT_BASE_HEIGHT};
|
||||
bool manually_scrolled {false};
|
||||
// TODO: replace with IsKeyPressed version in the future
|
||||
if (ImGui::Shortcut(ImGuiKey_J, ImGuiInputFlags_Repeat | ImGuiInputFlags_RouteGlobal)) {
|
||||
ImGui::SetScrollY(ImGui::GetScrollY() + scroll_amount);
|
||||
manually_scrolled = true;
|
||||
}
|
||||
if (ImGui::Shortcut(ImGuiKey_K, ImGuiInputFlags_Repeat | ImGuiInputFlags_RouteGlobal)) {
|
||||
ImGui::SetScrollY(ImGui::GetScrollY() - scroll_amount);
|
||||
manually_scrolled = true;
|
||||
}
|
||||
|
||||
// TODO: figure ot page size
|
||||
if (ImGui::Shortcut(ImGuiKey_PageDown, ImGuiInputFlags_Repeat | ImGuiInputFlags_RouteGlobal)) {
|
||||
ImGui::SetScrollY(ImGui::GetScrollY() + scroll_amount*10.f);
|
||||
manually_scrolled = true;
|
||||
}
|
||||
if (ImGui::Shortcut(ImGuiKey_PageUp, ImGuiInputFlags_Repeat | ImGuiInputFlags_RouteGlobal)) {
|
||||
ImGui::SetScrollY(ImGui::GetScrollY() - scroll_amount*10.f);
|
||||
manually_scrolled = true;
|
||||
}
|
||||
|
||||
auto* msg_reg_ptr = _rmm.get(c);
|
||||
|
||||
constexpr ImGuiTableFlags table_flags =
|
||||
@@ -1049,8 +1073,13 @@ void ChatGui4::renderChatLog(Contact4 c, bool window_focused, const std::vector<
|
||||
ImGui::EndTable();
|
||||
}
|
||||
|
||||
if (ImGui::Shortcut(ImGuiKey_End, ImGuiInputFlags_RouteGlobal)) {
|
||||
ImGui::SetScrollHereY(1.f);
|
||||
manually_scrolled = true;
|
||||
}
|
||||
|
||||
// follow if at bottom (this is a frame delayed, but thats just how it works)
|
||||
if (ImGui::GetScrollY() >= ImGui::GetScrollMaxY()) {
|
||||
if (!manually_scrolled && ImGui::GetScrollY() >= ImGui::GetScrollMaxY()) {
|
||||
ImGui::SetScrollHereY(1.f);
|
||||
}
|
||||
}
|
||||
|
@@ -5,6 +5,8 @@
|
||||
|
||||
#include <solanaceae/contact/components.hpp>
|
||||
|
||||
#include "./chat_gui/about.hpp"
|
||||
|
||||
#include "./frame_streams/sdl/sdl_audio2_frame_stream2.hpp"
|
||||
#include "./frame_streams/sdl/sdl_video_frame_stream2.hpp"
|
||||
|
||||
@@ -67,7 +69,7 @@ MainScreen::MainScreen(const SimpleConfigModel& conf_, SDL_Renderer* renderer_,
|
||||
cg(conf, os, rmm, cs, sdlrtu, contact_tc, msg_tc, theme),
|
||||
sw(conf),
|
||||
osui(os),
|
||||
tuiu(tc, conf, &tpi),
|
||||
tuiu(tc, tcm, conf, &tpi),
|
||||
tdch(tpi),
|
||||
tnui(tpi),
|
||||
smui(os, sm),
|
||||
@@ -369,7 +371,14 @@ Screen* MainScreen::render(float time_delta, bool&) {
|
||||
if (ImGui::Begin("tomato")) {
|
||||
if (ImGui::BeginMenuBar()) {
|
||||
// ImGui::Separator(); // why do we not need this????
|
||||
if (ImGui::BeginMenu("Performance")) {
|
||||
if (_compute_lower_limit_hit) {
|
||||
ImGui::PushStyleColor(ImGuiCol_Text, {1.f, 0.2f, 0.2f, 1.f});
|
||||
}
|
||||
bool perf_menu = ImGui::BeginMenu("Performance");
|
||||
if (_compute_lower_limit_hit) {
|
||||
ImGui::PopStyleColor();
|
||||
}
|
||||
if (perf_menu) {
|
||||
{ // fps
|
||||
const auto targets = "normal\0reduced\0powersave\0";
|
||||
ImGui::SetNextItemWidth(ImGui::GetFontSize()*10);
|
||||
@@ -386,13 +395,24 @@ Screen* MainScreen::render(float time_delta, bool&) {
|
||||
ImGui::Separator();
|
||||
|
||||
ImGui::Text("render interval: %.0fms (%.2ffps)", _render_interval*1000.f, 1.f/_render_interval);
|
||||
|
||||
if (_compute_lower_limit_hit) {
|
||||
ImGui::PushStyleColor(ImGuiCol_Text, {1.f, 0.2f, 0.2f, 1.f});
|
||||
}
|
||||
ImGui::Text("tick interval: %.0fms (%.2ftps)", _min_tick_interval*1000.f, 1.f/_min_tick_interval);
|
||||
if (_compute_lower_limit_hit) {
|
||||
ImGui::PopStyleColor();
|
||||
}
|
||||
|
||||
ImGui::EndMenu();
|
||||
}
|
||||
if (ImGui::BeginMenu("Settings")) {
|
||||
ImGui::SeparatorText("ImGui");
|
||||
|
||||
if (ImGui::MenuItem("About Dear ImGui", nullptr, _show_imgui_about)) {
|
||||
_show_imgui_about = !_show_imgui_about;
|
||||
}
|
||||
|
||||
if (ImGui::MenuItem("Style Editor", nullptr, _show_tool_style_editor)) {
|
||||
_show_tool_style_editor = !_show_tool_style_editor;
|
||||
}
|
||||
@@ -415,6 +435,9 @@ Screen* MainScreen::render(float time_delta, bool&) {
|
||||
|
||||
ImGui::EndMenu();
|
||||
}
|
||||
if (ImGui::MenuItem("About", nullptr, _show_about)) {
|
||||
_show_about = !_show_about;
|
||||
}
|
||||
ImGui::EndMenuBar();
|
||||
}
|
||||
|
||||
@@ -422,6 +445,10 @@ Screen* MainScreen::render(float time_delta, bool&) {
|
||||
ImGui::End();
|
||||
}
|
||||
|
||||
if (_show_imgui_about) {
|
||||
ImGui::ShowAboutWindow(&_show_imgui_about);
|
||||
}
|
||||
|
||||
if (_show_tool_style_editor) {
|
||||
if (ImGui::Begin("Dear ImGui Style Editor", &_show_tool_style_editor)) {
|
||||
ImGui::ShowStyleEditor();
|
||||
@@ -445,6 +472,15 @@ Screen* MainScreen::render(float time_delta, bool&) {
|
||||
ImGui::ShowDemoWindow(&_show_tool_demo);
|
||||
}
|
||||
|
||||
if (_show_about) {
|
||||
if (ImGui::Begin("About", &_show_about, ImGuiWindowFlags_AlwaysAutoResize)) {
|
||||
ImGuiTomatoAbout();
|
||||
}
|
||||
ImGui::End();
|
||||
}
|
||||
|
||||
_compute_lower_limit_hit_rendered = true;
|
||||
|
||||
float tc_unfinished_queue_interval;
|
||||
{ // load rendered but not loaded textures
|
||||
bool unfinished_work_queue = contact_tc.workLoadQueue();
|
||||
@@ -653,15 +689,24 @@ Screen* MainScreen::tick(float time_delta, bool& quit) {
|
||||
|
||||
//std::cout << "MS: min tick interval: " << _min_tick_interval << "\n";
|
||||
|
||||
float compute_mode_lower_limit = 0;
|
||||
switch (_compute_perf_mode) {
|
||||
// normal 1ms lower bound
|
||||
case 0: _min_tick_interval = std::max<float>(_min_tick_interval, 0.001f); break;
|
||||
case 0: compute_mode_lower_limit = 0.001f; break;
|
||||
// in powersave fix the lowerbound to 100ms
|
||||
case 1: _min_tick_interval = std::max<float>(_min_tick_interval, 0.1f); break;
|
||||
case 1: compute_mode_lower_limit = 0.1f; break;
|
||||
// extreme 2s
|
||||
case 2: _min_tick_interval = std::max<float>(_min_tick_interval, 1.5f); break;
|
||||
case 2: compute_mode_lower_limit = 1.5f; break;
|
||||
default: std::cerr << "unknown compute perf mode\n"; std::exit(-1);
|
||||
}
|
||||
if (compute_mode_lower_limit > _min_tick_interval) {
|
||||
_min_tick_interval = compute_mode_lower_limit;
|
||||
_compute_lower_limit_hit = true;
|
||||
} else if (_compute_lower_limit_hit_rendered) {
|
||||
// stop indicating a limit hit
|
||||
_compute_lower_limit_hit_rendered = false;
|
||||
_compute_lower_limit_hit = false;
|
||||
}
|
||||
|
||||
return nullptr;
|
||||
}
|
||||
|
@@ -111,11 +111,13 @@ struct MainScreen final : public Screen {
|
||||
DebugVideoTap dvt;
|
||||
|
||||
|
||||
bool _show_imgui_about {false};
|
||||
bool _show_tool_style_editor {false};
|
||||
bool _show_tool_metrics {false};
|
||||
bool _show_tool_debug_log {false};
|
||||
bool _show_tool_id_stack {false};
|
||||
bool _show_tool_demo {false};
|
||||
bool _show_about {false};
|
||||
|
||||
bool _window_focused {true};
|
||||
bool _window_hidden {false};
|
||||
@@ -145,6 +147,9 @@ struct MainScreen final : public Screen {
|
||||
float _render_interval {1.f/60.f};
|
||||
float _min_tick_interval {0.f};
|
||||
|
||||
bool _compute_lower_limit_hit {false};
|
||||
bool _compute_lower_limit_hit_rendered {false};
|
||||
|
||||
float nextRender(void) override { return _render_interval; }
|
||||
float nextTick(void) override { return _min_tick_interval; }
|
||||
};
|
||||
|
@@ -4,6 +4,8 @@
|
||||
|
||||
#include "./json_to_config.hpp"
|
||||
|
||||
#include "./chat_gui/about.hpp"
|
||||
|
||||
#include <nlohmann/json.hpp>
|
||||
|
||||
#include <imgui.h>
|
||||
@@ -55,6 +57,10 @@ StartScreen::StartScreen(const std::vector<std::string_view>& args, SDL_Renderer
|
||||
const auto& plugin_path = args.at(ai);
|
||||
// TODO: check for dups
|
||||
queued_plugin_paths.push_back(static_cast<std::string>(plugin_path));
|
||||
} else if (args.at(ai) == "--crash") {
|
||||
// HACK: force bad pointer
|
||||
int* _p {reinterpret_cast<int*>(args.size())};
|
||||
*_p = 1337;
|
||||
} else {
|
||||
std::cerr << "TOMATO error: unknown cli arg: '" << args.at(ai) << "'\n";
|
||||
}
|
||||
@@ -178,265 +184,281 @@ Screen* StartScreen::render(float, bool&) {
|
||||
const float TEXT_PROCEED_WIDTH = ImGui::CalcTextSize("proceed").x;
|
||||
const float TEXT_BASE_HEIGHT = ImGui::GetTextLineHeightWithSpacing();
|
||||
|
||||
ImGui::SetNextWindowSize({656,334}, ImGuiCond_FirstUseEver);
|
||||
ImGui::Begin("start screen");
|
||||
const ImGuiViewport* viewport = ImGui::GetMainViewport();
|
||||
ImGui::SetNextWindowPos(viewport->WorkPos);
|
||||
ImGui::SetNextWindowSize(viewport->WorkSize);
|
||||
|
||||
// TODO: imgui tox profile selector?
|
||||
constexpr auto bg_window_flags =
|
||||
ImGuiWindowFlags_NoDecoration |
|
||||
ImGuiWindowFlags_NoMove |
|
||||
ImGuiWindowFlags_NoResize |
|
||||
ImGuiWindowFlags_NoSavedSettings |
|
||||
ImGuiWindowFlags_NoBringToFrontOnFocus;
|
||||
|
||||
// +----------------------------
|
||||
// | |*tox profile*| plugins | toxcore config |
|
||||
// | +------+ +--------
|
||||
// | | ICON | | fileselector/dropdown?
|
||||
// | | | | password input
|
||||
// | +------+ +--------
|
||||
// | [proceed]
|
||||
// +----------------------------
|
||||
if (ImGui::Begin("start screen", nullptr, bg_window_flags)) {
|
||||
// TODO: imgui tox profile selector?
|
||||
|
||||
if (ImGui::BeginChild("conf", {0, ImGui::GetContentRegionAvail().y - TEXT_BASE_HEIGHT*2.f})) {
|
||||
if (ImGui::BeginTabBar("view")) {
|
||||
if (ImGui::BeginTabItem("load profile")) {
|
||||
_new_save = false;
|
||||
// +----------------------------
|
||||
// | |*tox profile*| plugins | toxcore config |
|
||||
// | +------+ +--------
|
||||
// | | ICON | | fileselector/dropdown?
|
||||
// | | | | password input
|
||||
// | +------+ +--------
|
||||
// | [proceed]
|
||||
// +----------------------------
|
||||
|
||||
ImGui::TextUnformatted("profile :");
|
||||
ImGui::SameLine();
|
||||
if (ImGui::Button("select")) {
|
||||
_fss.requestFile(
|
||||
[](const auto& path) -> bool { return std::filesystem::is_regular_file(path); },
|
||||
[this](const auto& path) {
|
||||
_tox_profile_path = path.string();
|
||||
},
|
||||
[](){}
|
||||
);
|
||||
}
|
||||
ImGui::SameLine();
|
||||
ImGui::TextUnformatted(_tox_profile_path.c_str());
|
||||
if (ImGui::BeginChild("conf", {0, ImGui::GetContentRegionAvail().y - TEXT_BASE_HEIGHT*2.f})) {
|
||||
if (ImGui::BeginTabBar("view")) {
|
||||
if (ImGui::BeginTabItem("load profile")) {
|
||||
_new_save = false;
|
||||
|
||||
ImGui::TextUnformatted("password:");
|
||||
ImGui::SameLine();
|
||||
if (_show_password) {
|
||||
ImGui::InputText("##password", &_password);
|
||||
} else {
|
||||
ImGui::InputText("##password", &_password, ImGuiInputTextFlags_Password);
|
||||
}
|
||||
ImGui::SameLine();
|
||||
ImGui::Checkbox("show password", &_show_password);
|
||||
|
||||
ImGui::EndTabItem();
|
||||
}
|
||||
if (ImGui::BeginTabItem("create profile")) {
|
||||
_new_save = true;
|
||||
|
||||
ImGui::TextUnformatted("username:");
|
||||
ImGui::SameLine();
|
||||
if (ImGui::InputText("##user_name", &_user_name)) {
|
||||
std::string tmp_copy = _user_name;
|
||||
for (auto& c : tmp_copy) {
|
||||
if (!std::isalnum(static_cast<unsigned char>(c)) && c != '-' && c != '.') {
|
||||
c = '_';
|
||||
}
|
||||
}
|
||||
|
||||
if (tmp_copy.empty()) {
|
||||
tmp_copy = "unnamed-tomato";
|
||||
}
|
||||
|
||||
_tox_profile_path = tmp_copy + ".tox";
|
||||
}
|
||||
|
||||
ImGui::TextUnformatted("password:");
|
||||
ImGui::SameLine();
|
||||
if (_show_password) {
|
||||
ImGui::InputText("##password", &_password);
|
||||
} else {
|
||||
ImGui::InputText("##password", &_password, ImGuiInputTextFlags_Password);
|
||||
}
|
||||
ImGui::SameLine();
|
||||
ImGui::Checkbox("show password", &_show_password);
|
||||
|
||||
ImGui::TextUnformatted("TODO: profile path (current path for now)");
|
||||
|
||||
ImGui::EndTabItem();
|
||||
}
|
||||
if (ImGui::BeginTabItem("plugins")) {
|
||||
// list of selected plugins (in order)
|
||||
for (auto it = queued_plugin_paths.begin(); it != queued_plugin_paths.end();) {
|
||||
ImGui::PushID(it->c_str());
|
||||
if (ImGui::SmallButton("-")) {
|
||||
it = queued_plugin_paths.erase(it);
|
||||
ImGui::PopID();
|
||||
continue;
|
||||
ImGui::TextUnformatted("profile :");
|
||||
ImGui::SameLine();
|
||||
if (ImGui::Button("select")) {
|
||||
_fss.requestFile(
|
||||
[](const auto& path) -> bool { return std::filesystem::is_regular_file(path); },
|
||||
[this](const auto& path) {
|
||||
_tox_profile_path = path.string();
|
||||
},
|
||||
[](){}
|
||||
);
|
||||
}
|
||||
ImGui::SameLine();
|
||||
ImGui::TextUnformatted(it->c_str());
|
||||
ImGui::TextUnformatted(_tox_profile_path.c_str());
|
||||
|
||||
ImGui::PopID();
|
||||
it++;
|
||||
}
|
||||
|
||||
if (ImGui::Button("+")) {
|
||||
_fss.requestFile(
|
||||
[](const auto& path) -> bool { return std::filesystem::is_regular_file(path); },
|
||||
[this](const auto& path) {
|
||||
queued_plugin_paths.push_back(path.string());
|
||||
},
|
||||
[](){}
|
||||
);
|
||||
}
|
||||
|
||||
ImGui::EndTabItem();
|
||||
}
|
||||
if (ImGui::BeginTabItem("toxcore")) {
|
||||
ImGui::TextDisabled("Be advised that no settings are written to disk.\nUse a config file if you don't want to set these values every start.");
|
||||
|
||||
ImGui::SeparatorText("DNS");
|
||||
|
||||
{
|
||||
static bool value {true};
|
||||
if (ImGui::Checkbox("DNS lookups", &value)) {
|
||||
_conf.set("tox", "dns", value);
|
||||
ImGui::TextUnformatted("password:");
|
||||
ImGui::SameLine();
|
||||
if (_show_password) {
|
||||
ImGui::InputText("##password", &_password);
|
||||
} else {
|
||||
ImGui::InputText("##password", &_password, ImGuiInputTextFlags_Password);
|
||||
}
|
||||
ImGui::SetItemTooltip("Allow toxcore to use your systems name resolver.");
|
||||
ImGui::SameLine();
|
||||
ImGui::Checkbox("show password", &_show_password);
|
||||
|
||||
ImGui::EndTabItem();
|
||||
}
|
||||
if (ImGui::BeginTabItem("create profile")) {
|
||||
_new_save = true;
|
||||
|
||||
ImGui::SeparatorText("Proxy");
|
||||
|
||||
static int proxy_type {0};
|
||||
if (ImGui::Combo("proxy type", &proxy_type, "NONE\0HTTP\0SOCKS5\0")) {
|
||||
if (proxy_type == 0) {
|
||||
_conf.set("tox", "proxy_type", std::string_view{"NONE"});
|
||||
} else if (proxy_type == 1) {
|
||||
_conf.set("tox", "proxy_type", std::string_view{"HTTP"});
|
||||
} else if (proxy_type == 2) {
|
||||
_conf.set("tox", "proxy_type", std::string_view{"SOCKS5"});
|
||||
}
|
||||
}
|
||||
|
||||
ImGui::BeginDisabled(proxy_type == 0);
|
||||
{
|
||||
{
|
||||
static std::string value;
|
||||
if (ImGui::InputText("host", &value)) {
|
||||
_conf.set("tox", "proxy_host", value);
|
||||
ImGui::TextUnformatted("username:");
|
||||
ImGui::SameLine();
|
||||
if (ImGui::InputText("##user_name", &_user_name)) {
|
||||
std::string tmp_copy = _user_name;
|
||||
for (auto& c : tmp_copy) {
|
||||
if (!std::isalnum(static_cast<unsigned char>(c)) && c != '-' && c != '.') {
|
||||
c = '_';
|
||||
}
|
||||
}
|
||||
ImGui::SetItemTooltip("toxcore does not currently support authentication.");
|
||||
|
||||
if (tmp_copy.empty()) {
|
||||
tmp_copy = "unnamed-tomato";
|
||||
}
|
||||
|
||||
_tox_profile_path = tmp_copy + ".tox";
|
||||
}
|
||||
|
||||
ImGui::TextUnformatted("password:");
|
||||
ImGui::SameLine();
|
||||
if (_show_password) {
|
||||
ImGui::InputText("##password", &_password);
|
||||
} else {
|
||||
ImGui::InputText("##password", &_password, ImGuiInputTextFlags_Password);
|
||||
}
|
||||
ImGui::SameLine();
|
||||
ImGui::Checkbox("show password", &_show_password);
|
||||
|
||||
ImGui::TextUnformatted("TODO: profile path (current path for now)");
|
||||
|
||||
ImGui::EndTabItem();
|
||||
}
|
||||
if (ImGui::BeginTabItem("plugins")) {
|
||||
// list of selected plugins (in order)
|
||||
for (auto it = queued_plugin_paths.begin(); it != queued_plugin_paths.end();) {
|
||||
ImGui::PushID(it->c_str());
|
||||
if (ImGui::SmallButton("-")) {
|
||||
it = queued_plugin_paths.erase(it);
|
||||
ImGui::PopID();
|
||||
continue;
|
||||
}
|
||||
ImGui::SameLine();
|
||||
ImGui::TextUnformatted(it->c_str());
|
||||
|
||||
ImGui::PopID();
|
||||
it++;
|
||||
}
|
||||
|
||||
if (ImGui::Button("+")) {
|
||||
_fss.requestFile(
|
||||
[](const auto& path) -> bool { return std::filesystem::is_regular_file(path); },
|
||||
[this](const auto& path) {
|
||||
queued_plugin_paths.push_back(path.string());
|
||||
},
|
||||
[](){}
|
||||
);
|
||||
}
|
||||
|
||||
ImGui::EndTabItem();
|
||||
}
|
||||
if (ImGui::BeginTabItem("toxcore")) {
|
||||
ImGui::TextDisabled("Be advised that no settings are written to disk.\nUse a config file if you don't want to set these values every start.");
|
||||
|
||||
ImGui::SeparatorText("DNS");
|
||||
|
||||
{
|
||||
static bool value {true};
|
||||
if (ImGui::Checkbox("DNS lookups", &value)) {
|
||||
_conf.set("tox", "dns", value);
|
||||
}
|
||||
ImGui::SetItemTooltip("Allow toxcore to use your systems name resolver.");
|
||||
}
|
||||
|
||||
ImGui::SeparatorText("Proxy");
|
||||
|
||||
static int proxy_type {0};
|
||||
if (ImGui::Combo("proxy type", &proxy_type, "NONE\0HTTP\0SOCKS5\0")) {
|
||||
if (proxy_type == 0) {
|
||||
_conf.set("tox", "proxy_type", std::string_view{"NONE"});
|
||||
} else if (proxy_type == 1) {
|
||||
_conf.set("tox", "proxy_type", std::string_view{"HTTP"});
|
||||
} else if (proxy_type == 2) {
|
||||
_conf.set("tox", "proxy_type", std::string_view{"SOCKS5"});
|
||||
}
|
||||
}
|
||||
|
||||
ImGui::BeginDisabled(proxy_type == 0);
|
||||
{
|
||||
{
|
||||
static std::string value;
|
||||
if (ImGui::InputText("host", &value)) {
|
||||
_conf.set("tox", "proxy_host", value);
|
||||
}
|
||||
ImGui::SetItemTooltip("toxcore does not currently support authentication.");
|
||||
}
|
||||
|
||||
{
|
||||
static uint16_t value {0};
|
||||
if (ImGui::InputScalar("port", ImGuiDataType_U16, &value)) {
|
||||
_conf.set("tox", "proxy_port", int64_t(value));
|
||||
}
|
||||
}
|
||||
}
|
||||
ImGui::EndDisabled();
|
||||
|
||||
ImGui::SeparatorText("IP connectivity");
|
||||
|
||||
{
|
||||
static bool value {true};
|
||||
if (ImGui::Checkbox("ipv6", &value)) {
|
||||
_conf.set("tox", "ipv6_enabled", value);
|
||||
}
|
||||
}
|
||||
|
||||
{
|
||||
static bool value {true};
|
||||
if (ImGui::Checkbox("udp", &value)) {
|
||||
_conf.set("tox", "udp_enabled", value);
|
||||
}
|
||||
}
|
||||
|
||||
{
|
||||
static bool value {true};
|
||||
if (ImGui::Checkbox("hole punching", &value)) {
|
||||
_conf.set("tox", "hole_punching_enabled", value);
|
||||
}
|
||||
ImGui::SetItemTooltip("Perform NAT hole punching.\nOnly meaningful if udp is enabled.");
|
||||
}
|
||||
|
||||
{
|
||||
static uint16_t value {0};
|
||||
if (ImGui::InputScalar("port", ImGuiDataType_U16, &value)) {
|
||||
_conf.set("tox", "proxy_port", int64_t(value));
|
||||
if (ImGui::InputScalar("start port", ImGuiDataType_U16, &value)) {
|
||||
_conf.set("tox", "start_port", int64_t(value));
|
||||
}
|
||||
ImGui::SetItemTooltip("The range in which toxcore finds a free port.\nOnly meaningful if udp is enabled.");
|
||||
}
|
||||
}
|
||||
ImGui::EndDisabled();
|
||||
|
||||
ImGui::SeparatorText("IP connectivity");
|
||||
|
||||
{
|
||||
static bool value {true};
|
||||
if (ImGui::Checkbox("ipv6", &value)) {
|
||||
_conf.set("tox", "ipv6_enabled", value);
|
||||
{
|
||||
static uint16_t value {0};
|
||||
if (ImGui::InputScalar("end port", ImGuiDataType_U16, &value)) {
|
||||
_conf.set("tox", "end_port", int64_t(value));
|
||||
}
|
||||
ImGui::SetItemTooltip("The range in which toxcore finds a free port.\nOnly meaningful if udp is enabled.");
|
||||
}
|
||||
}
|
||||
|
||||
{
|
||||
static bool value {true};
|
||||
if (ImGui::Checkbox("udp", &value)) {
|
||||
_conf.set("tox", "udp_enabled", value);
|
||||
ImGui::SeparatorText("local discovery");
|
||||
{
|
||||
static bool value {true};
|
||||
if (ImGui::Checkbox("local discovery", &value)) {
|
||||
_conf.set("tox", "local_discovery_enabled", value);
|
||||
}
|
||||
ImGui::SetItemTooltip("Perform broadcasts in your local networks to find other peers.\nOnly meaningful if udp is enabled.");
|
||||
}
|
||||
}
|
||||
|
||||
{
|
||||
static bool value {true};
|
||||
if (ImGui::Checkbox("hole punching", &value)) {
|
||||
_conf.set("tox", "hole_punching_enabled", value);
|
||||
ImGui::SeparatorText("tcp relay server");
|
||||
{
|
||||
static uint16_t value {0};
|
||||
if (ImGui::InputScalar("server port", ImGuiDataType_U16, &value)) {
|
||||
_conf.set("tox", "tcp_port", int64_t(value));
|
||||
}
|
||||
ImGui::SetItemTooltip("Run a tcp relay server in your client, aiding the network with another relay node.\n!! Check local juristiction and law to not get in trouble.\n0 is disabled");
|
||||
}
|
||||
ImGui::SetItemTooltip("Perform NAT hole punching.\nOnly meaningful if udp is enabled.");
|
||||
|
||||
ImGui::EndTabItem();
|
||||
}
|
||||
|
||||
{
|
||||
static uint16_t value {0};
|
||||
if (ImGui::InputScalar("start port", ImGuiDataType_U16, &value)) {
|
||||
_conf.set("tox", "start_port", int64_t(value));
|
||||
}
|
||||
ImGui::SetItemTooltip("The range in which toxcore finds a free port.\nOnly meaningful if udp is enabled.");
|
||||
}
|
||||
{
|
||||
static uint16_t value {0};
|
||||
if (ImGui::InputScalar("end port", ImGuiDataType_U16, &value)) {
|
||||
_conf.set("tox", "end_port", int64_t(value));
|
||||
}
|
||||
ImGui::SetItemTooltip("The range in which toxcore finds a free port.\nOnly meaningful if udp is enabled.");
|
||||
if (ImGui::BeginTabItem("about")) {
|
||||
ImGuiTomatoAbout();
|
||||
ImGui::EndTabItem();
|
||||
}
|
||||
|
||||
ImGui::SeparatorText("local discovery");
|
||||
{
|
||||
static bool value {true};
|
||||
if (ImGui::Checkbox("local discovery", &value)) {
|
||||
_conf.set("tox", "local_discovery_enabled", value);
|
||||
}
|
||||
ImGui::SetItemTooltip("Perform broadcasts in your local networks to find other peers.\nOnly meaningful if udp is enabled.");
|
||||
}
|
||||
|
||||
ImGui::SeparatorText("tcp relay server");
|
||||
{
|
||||
static uint16_t value {0};
|
||||
if (ImGui::InputScalar("server port", ImGuiDataType_U16, &value)) {
|
||||
_conf.set("tox", "tcp_port", int64_t(value));
|
||||
}
|
||||
ImGui::SetItemTooltip("Run a tcp relay server in your client, aiding the network with another relay node.\n!! Check local juristiction and law to not get in trouble.\n0 is disabled");
|
||||
}
|
||||
|
||||
ImGui::EndTabItem();
|
||||
}
|
||||
ImGui::EndTabBar();
|
||||
}
|
||||
}
|
||||
ImGui::EndChild();
|
||||
|
||||
ImGui::Separator();
|
||||
|
||||
if (!_new_save && !std::filesystem::is_regular_file(_tox_profile_path)) {
|
||||
// load but file missing
|
||||
|
||||
ImGui::BeginDisabled();
|
||||
ImGui::Button("proceed", {TEXT_PROCEED_WIDTH*1.5f, TEXT_BASE_HEIGHT*1.5f});
|
||||
ImGui::EndDisabled();
|
||||
|
||||
if (ImGui::IsItemHovered(ImGuiHoveredFlags_ForTooltip | ImGuiHoveredFlags_AllowWhenDisabled)) {
|
||||
ImGui::SetTooltip("file does not exist");
|
||||
}
|
||||
} else if (_new_save && std::filesystem::exists(_tox_profile_path)) {
|
||||
// new but file exists
|
||||
|
||||
ImGui::BeginDisabled();
|
||||
ImGui::Button("proceed", {TEXT_PROCEED_WIDTH*1.5f, TEXT_BASE_HEIGHT*1.5f});
|
||||
ImGui::EndDisabled();
|
||||
|
||||
if (ImGui::IsItemHovered(ImGuiHoveredFlags_ForTooltip | ImGuiHoveredFlags_AllowWhenDisabled)) {
|
||||
ImGui::SetTooltip("file already exists");
|
||||
}
|
||||
} else {
|
||||
if (ImGui::Button("proceed", {TEXT_PROCEED_WIDTH*1.5f, TEXT_BASE_HEIGHT*1.5f})) {
|
||||
_error_string.clear();
|
||||
|
||||
try {
|
||||
auto new_screen = std::make_unique<MainScreen>(_conf, _renderer, _theme, _tox_profile_path, _password, _user_name, queued_plugin_paths);
|
||||
if (!new_screen) {
|
||||
throw std::runtime_error("failed to init main screen.");
|
||||
}
|
||||
ImGui::End(); // start screen
|
||||
return new_screen.release();
|
||||
} catch (const std::exception& e) {
|
||||
_error_string = std::string{"ToxCore/MainScreen creation failed with: "} + e.what();
|
||||
} catch (...) {
|
||||
_error_string = "ToxCore/MainScreen creation failed with unknown error";
|
||||
ImGui::EndTabBar();
|
||||
}
|
||||
}
|
||||
ImGui::EndChild();
|
||||
|
||||
if (!_error_string.empty()) {
|
||||
ImGui::SameLine();
|
||||
ImGui::TextColored({1.f, 0.5f, 0.5f, 1.f}, "%s", _error_string.c_str());
|
||||
ImGui::Separator();
|
||||
|
||||
if (!_new_save && !std::filesystem::is_regular_file(_tox_profile_path)) {
|
||||
// load but file missing
|
||||
|
||||
ImGui::BeginDisabled();
|
||||
ImGui::Button("proceed", {TEXT_PROCEED_WIDTH*1.5f, TEXT_BASE_HEIGHT*1.5f});
|
||||
ImGui::EndDisabled();
|
||||
|
||||
if (ImGui::IsItemHovered(ImGuiHoveredFlags_ForTooltip | ImGuiHoveredFlags_AllowWhenDisabled)) {
|
||||
ImGui::SetTooltip("file does not exist");
|
||||
}
|
||||
} else if (_new_save && std::filesystem::exists(_tox_profile_path)) {
|
||||
// new but file exists
|
||||
|
||||
ImGui::BeginDisabled();
|
||||
ImGui::Button("proceed", {TEXT_PROCEED_WIDTH*1.5f, TEXT_BASE_HEIGHT*1.5f});
|
||||
ImGui::EndDisabled();
|
||||
|
||||
if (ImGui::IsItemHovered(ImGuiHoveredFlags_ForTooltip | ImGuiHoveredFlags_AllowWhenDisabled)) {
|
||||
ImGui::SetTooltip("file already exists");
|
||||
}
|
||||
} else {
|
||||
if (ImGui::Button("proceed", {TEXT_PROCEED_WIDTH*1.5f, TEXT_BASE_HEIGHT*1.5f})) {
|
||||
_error_string.clear();
|
||||
|
||||
try {
|
||||
auto new_screen = std::make_unique<MainScreen>(_conf, _renderer, _theme, _tox_profile_path, _password, _user_name, queued_plugin_paths);
|
||||
if (!new_screen) {
|
||||
throw std::runtime_error("failed to init main screen.");
|
||||
}
|
||||
ImGui::End(); // start screen
|
||||
return new_screen.release();
|
||||
} catch (const std::exception& e) {
|
||||
_error_string = std::string{"ToxCore/MainScreen creation failed with: "} + e.what();
|
||||
} catch (...) {
|
||||
_error_string = "ToxCore/MainScreen creation failed with unknown error";
|
||||
}
|
||||
}
|
||||
|
||||
if (!_error_string.empty()) {
|
||||
ImGui::SameLine();
|
||||
ImGui::TextColored({1.f, 0.5f, 0.5f, 1.f}, "%s", _error_string.c_str());
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
@@ -10,12 +10,14 @@
|
||||
|
||||
#include <vector>
|
||||
#include <fstream>
|
||||
#include <filesystem>
|
||||
#include <string>
|
||||
#include <iostream>
|
||||
#include <cassert>
|
||||
|
||||
static void eee(std::string& mod) {
|
||||
for (char& c : mod) {
|
||||
c ^= 0x59;
|
||||
c ^= 0x37;
|
||||
}
|
||||
}
|
||||
|
||||
@@ -218,12 +220,31 @@ void ToxClient::saveToxProfile(void) {
|
||||
}
|
||||
eee(_tox_profile_password);
|
||||
}
|
||||
std::ofstream ofile{_tox_profile_path, std::ios::binary};
|
||||
// TODO: improve
|
||||
for (const auto& ch : data) {
|
||||
ofile.put(ch);
|
||||
|
||||
std::filesystem::path tmp_path = _tox_profile_path + ".tmp";
|
||||
tmp_path.replace_filename("." + tmp_path.filename().generic_u8string());
|
||||
|
||||
try {
|
||||
std::ofstream ofile{tmp_path, std::ios::binary};
|
||||
ofile.write(reinterpret_cast<const char*>(data.data()), data.size());
|
||||
ofile.flush();
|
||||
|
||||
if (!ofile.good()) {
|
||||
// TODO: maybe enable fstream exceptions instead?
|
||||
throw std::runtime_error("write error");
|
||||
}
|
||||
} catch (...) {
|
||||
std::filesystem::remove(tmp_path);
|
||||
std::cerr << "TOX saving failed!\n";
|
||||
_save_heat = 10.f;
|
||||
return;
|
||||
}
|
||||
|
||||
std::filesystem::rename(
|
||||
tmp_path,
|
||||
_tox_profile_path
|
||||
);
|
||||
|
||||
_tox_profile_dirty = false;
|
||||
_save_heat = 10.f;
|
||||
}
|
||||
|
@@ -3,6 +3,7 @@
|
||||
#include "./tox_client.hpp"
|
||||
|
||||
#include <solanaceae/toxcore/tox_private_interface.hpp>
|
||||
#include <solanaceae/tox_contacts/tox_contact_model2.hpp>
|
||||
|
||||
#include <tox/tox.h>
|
||||
|
||||
@@ -10,6 +11,9 @@
|
||||
|
||||
#include <solanaceae/util/config_model.hpp>
|
||||
|
||||
#include <entt/entity/registry.hpp>
|
||||
#include <entt/entity/handle.hpp>
|
||||
|
||||
#include <imgui.h>
|
||||
#include <misc/cpp/imgui_stdlib.h>
|
||||
|
||||
@@ -17,9 +21,10 @@
|
||||
|
||||
ToxUIUtils::ToxUIUtils(
|
||||
ToxClient& tc,
|
||||
ToxContactModel2& tcm,
|
||||
ConfigModelI& conf,
|
||||
ToxPrivateI* tp
|
||||
) : _tc(tc), _conf(conf), _tp(tp) {
|
||||
) : _tc(tc), _tcm(tcm), _conf(conf), _tp(tp) {
|
||||
}
|
||||
|
||||
void ToxUIUtils::render(void) {
|
||||
@@ -29,7 +34,7 @@ void ToxUIUtils::render(void) {
|
||||
if (ImGui::BeginMenuBar()) {
|
||||
ImGui::Separator();
|
||||
if (ImGui::BeginMenu("Tox")) {
|
||||
ImGui::SeparatorText("Friends/Groups");
|
||||
ImGui::SeparatorText("Friends");
|
||||
|
||||
if (ImGui::MenuItem("add Friend by ID", nullptr, _show_add_friend_window)) {
|
||||
_show_add_friend_window = !_show_add_friend_window;
|
||||
@@ -37,6 +42,8 @@ void ToxUIUtils::render(void) {
|
||||
if (ImGui::MenuItem("copy own ToxID")) {
|
||||
ImGui::SetClipboardText(_tc.toxSelfGetAddressStr().c_str());
|
||||
}
|
||||
|
||||
ImGui::SeparatorText("Groups");
|
||||
if (ImGui::MenuItem("join Group by ID (ngc)", nullptr, _show_add_group_window)) {
|
||||
_show_add_group_window = !_show_add_group_window;
|
||||
}
|
||||
@@ -62,6 +69,10 @@ void ToxUIUtils::render(void) {
|
||||
ImGui::EndMenu();
|
||||
}
|
||||
|
||||
if (ImGui::MenuItem("new Group (ngc)", nullptr, _show_new_group_window)) {
|
||||
_show_new_group_window = !_show_new_group_window;
|
||||
}
|
||||
|
||||
ImGui::SeparatorText("DHT");
|
||||
|
||||
if (ImGui::MenuItem("rerun bootstrap")) {
|
||||
@@ -111,7 +122,10 @@ void ToxUIUtils::render(void) {
|
||||
|
||||
static Tox_Err_Friend_Add err = Tox_Err_Friend_Add::TOX_ERR_FRIEND_ADD_OK;
|
||||
if (ImGui::Button("add")) {
|
||||
auto [_, err_r] = _tc.toxFriendAdd(hex2bin(std::string_view{tox_id, std::size(tox_id)-1}), message);
|
||||
auto [_, err_r] = _tcm.createContactFriend(
|
||||
std::string_view{tox_id, std::size(tox_id)-1},
|
||||
message
|
||||
);
|
||||
err = err_r;
|
||||
|
||||
{ // reset everything
|
||||
@@ -143,8 +157,8 @@ void ToxUIUtils::render(void) {
|
||||
|
||||
static Tox_Err_Group_Join err = Tox_Err_Group_Join::TOX_ERR_GROUP_JOIN_OK;
|
||||
if (ImGui::Button("join/reconnect")) {
|
||||
auto [_, err_r] = _tc.toxGroupJoin(
|
||||
hex2bin(std::string_view{_chat_id, std::size(_chat_id)-1}),
|
||||
auto [_, err_r] = _tcm.createContactGroupJoin(
|
||||
std::string_view{_chat_id, std::size(_chat_id)-1},
|
||||
self_name,
|
||||
password
|
||||
);
|
||||
@@ -168,5 +182,59 @@ void ToxUIUtils::render(void) {
|
||||
}
|
||||
ImGui::End();
|
||||
}
|
||||
|
||||
if (_show_new_group_window) {
|
||||
if (ImGui::Begin("Tox new Group", &_show_new_group_window)) {
|
||||
ImGui::TextDisabled("NGC refers to the New DHT enabled Group Chats.");
|
||||
ImGui::TextDisabled("Connecting via ID might take a very long time.");
|
||||
|
||||
static int privacy_state{Tox_Group_Privacy_State::TOX_GROUP_PRIVACY_STATE_PUBLIC};
|
||||
ImGui::Combo("privacy state", &privacy_state, "public\0private\0");
|
||||
ImGui::SetItemTooltip("Public groups get announced to the DHT.\nAnyone can scrape the DHT and find your group.\n\nPrivate groups can not be joined via ID (DHT lookup).");
|
||||
|
||||
static std::string name;
|
||||
ImGui::InputText("name of the group", &name);
|
||||
|
||||
static std::string self_name = _conf.get_string("tox", "name").value_or("default_tomato");
|
||||
ImGui::InputText("name of yourself", &self_name);
|
||||
|
||||
static std::string password;
|
||||
ImGui::InputText("password for group", &password);
|
||||
|
||||
static Tox_Err_Group_New err = Tox_Err_Group_New::TOX_ERR_GROUP_NEW_OK;
|
||||
static Tox_Err_Group_Set_Password err_pw = Tox_Err_Group_Set_Password::TOX_ERR_GROUP_SET_PASSWORD_OK;
|
||||
if (ImGui::Button("create")) {
|
||||
auto [new_c, err_r, err_pw_r] = _tcm.createContactGroupNew(
|
||||
static_cast<Tox_Group_Privacy_State>(privacy_state),
|
||||
name,
|
||||
self_name,
|
||||
password
|
||||
);
|
||||
err = err_r;
|
||||
err_pw = err_pw_r;
|
||||
|
||||
{ // reset everything
|
||||
for (size_t i = 0; i < name.size(); i++) {
|
||||
name.at(i) = '\0';
|
||||
}
|
||||
name.clear();
|
||||
|
||||
self_name = _conf.get_string("tox", "name").value_or("default_tomato");
|
||||
|
||||
for (size_t i = 0; i < password.size(); i++) {
|
||||
password.at(i) = '\0';
|
||||
}
|
||||
password.clear();
|
||||
}
|
||||
}
|
||||
if (err != Tox_Err_Group_New::TOX_ERR_GROUP_NEW_OK || err_pw != Tox_Err_Group_Set_Password::TOX_ERR_GROUP_SET_PASSWORD_OK) {
|
||||
ImGui::SameLine();
|
||||
ImGui::Text("error creating group!");
|
||||
ImGui::Text("group: '%s' (%d)", tox_err_group_new_to_string(err), err);
|
||||
ImGui::Text("pw: '%s' (%d)", tox_err_group_set_password_to_string(err_pw), err_pw);
|
||||
}
|
||||
}
|
||||
ImGui::End();
|
||||
}
|
||||
}
|
||||
|
||||
|
@@ -5,12 +5,15 @@
|
||||
class ToxClient;
|
||||
struct ConfigModelI;
|
||||
struct ToxPrivateI;
|
||||
class ToxContactModel2;
|
||||
|
||||
class ToxUIUtils {
|
||||
bool _show_add_friend_window {false};
|
||||
bool _show_add_group_window {false};
|
||||
bool _show_new_group_window {false};
|
||||
|
||||
ToxClient& _tc;
|
||||
ToxContactModel2& _tcm;
|
||||
ConfigModelI& _conf;
|
||||
ToxPrivateI* _tp {nullptr};
|
||||
|
||||
@@ -19,6 +22,7 @@ class ToxUIUtils {
|
||||
public:
|
||||
ToxUIUtils(
|
||||
ToxClient& tc,
|
||||
ToxContactModel2& tcm,
|
||||
ConfigModelI& conf,
|
||||
ToxPrivateI* tp = nullptr
|
||||
);
|
||||
|
Reference in New Issue
Block a user