Replaced loose code files with gists

This commit is contained in:
Buckminsterfullerene02 2022-10-18 17:20:21 +01:00
parent 10213cdece
commit 4af6af85e9
8 changed files with 13 additions and 3174 deletions

File diff suppressed because it is too large Load Diff

View File

@ -1,5 +0,0 @@
cd %~1
del /s *.uexp, *.ubulk
for /r %%g in (*.uasset) do (
type NUL>%%~dpng.uasset
)

View File

@ -1 +0,0 @@
DEL "path to files\*.*" /S /Q

View File

@ -1,35 +0,0 @@
using System;
using System.IO;
namespace GenerateBPY {
class Program {
static void Main(string[] args)
{
var inputPath = @"F:\DRG Modding\DRGPacker\JSON\Blender\SMs\"; // Where your static meshes are
var outputPath = @"F:\DRG Modding\DRGPacker\JSON\Assets\Game\"; // Where you want your FBX files to go
var commandsPath = @"F:\DRG Modding\DRGPacker\JSON\Blender\BlenderCommands\commands.py"; // Where you want your commands file to go
var allfiles = Directory.GetFiles(inputPath, "*.gltf", SearchOption.AllDirectories);
var command = "import bpy\n\n";
for (var i = 0; i < allfiles.Length; i++)
{
// model already converted?
if (File.Exists((outputPath + allfiles[i].Remove(0, inputPath.Length)).Replace(".gltf", ".fbx"))) continue;
var InputFile = allfiles[i];
var OutputFile = (outputPath + allfiles[i].Remove(0, inputPath.Length)).Replace(".gltf", ".fbx");
var folder = Path.GetDirectoryName(outputPath + allfiles[i].Remove(0, inputPath.Length));
// create output directory
Directory.CreateDirectory(folder);
command += "bpy.ops.import_scene.gltf(filepath = \"" + InputFile.Replace("\\", "\\\\") +
"\", files =[{ \"name\":\"" + Path.GetFileName(InputFile) + "\", \"name\":\"" +
Path.GetFileName(InputFile) + "\"}], loglevel = 50)\n";
command += "bpy.ops.export_scene.fbx(filepath=\"" + OutputFile.Replace("\\", "\\\\") + "\")\n";
command += "bpy.ops.object.select_all(action='SELECT')\n";
command += "bpy.ops.object.delete(use_global=False, confirm=False)\n\n";
}
File.WriteAllText(commandsPath, command); // CHANGE
}
}
}

View File

@ -1,48 +0,0 @@
$RootPath = "D:\DEV\TresGame\Source\TresGame"
$Confirm = $False # Confirm each step?
# *.h
Get-ChildItem -Path $RootPath -Filter *.h -Recurse | ForEach-Object {
$PathToFile = $_.FullName
$ClassName = $_.BaseName
$FileContent = Get-Content -Path $PathToFile
if ($FileContent -match "class .*A$ClassName : public"){
# is actor
#$PathToFile
$ClassName
if ($Confirm){
Write-Host "Continue replace?"
pause
}
$FileContent -replace [System.Text.RegularExpressions.Regex]::Escape("A$ClassName();"), "A$ClassName(const FObjectInitializer& ObjectInitializer);" | Set-Content -Path $PathToFile
#Write-Host ""
}
}
# *.cpp
Get-ChildItem -Path $RootPath -Filter *.cpp -Recurse | ForEach-Object {
$PathToFile = $_.FullName
$ClassName = $_.BaseName
$FileContent = Get-Content -Path $PathToFile
if ($FileContent -match [System.Text.RegularExpressions.Regex]::Escape("A$ClassName::A$ClassName() {")){
# is actor
#$PathToFile
$ClassName
if ($Confirm){
Write-Host "Continue replace?"
pause
}
$FileContent -replace [System.Text.RegularExpressions.Regex]::Escape("A$ClassName::A$ClassName() {"), "A$ClassName::A$ClassName(const FObjectInitializer& ObjectInitializer) : Super(ObjectInitializer) {" | Set-Content -Path $PathToFile
#Write-Host ""
}
}

View File

