Skip to content

Commit 4ff20e8

Browse files
committedJun 7, 2021
Add support for minimal-extended modular gamemode
1 parent b390e0b commit 4ff20e8

File tree

3 files changed

+60
-0
lines changed

3 files changed

+60
-0
lines changed
 

‎AddonInfo.cs

+31
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
using System;
2+
using System.Collections.Generic;
3+
using MinimalExtended;
4+
using Sandbox;
5+
6+
namespace Wirebox
7+
{
8+
[Library("wirebox")]
9+
public class AddonInfo : IAddonInfo
10+
{
11+
public string Name => "WireBox";
12+
13+
public string Description => "Wiremod for S&Box";
14+
15+
public string Author => "Wireteam";
16+
17+
public double Version => 0.1;
18+
19+
public List<AddonDependency> Dependencies => new()
20+
{
21+
new AddonDependency()
22+
{
23+
Name = "Sandbox",
24+
MinVersion = 1.0
25+
}
26+
};
27+
28+
// No main class as it should be instantiated by the Entities/Tools (so far)
29+
public Type MainClass => null;
30+
}
31+
}

‎README.md

+28
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
# Wiremod for S&box
2+
3+
## Current status
4+
5+
Very early WIP (as is S&box itself). There's basic wiring of thrusters/lights to buttons.
6+
Players/Testers: there's nothing to do yet
7+
8+
## Setup
9+
10+
S&box is currently focused around 'Gamemodes', not modular addons,
11+
however [[A]lex is working on a modular Gamemode framework](https://github.com/Ceveos/minimal-extended) which might work for us. There's thus two install approaches:
12+
13+
### Using minimal-extended modular gamemode framework
14+
```
15+
cd steamapps/common/sbox/addons
16+
git clone https://github.com/Ceveos/minimal-extended.git
17+
cd minimal-extended/code/addons
18+
git clone https://github.com/wiremod/wirebox.git
19+
cd wirebox
20+
./unpack-assets.bat
21+
```
22+
23+
Alternatively, use the latest Github Release as a base
24+
25+
### Copying overtop of the base [sandbox gamemode](https://github.com/facepunch/sandbox)
26+
27+
1. Load in-game or `git clone https://github.com/facepunch/sandbox.git` to `sbox/addons/`
28+
2. Copy this repo on-top

‎unpack-assets.bat

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
xcopy /E models\wirebox\ ..\..\..\models\wirebox\

0 commit comments

Comments
 (0)
Please sign in to comment.