Lioncache
32da55ef5b
CCollisionRenderSettingsDialog: Reduce copies
2025-12-03 15:49:17 -05:00
Lioncache
f34886a76e
CSelectResourcePanel: Elide copies where applicable
...
We can just pass by const reference.
2025-12-03 15:43:22 -05:00
Lioncache
b13ebc56bb
CProgressDialog: Remove redundant future copies
...
We can pass by reference here.
2025-12-03 15:38:47 -05:00
Lioncache
449798b16c
Editor: Mark functions internally linked where applicable
2025-12-03 10:41:35 -05:00
Lioncache
c010e0e7cb
IEditor: Eliminate variable shadowing
2025-12-03 10:34:37 -05:00
Lioncache
faffce9c97
CExportGameDialog: Eliminate variable shadowing
2025-12-03 10:09:18 -05:00
Lioncache
e0f33910d3
CExportGameDialog: Remove uses of string_view .data()
...
We can use safer methods here by using the bounded size.
2025-12-03 10:06:19 -05:00
Lioncache
4067d9ec9f
main: Remove deprecated Hi-DPI attributes
...
Turns out these are always enabled, so there's no need to specify them
explicitly.
2025-12-03 09:57:28 -05:00
Lioncache
8270cf4a2b
CSceneViewport: Use non-deprecated variant of QMouseEvent
2025-12-03 09:54:37 -05:00
Lioncache
1f877cd761
CCharacterEditor: Remove redundant animation access
...
We can just use the retrieved animation the first time.
2025-12-03 08:07:43 -05:00
Lioncache
5cf54f4bca
CBasicViewport: Remove unnecessary casts
2025-12-03 07:51:09 -05:00
Lioncache
397c3554e8
CStateMessageModel: Move SEntry name
...
Allows for eliminating a redundant copy
2025-12-02 23:18:30 -05:00
Lioncache
70c3d7d68c
CNodeSelection: Avoid copy churning
...
We can return via const reference to avoid making redundant copies of
QLists.
2025-12-02 23:00:01 -05:00
Lioncache
64b38a1358
CSceneViewport: Move node list in OnSelectConnected()
...
Gets rid of unnecessary copying.
2025-12-02 22:59:48 -05:00
Lioncache
ea47abb3ca
CResourceTableModel: Make parent directory signifier untranslatable
...
There's basically no reason to allow translation of this.
2025-12-02 22:59:35 -05:00
Lioncache
2e4ddea65b
CResourceBrowser: Allow navigating directories with the Enter keys
...
Previously the resource browser required you to double click on
everything in order to interact with it (going into directories, or
launching handlers for particular files, etc).
This is kinda stinky workflow-wise long-term when flipping between
assets; so we can make the interface a little less mouse-centric by
allowing the use of the enter keys to also perform the same behavior.
2025-12-02 22:59:08 -05:00
Lioncache
137bed91d8
INodeEditor: Mark strings as literals
2025-12-02 22:58:50 -05:00
Lioncache
d768118cdc
CBasicViewport: Map arrow keys to WSAD
...
Just provides straightforward left-handed analogs on the other side of the keyboard
for moving the viewport camera.
2025-12-02 22:58:27 -05:00
Lioncache
2e2ca40596
Main: Remove now unnecessary version check
...
Since we require Qt 6 now, we can just make this code unconditional.
2025-12-01 16:17:55 -05:00
Lioncache
2419b11b45
Editor: Disable implicit Qt string conversions
...
Requires that our format conversions be explicit.
2025-12-01 16:08:27 -05:00
Lioncache
5fc6b50923
Editor: Mark remaining undo command strings as translatable
...
Ensures that we're marking the remnant potential display strings
properly.
2025-12-01 14:38:30 -05:00
Lioncache
db7e832f32
Editor: Update to C++23
...
Track the latest standard instead of being stuck on C++17.
2025-12-01 01:51:47 -05:00
Lioncache
fbddb3f7be
CMakeLists: Silence unavoidable warnings on MSVC
2025-11-30 23:06:21 -05:00
Lioncache
682290c8d1
externals: Update LibCommon
...
Tracks the latest commit to make use of tinyxml2 11.0.0 instead of 7.0.0
2025-11-30 17:33:00 -05:00
Lioncache
e4637a75c4
dewfile: Update tinyxml2 from 7.0.0 to 11.0.0
...
7.0.0 is around 7 years old, so we should be tracking a more up to date
version. This also makes the library compatible with CMake 4.0+
2025-11-30 17:02:11 -05:00
Lioncache
dc393c6415
dewfile: Update zlib from 1.2.11 to 1.3.1
...
In addition to API improvements and security fixes, this also makes zlib
buildable using CMake 4.0+, since it removes backwards compatibility for
older CMake versions.
2025-11-30 16:51:39 -05:00
Lioncache
3dc25217a1
CPasteNodesCommand: Make use of unique_ptr
...
Same behavior, but simplified allocation handling.
2025-11-30 16:45:31 -05:00
Lioncache
43eae548ac
Editor: Convert QVector over to QList
...
In Qt 6 QVector is now a typedef alias for QList, so we can convert these over
to make the semantics explicit.
2025-11-30 15:44:23 -05:00
Lioncache
0e56aa3fa8
CEditorApplication: Remove wonky closing parenthesis in package cooking dialog
...
This just looks out of place (and is a remnant from the translation
string changes).
2025-11-30 15:19:29 -05:00
Henrique Gemignani Passos Lima
596bc275eb
Merge pull request #56 from lioncash/qt6
...
General: Update to Qt6
2025-11-30 13:52:25 +01:00
Lioncache
b2bd0cd326
General: Update to Qt6
...
Migrate over to Qt 6 so that we can keep the UI toolkit pegged at the
current major version.
Unfortunately this also means we have to gut a small feature in the
progress dialogs, since the extras module doesn't exist in Qt6 anymore.
Few things of note:
QVector<> is internally an alias of QList now, so any changeover is due
to that to make the semantics a little clearer.
QtConcurrent requires arguments to be swapped on some invocations, and
discarding instances need to use the global thread pool instead.
fromStdList(), etc can be replaced with range constructors.
--no-angle and other commands are removed from newer versions of
windeployqt
QVariant::Invalid (and other type IDs) are deprecated and also break
existing functionality. Instead we can return default constructed
QVariants where applicable, which restores functionality that would be
broken if left as is (e.g. many list would straight up not populate or
have wonky size hinting).
The reason for this is that the QVariant(QVariant::Type) constructor
models a unique kind of internal QVariant state where it's considered
to be in an invalid state, but accessing the (supposedly) invalid state
will instead return a default constructed value of the internal type.
This kinda sucks because this means genuinely invalid states that would
warrant an assertion or other type of error would be silently ignored
and execution would continue on as normal, so this also enforces
correctness a little bit (on top of, well, fixing all the broken UI
controls).
2025-11-29 19:54:35 -05:00
Henrique Gemignani Passos Lima
b8dcdcf514
Merge pull request #51 from Bearborg/allow-primehack
...
Allow using PrimeHack for QuickPlay
2025-08-10 19:41:15 +03:00
Bearborg
14432a870d
Allow using PrimeHack for QuickPlay
2023-05-21 14:35:07 -04:00
Henrique Gemignani Passos Lima
e5d1678ff6
Merge pull request #50 from Bearborg/master
...
Update dependencies
2023-05-21 20:39:01 +03:00
Bearborg
e85f7cc560
Update dependencies
2023-05-21 13:31:11 -04:00
Henrique Gemignani Passos Lima
2fe042be80
Add Memo Type to HUDMemoMP1
2023-02-22 01:37:51 +02:00
Henrique Gemignani Passos Lima
1ab67ad1c6
MP1R: Add HUDMemoMP1
2023-02-18 04:45:36 +02:00
Henrique Gemignani Passos Lima
36f16edd76
MP1R: Add more OnlyIfModified
2023-02-17 01:46:12 +02:00
Henrique Gemignani Passos Lima
4f73ff5717
MP1R Templates: Fix field order, add CookIfModified
2023-02-17 00:22:52 +02:00
Henrique Gemignani Passos Lima
4e3c27171f
Fix MP1R templates
2023-02-16 11:52:33 +02:00
Henrique Gemignani Passos Lima
ab6933ab30
Merge pull request #49 from duncathan/mp1r-templates
...
add remastered templates
2023-02-16 11:25:43 +02:00
duncathan
f6cf885c30
more mp1r templates
2023-02-16 02:39:15 -06:00
Henrique Gemignani Passos Lima
7cd4cdcd25
Merge pull request #48 from duncathan/mp1r-templates
...
add remastered templates
2023-02-15 23:48:19 +02:00
duncathan
70f29fb51c
Merge remote-tracking branch 'origin/master' into mp1r-templates
2023-02-15 15:33:58 -06:00
Henrique Gemignani Passos Lima
5d419ad691
Merge pull request #43 from duncathan/instance-ids
...
adds instance ID to list
2023-02-15 10:39:18 +02:00
Henrique Gemignani Passos Lima
43e74df966
Merge pull request #46 from duncathan/tweaks
...
add tweak fourccs to echoes game.xml ScriptObjects section
2023-02-15 10:38:46 +02:00
duncathan
8ac6e4b227
Pickup
2023-02-15 01:32:25 -06:00
duncathan
af1a4dc3d9
add 175 placeholder templates for remastered
2023-02-14 19:20:53 -06:00
duncathan
a267ddfb59
flesh out SLdrWorldTeleporterTooMP1
2023-02-14 16:13:24 -06:00
Henrique Gemignani Passos Lima
f620fc7066
Add incomplete flag to MP1r's SLdrWorldTeleporterTooMP1
2023-02-15 00:03:40 +02:00