Premake ignore sa specifc files in 3 & vc build
This commit is contained in:
parent
a3ad7146ec
commit
a1be45cbf9
@ -1,6 +1,5 @@
|
|||||||
#include "pch.h"
|
#include "pch.h"
|
||||||
#ifdef GTASA
|
#include "freecam_sa.h"
|
||||||
#include "freecam.h"
|
|
||||||
|
|
||||||
static CVector gTotalMouse;
|
static CVector gTotalMouse;
|
||||||
FreecamMgr& Freecam = *FreecamMgr::Get();
|
FreecamMgr& Freecam = *FreecamMgr::Get();
|
||||||
@ -187,5 +186,4 @@ FreecamMgr::FreecamMgr()
|
|||||||
Process();
|
Process();
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
#endif
|
|
@ -1,5 +1,4 @@
|
|||||||
#pragma once
|
#pragma once
|
||||||
#ifdef GTASA
|
|
||||||
#include "interface/icheat.hpp"
|
#include "interface/icheat.hpp"
|
||||||
|
|
||||||
/*
|
/*
|
||||||
@ -30,5 +29,4 @@ public:
|
|||||||
void Disable();
|
void Disable();
|
||||||
};
|
};
|
||||||
|
|
||||||
extern FreecamMgr& Freecam;
|
extern FreecamMgr& Freecam;
|
||||||
#endif
|
|
@ -1,7 +1,5 @@
|
|||||||
#include "pch.h"
|
#include "pch.h"
|
||||||
|
#include "neon_sa.h"
|
||||||
#ifdef GTASA
|
|
||||||
#include "neon.h"
|
|
||||||
|
|
||||||
NeonMgr& Neon = *NeonMgr::Get();
|
NeonMgr& Neon = *NeonMgr::Get();
|
||||||
|
|
||||||
@ -270,5 +268,4 @@ void NeonMgr::Install(CVehicle* pVeh, int r, int g, int b)
|
|||||||
void NeonMgr::Remove(CVehicle* pVeh)
|
void NeonMgr::Remove(CVehicle* pVeh)
|
||||||
{
|
{
|
||||||
m_VehNeon.Get(pVeh).m_bNeonInstalled = false;
|
m_VehNeon.Get(pVeh).m_bNeonInstalled = false;
|
||||||
}
|
}
|
||||||
#endif
|
|
@ -1,5 +1,4 @@
|
|||||||
#pragma once
|
#pragma once
|
||||||
#ifdef GTASA
|
|
||||||
#include <extender/VehicleExtender.h>
|
#include <extender/VehicleExtender.h>
|
||||||
#include "interface/icheat.hpp"
|
#include "interface/icheat.hpp"
|
||||||
/*
|
/*
|
||||||
@ -55,5 +54,4 @@ public:
|
|||||||
void Remove(CVehicle* veh);
|
void Remove(CVehicle* veh);
|
||||||
};
|
};
|
||||||
|
|
||||||
extern NeonMgr& Neon;
|
extern NeonMgr& Neon;
|
||||||
#endif
|
|
@ -23,8 +23,7 @@
|
|||||||
// SOFTWARE.
|
// SOFTWARE.
|
||||||
|
|
||||||
#include "pch.h"
|
#include "pch.h"
|
||||||
#ifdef GTASA
|
#include "paint_sa.h"
|
||||||
#include "paint.h"
|
|
||||||
#include "utils/util.h"
|
#include "utils/util.h"
|
||||||
#include <NodeName.h>
|
#include <NodeName.h>
|
||||||
|
|
||||||
@ -319,5 +318,4 @@ void Paint::ResetNodeTexture(CVehicle* pVeh, std::string node_name)
|
|||||||
}, nullptr);
|
}, nullptr);
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
#endif
|
|
@ -23,7 +23,6 @@
|
|||||||
// SOFTWARE.
|
// SOFTWARE.
|
||||||
|
|
||||||
#pragma once
|
#pragma once
|
||||||
#ifdef GTASA
|
|
||||||
#include <vector>
|
#include <vector>
|
||||||
|
|
||||||
class Paint
|
class Paint
|
||||||
@ -84,4 +83,3 @@ public:
|
|||||||
static void ResetNodeColor(CVehicle* veh, std::string node_name);
|
static void ResetNodeColor(CVehicle* veh, std::string node_name);
|
||||||
static void ResetNodeTexture(CVehicle* pVeh, std::string node_name);
|
static void ResetNodeTexture(CVehicle* pVeh, std::string node_name);
|
||||||
};
|
};
|
||||||
#endif
|
|
@ -1,7 +1,6 @@
|
|||||||
#include "pch.h"
|
#include "pch.h"
|
||||||
#include "randomcheats.h"
|
#include "randomcheats_sa.h"
|
||||||
|
|
||||||
#ifdef GTASA
|
|
||||||
RandomCheatsMgr& RandomCheats = *RandomCheatsMgr::Get();
|
RandomCheatsMgr& RandomCheats = *RandomCheatsMgr::Get();
|
||||||
|
|
||||||
void RandomCheatsMgr::Process()
|
void RandomCheatsMgr::Process()
|
||||||
@ -76,5 +75,4 @@ RandomCheatsMgr::RandomCheatsMgr()
|
|||||||
Process();
|
Process();
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
#endif
|
|
@ -1,5 +1,4 @@
|
|||||||
#pragma once
|
#pragma once
|
||||||
#ifdef GTASA
|
|
||||||
#include "interface/icheat.hpp"
|
#include "interface/icheat.hpp"
|
||||||
#include "pch.h"
|
#include "pch.h"
|
||||||
|
|
||||||
@ -28,5 +27,4 @@ public:
|
|||||||
void DrawList();
|
void DrawList();
|
||||||
};
|
};
|
||||||
|
|
||||||
extern RandomCheatsMgr& RandomCheats;
|
extern RandomCheatsMgr& RandomCheats;
|
||||||
#endif
|
|
@ -5,8 +5,8 @@
|
|||||||
#include "utils/util.h"
|
#include "utils/util.h"
|
||||||
|
|
||||||
#ifdef GTASA
|
#ifdef GTASA
|
||||||
#include "custom/freecam.h"
|
#include "custom/freecam_sa.h"
|
||||||
#include "custom/randomcheats.h"
|
#include "custom/randomcheats_sa.h"
|
||||||
#include <CMessages.h>
|
#include <CMessages.h>
|
||||||
#include <CSprite2d.h>
|
#include <CSprite2d.h>
|
||||||
#include <CAERadioTrackManager.h>
|
#include <CAERadioTrackManager.h>
|
||||||
|
@ -3,6 +3,7 @@
|
|||||||
#include "menu.h"
|
#include "menu.h"
|
||||||
#include "utils/widget.h"
|
#include "utils/widget.h"
|
||||||
#include "utils/util.h"
|
#include "utils/util.h"
|
||||||
|
#include "kiero/minhook/MinHook.h"
|
||||||
|
|
||||||
#ifdef GTASA
|
#ifdef GTASA
|
||||||
#include "ped.h"
|
#include "ped.h"
|
||||||
@ -99,6 +100,7 @@ void Player::Init()
|
|||||||
m_bAimSkinChanger = gConfig.Get("Features.AimSkinChanger", false);
|
m_bAimSkinChanger = gConfig.Get("Features.AimSkinChanger", false);
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
|
||||||
// Custom skins setup
|
// Custom skins setup
|
||||||
std::string path = GAME_PATH((char*)"modloader/");
|
std::string path = GAME_PATH((char*)"modloader/");
|
||||||
if (GetModuleHandle("modloader.asi") && std::filesystem::is_directory(path))
|
if (GetModuleHandle("modloader.asi") && std::filesystem::is_directory(path))
|
||||||
|
@ -4,8 +4,8 @@
|
|||||||
class Player
|
class Player
|
||||||
{
|
{
|
||||||
private:
|
private:
|
||||||
static inline bool m_bPlayerRegen;
|
|
||||||
static inline bool m_bGodMode;
|
static inline bool m_bGodMode;
|
||||||
|
static inline bool m_bPlayerRegen;
|
||||||
static inline bool m_bModloaderInstalled;
|
static inline bool m_bModloaderInstalled;
|
||||||
struct KeepPosition
|
struct KeepPosition
|
||||||
{
|
{
|
||||||
@ -47,6 +47,7 @@ private:
|
|||||||
#endif
|
#endif
|
||||||
|
|
||||||
public:
|
public:
|
||||||
|
|
||||||
Player() = delete;
|
Player() = delete;
|
||||||
Player(const Player&) = delete;
|
Player(const Player&) = delete;
|
||||||
|
|
||||||
|
@ -10,8 +10,8 @@
|
|||||||
|
|
||||||
#ifdef GTASA
|
#ifdef GTASA
|
||||||
#include <tHandlingData.h>
|
#include <tHandlingData.h>
|
||||||
#include "custom/neon.h"
|
#include "custom/neon_sa.h"
|
||||||
#include "custom/paint.h"
|
#include "custom/paint_sa.h"
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
void Vehicle::Init()
|
void Vehicle::Init()
|
||||||
|
@ -49,6 +49,14 @@ function createProject(projectID)
|
|||||||
"../src/**.c",
|
"../src/**.c",
|
||||||
"../src/**.cpp"
|
"../src/**.cpp"
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (upperID ~= "SA") then
|
||||||
|
removefiles {
|
||||||
|
"../src/**_sa.c",
|
||||||
|
"../src/**_sa.hpp",
|
||||||
|
"../src/**_sa.cpp"
|
||||||
|
}
|
||||||
|
end
|
||||||
|
|
||||||
if upperID == "III" then
|
if upperID == "III" then
|
||||||
upperID = "3"
|
upperID = "3"
|
||||||
|
Loading…
Reference in New Issue
Block a user