@ -1,23 +0,0 @@
@echo off
:Save_Backup_Utility
set ue_game_save_name=GAMEPROJECTNAMEHERE
for /f "tokens=1-3 delims=1234567890 " %%a in ("%time%") Do set "delims=%%a%%b%%c"
for /f "tokens=1-4 delims=%delims%" %%G in ("%time%") Do (
set _hh=%%G
set _min=%%H
set _ss=%%I
set _ms=%%J
)
set _hh=%_hh: =%
if 1%_hh% LSS 20 Set _hh=0%_hh%
set save_storage_dir=Storage\Save_Backups\%ue_game_save_name%
if not exist %save_storage_dir% mkdir %save_storage_dir%
set temp_save_dir="%save_storage_dir%\Date_%date:/=%\Time_%_hh%_%_min%_%_ss%\Saved\SaveGames"
set temp_config_dir="%save_storage_dir%\Date_%date:/=%\Time_%_hh%_%_min%_%_ss%\Saved\Config\WindowsNoEditor"
mkdir %temp_save_dir%
mkdir %temp_config_dir%
copy "%localappdata%\%ue_game_save_name%\Saved\SaveGames\*.sav" %temp_save_dir%
copy "%localappdata%\%ue_game_save_name%\Saved\Config\WindowsNoEditor\*.ini" %temp_config_dir%
exit /b

View File

@ -1,14 +0,0 @@
:: e.g. "F:\DRG Modding\DRGTools\UModel\umodel.exe"
set umodel_path="path to UModel.exe"
:: e.g. "F:\DRG Modding\DRGPacker\_unpacked\FSD\Content"
set content_path="path to unpacked content files"
:: e.g. 4.27
set ue_version=4.27
:: e.g. "F:\DRG Modding\DRGPacker\JSON\Blender\SMs"
set output_path="path to output folder"
:: Animations:
%umodel_path% -path=%content_path% -game=ue4.27 -out=%output_path% -nooverwrite -nostat -novert -notex -nomorph -nolightmap -export *.uasset
:: Static Meshes:
%umodel_path% -path=%content_path% -game=ue4.27 -out=%output_path% -gltf -nomesh -noanim -nooverwrite -novert -notex -nomorph -nolightmap -export *.uasset

View File

