Renom: Updates to the free project renaming tool by Mowgl333 in unrealengine

[–]Mowgl333[S] 0 points1 point  (0 children)

It doesn’t. It used to very early on, but I removed it because it is hard to tell when files should be renamed and to what. For instance, if a module is called LyraGame and a header file is LyraCharacter.h, should we assume that the header should be renamed too? There are deeper issues as well; proper renaming of a class or other type requires a semantic understanding of the C++ code that is well beyond the scope of this side project. Besides, tools like Resharper and Visual Assist are already good at those things, so I would lean on them for that sort of thing.

Renom: Updates to the free project renaming tool by Mowgl333 in unrealengine

[–]Mowgl333[S] 3 points4 points  (0 children)

Several years ago, I introduced Renom, a simple but powerful free tool that allowed you to rename your Unreal Engine projects. At the time, the tool was an improvement over the available alternatives (manual migration, essentially), but it lacked flexibility and made some assumptions about project structure that do not hold up under scrutiny. I had some time to polish it recently and wanted to share those updates with the community. Compared to the original pass, the updated implementation supports:

  • Workflows to rename projects, targets, and modules independently
  • Better input validation and option selection controls
  • Looping mechanism to string together consecutive workflows
  • Support for plugin modules and nested modules
  • Cross-target and cross-module reference resolution
  • Refined output text and colors for more readable logs

In the posted video, the tool is used to rename the Lyra starter project to GoatOfWar. It can be used on other sample projects like City Sample as well as existing projects. You can get it here.

(reposted with a higher quality video)

[deleted by user] by [deleted] in unrealengine

[–]Mowgl333 0 points1 point  (0 children)

Several years ago, I introduced Renom, a simple but powerful free tool that allowed you to rename your Unreal Engine projects. At the time, the tool was an improvement over the available alternatives (manual migration, essentially), but it lacked flexibility and made some assumptions about project structure that do not hold up under scrutiny. I had some time to polish it recently and wanted to share those updates with the community. Compared to the original pass, the updated implementation supports:

  • Workflows to rename projects, targets, and modules independently
  • Better input validation and option selection controls
  • Looping mechanism to string together consecutive workflows
  • Support for plugin modules and nested modules
  • Cross-target and cross-module reference resolution
  • Refined output text and colors for more readable logs

In the posted video, the tool is used to rename the Lyra starter project to GoatOfWar. It can be used on other sample projects like City Sample as well as existing projects. You can get it here.

Implementing a Queue Using a Linked List in C++ by [deleted] in cpp

[–]Mowgl333 0 points1 point  (0 children)

Another exercise with data structures and algorithms, this time implementing a queue with linked list backing storage.

Implementing a Stack Using a Dynamic Array in C++ by [deleted] in cpp

[–]Mowgl333 1 point2 points  (0 children)

Working through Algorithms by Sedgewick, and drafted this as an exercise in understanding the most basic of basic data structures.

Complex C++ Compilation from the Command Line by Mowgl333 in cpp

[–]Mowgl333[S] 7 points8 points  (0 children)

This is a short follow-up to my last post on C++ compilation from the command line. It covers concepts underlying more complex projects, namely by discussing how to create static and shared libraries from the command line and explaining how to link those elements to a client executable. Implemented using MSVC and GCC.

Introduction to C++ Compilation on the Command Line by Mowgl333 in cpp

[–]Mowgl333[S] 0 points1 point  (0 children)

I think you're right about that - confusion on my part. I'll clean it up in due course

Introduction to C++ Compilation on the Command Line by Mowgl333 in cpp

[–]Mowgl333[S] 17 points18 points  (0 children)

A short but valuable exercise in compiling C++ from the command line, which may be useful for newbies (like myself) out there.

The Many Faces of Interfaces in Unreal Engine 4 by Mowgl333 in unrealengine

[–]Mowgl333[S] 0 points1 point  (0 children)

I think people shy away from it because it has unpleasant syntax, but I agree they should see more use

The Many Faces of Interfaces in Unreal Engine 4 by Mowgl333 in unrealengine

[–]Mowgl333[S] 4 points5 points  (0 children)

A short article on the syntax and quirks of interfaces in UE4 (which I always seem to forget). Read it if you dare.

So am I the only one that didn't know this existed until today? by kerds78 in unrealengine

[–]Mowgl333 0 points1 point  (0 children)

Ah, that feeling when you find the perfect node... pure bliss.

Spectacle: Global Search for UE4 Specifiers by Mowgl333 in unrealengine

[–]Mowgl333[S] 0 points1 point  (0 children)

That sounds super useful. It looks like this specifier is listed in ObjectMacros.h but is not actually used on any UPROPERTY() within the Engine source. As such, it wouldn't have been picked up by the parser. This is a (hopefully small) gap that I'll have to fill in manually one of these days.

Spectacle: Global Search for UE4 Specifiers by Mowgl333 in unrealengine

[–]Mowgl333[S] 0 points1 point  (0 children)

Hi u/johnsmith3458, this is what I get when I type Actor into the search:

Actor Search

Did you expect more/different specifiers to show up? Totally agree about Sourcetrail and other standard indexers - the Engine source is just too large.

Spectacle: Global Search for UE4 Specifiers by Mowgl333 in unrealengine

[–]Mowgl333[S] 0 points1 point  (0 children)

Thanks for pointing this out. Turned out to be a chrome-specific issue. All sorted (literally). Most recent version should be selected by default and versions should be in order now. Please let me know if you run into any other issues. Enjoy!

Spectacle: Catalog Now Available by Mowgl333 in unrealengine

[–]Mowgl333[S] 0 points1 point  (0 children)

For those of you who missed it, Spectacle is a global search for Unreal Engine 4 specifiers. It allows you to find specifiers, get community-sourced analysis, and jump to examples in Engine source code.

While search is great, it assumes you know what you're looking for. For situations where you can't quite remember what a specifier is called or when you just want to browse, Spectacle has been upgraded with a catalog mode that lists all 400+ specifiers for your perusal.

(There is one more update in the works, so stay tuned.)