Skip to content

Commit

Permalink
photoshoot we ball
Browse files Browse the repository at this point in the history
  • Loading branch information
BrettMayson committed Nov 28, 2024
1 parent d66412e commit 018a338
Show file tree
Hide file tree
Showing 64 changed files with 4,574 additions and 347 deletions.
1 change: 0 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@ releases/

# VSCode Extension
node_modules
dist/
*.vsix

# Browser Extensions
Expand Down
182 changes: 181 additions & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 4 additions & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,11 +12,14 @@ members = [
"libs/p3d",
"libs/paa",
"libs/pbo",
"libs/photoshoot",
"libs/preprocessor",
"libs/signing",
"libs/sqf",
"libs/stringtable",
"libs/workspace",

"arma",
]
resolver = "2"

Expand Down Expand Up @@ -45,6 +48,7 @@ dirs = "5.0.1"
git2 = "0.19.0"
indexmap = "2.6.0"
insta = "1.41.1"
interprocess = "2.2.2"
linkme = "0.3.31"
lsp-types = "0.97.0"
paste = "1.0.15"
Expand Down
15 changes: 15 additions & 0 deletions arma/.hemtt/project.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
name = "HEMTT"
author = "BrettMayson"
prefix = "hemtt"
mainprefix = "x"

[version]
git_hash = 0
major = 0
minor = 0
patch = 0

[files]
include = [
"hemtt_comm_x64.dll"
]
16 changes: 16 additions & 0 deletions arma/Cargo.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
[package]
name = "hemtt-comm"
authors = ["Brett Mayson <[email protected]>"]
version = "0.1.0"
edition = "2021"

[lib]
name = "hemtt_comm"
crate-type = ["cdylib"]

[dependencies]
hemtt-common = { path = "../libs/common" }

arma-rs = "1.10.5"
interprocess = { workspace = true }
serde_json = { workspace = true }
1 change: 1 addition & 0 deletions arma/addons/main/$PBOPREFIX$
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
x\hemtt\addons\main
10 changes: 10 additions & 0 deletions arma/addons/main/CfgFunctions.hpp
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
class CfgFunctions {
class HEMTT {
class Extension {
class setMission {
file = QPATHTO_F(functions\setMission);
preInit = 1;
};
};
};
};
14 changes: 14 additions & 0 deletions arma/addons/main/config.cpp
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
#include "script_component.hpp"

class CfgPatches {
class ADDON {
name = QUOTE(COMPONENT);
units[] = {};
weapons[] = {};
requiredVersion = REQUIRED_VERSION;
requiredAddons[] = {};
VERSION_CONFIG;
};
};

#include "CfgFunctions.hpp"
2 changes: 2 additions & 0 deletions arma/addons/main/functions/setMission.sqf
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
diag_log format ["setMission: %1", getMissionPath ""];
diag_log format ["response: %1", "hemtt_comm" callExtension ["mission", [getMissionPath ""]]];
Loading

0 comments on commit 018a338

Please sign in to comment.