@ -72,7 +72,7 @@ Tools that deal with editing the textures, animations and models from UE4 games.
- Just click a face, set up the variables it asks for in the 3D View, and click the button
* [NVIDIA Texture Tools Exporter](https://developer.nvidia.com/nvidia-texture-tools-exporter) - Written by **NVIDIA**
- The NVIDIA Texture Tools Exporter allows users to create highly compressed texture files directly from image sources
* [3DSMax Bulk Export PSK/PSA to FBX](https://github.com/Buckminsterfullerene02/UE4-Modding-Tools/blob/main/Loose%20Files/ActorXAnimConverter.ms) - Written by **Gildor**, adapted by **Aproydtix**
* [3DSMax Bulk Export PSK/PSA to FBX](https://gist.github.com/Buckminsterfullerene02/12947999641c6a290f2cbbaf4e0ee313) - Written by **Gildor**, adapted by **Aproydtix**
- Version of ActorX 3DSMax script that can bulk convert PSK/PSA to FBX
- [Original Script](https://www.gildor.org/projects/unactorx) by Gildor, and modifications by Aproydtix from OpenKH
- Also will do deformation fixes to put an animation on a modified skeleton
@ -93,7 +93,7 @@ Tools that generate SDKs and dump the game's code.
- A simple script to make the plugin manifest for the project gen commandlet because <=4.17 games don't include them
- Usage is pretty simple, after fulling dumping your UE4 game just drag and drop the root extracted folder onto the program
- It'll spit out a file named "new.upluginmanifest" which can be renamed to whatever you want
* [Add Object Initialiser To Actors in Project Files](https://github.com/Buckminsterfullerene02/UE4-Modding-Tools/blob/main/Loose%20Files/ObjectInitializerActorConstructorScript.ps1) - Written by **dedede123**
* [Add Object Initialiser To Actors in Project Files](https://gist.github.com/Buckminsterfullerene02/90d1d02a6639f656e284bd799801241c) - Written by **dedede123**
- Adds object initializer to the constructor/static class of all Actor classes in your uproject files
- Modify to set the correct folder, and could be modified to apply to other types of classes as well if needed
* [Unreal Mappings Dumper](https://github.com/OutTheShade/UnrealMappingsDumper) - Written by **OutTheShade**
@ -155,18 +155,18 @@ Tools that deal with audio modding. You don't need any tools to mod the default
## Automation
Tools that can help to automate the modding pipeline (that haven't been covered already).
* [Backup UE Saves](https://github.com/Buckminsterfullerene02/UE4-Modding-Tools/blob/main/Loose%20Files/SaveBackupUtility.bat) - Written by **Mythical**
* [Backup UE Saves](https://gist.github.com/Buckminsterfullerene02/479a281cf3d8a854e91cf804bd7fb8cb) - Written by **Mythical**
- Just edit the Game project name to your particular game and it will backup the `.sav` and `.ini` files for that game or just toss it in one of your existing bat files
* [Auto-Disable uasset Files](https://github.com/Buckminsterfullerene02/UE4-Modding-Tools/blob/main/Loose%20Files/DisableUassets.bat) - Written by **Spuds**
* [Auto-Disable uasset Files](https://gist.github.com/Buckminsterfullerene02/aebbbc6cde0456a852197260656314c0) - Written by **Spuds**
- Deletes `.uexp` and `.ubulk` files and replaces `.uassets` with blank files of the same name recursively when a folder containing exported assets is dragged onto it
* [Create Empty Content Folder Hierarchy](https://github.com/Buckminsterfullerene02/UE4-Modding-Tools/blob/main/Loose%20Files/EmptyContentHierarchyGenerator.bat) - Written by **Buckminsterfullerene**
* [Create Empty Content Folder Hierarchy](https://gist.github.com/Buckminsterfullerene02/43ac2fe1c760b101de4b452dd711ce3f) - Written by **Buckminsterfullerene**
- Deletes every file inside of a specified directory but leaves all of the folders intact
- Useful for creating a blank content folder hierarchy for a game
* [Extract All Anim Assets](https://github.com/Buckminsterfullerene02/UE4-Modding-Tools/blob/main/Loose%20Files/UModelExtract.bat) - Written by **Buckminsterfullerene**
* [Extract All Anim Assets](https://gist.github.com/Buckminsterfullerene02/789fb38a2f1ccd2ef55262a90be578d9) - Written by **Buckminsterfullerene**
- A batch script of a couple nice UModel commands to extract all of the animation assets from a game
- Running the second command directly after the first is beneficial since all game packages are loaded into memory which saves a lot of time not having to do it twice
- To use, just change the variable paths
* [Generate Blender Script To Convert GLTF to FBX](https://github.com/Buckminsterfullerene02/UE4-Modding-Tools/blob/main/Loose%20Files/GenerateBPY.cs) - Written by **LongerWarrior**, edited by **Buckminsterfullerene**
* [Generate Blender Script To Convert GLTF to FBX](https://gist.github.com/Buckminsterfullerene02/6b49374b8a8da0d992e73a22c9e0d7dc) - Written by **LongerWarrior**, edited by **Buckminsterfullerene**
- C# program to generate a Blender script that can be used to mass convert GLTF files extracted from UModel to FBX files
- To use, just change the paths in the C# script
@ -215,6 +215,12 @@ Other tools that aren't necessarily to do with UE, but are commonly used to help
* [Visual Studio 2017 Community Installer](https://github.com/Buckminsterfullerene02/UE4-Modding-Tools/blob/main/Loose%20Files/vs_Community.exe) - Posted by **Narknon**
- VS-2017 Community installer because microsoft apparently removed it from available downloads??
# Guides
Guides that are useful for modding UE games.
## General
* [Setting up UE as git merge tool for BPs](https://gist.github.com/Panakotta00/c90d1017b89b4853e8b97d13501b2e62)
# UE Modding Discord Servers
A bunch of links to various UE Modding Discord servers. If you know of any that aren't listed here, please make a PR. Although I have tried my best to get permanent invite links, I am not responsible for any being invalid. Feel free to nick this list of Discord servers for your own Discord.