-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update Version to 1.1
- Loading branch information
Showing
2 changed files
with
29 additions
and
28 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,21 +1,14 @@ | ||
MIT License | ||
|
||
Copyright (c) 2021 forbit | ||
Copyright (c) 2022 forbit | ||
|
||
Permission is hereby granted, free of charge, to any person obtaining a copy | ||
of this software and associated documentation files (the "Software"), to deal | ||
in the Software without restriction, including without limitation the rights | ||
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | ||
copies of the Software, and to permit persons to whom the Software is | ||
furnished to do so, subject to the following conditions: | ||
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to | ||
deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or | ||
sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: | ||
|
||
The above copyright notice and this permission notice shall be included in all | ||
copies or substantial portions of the Software. | ||
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. | ||
|
||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | ||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, | ||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE | ||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER | ||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, | ||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE | ||
SOFTWARE. | ||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, | ||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER | ||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS | ||
IN THE SOFTWARE. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,50 +1,58 @@ | ||
# <img src="logo.png" width="60" /> GM Server | ||
|
||
[](https://jitpack.io/#dev.forbit/gm-server/1.0.4) [](https://f0rbit.github.io/gm-server/) | ||
[](https://jitpack.io/#dev.forbit/gm-server/1.1) [](https://f0rbit.github.io/gm-server/) | ||
|
||
A barebone server for talking with **GameMaker: Studio** games written in **Java** | ||
|
||
# Usage | ||
|
||
### Gradle | ||
|
||
Add the following to your `build.gradle` | ||
|
||
```gradle | ||
repositories { | ||
maven { url 'https://jitpack.io' } | ||
} | ||
dependencies { | ||
implementation 'dev.forbit:gm-server:1.0.4' | ||
implementation 'dev.forbit:gm-server:1.1' | ||
} | ||
``` | ||
|
||
### Maven | ||
|
||
Add the following to your `pom.xml` | ||
|
||
```xml | ||
|
||
<repositories> | ||
<repository> | ||
<id>jitpack.io</id> | ||
<url>https://jitpack.io</url> | ||
</repository> | ||
<repository> | ||
<id>jitpack.io</id> | ||
<url>https://jitpack.io</url> | ||
</repository> | ||
</repositories> | ||
|
||
<dependencies> | ||
<dependency> | ||
<dependency> | ||
<groupId>dev.forbit</groupId> | ||
<artifactId>gm-server</artifactId> | ||
<version>1.0.4</version> | ||
</dependency> | ||
<version>1.1</version> | ||
</dependency> | ||
</dependencies> | ||
``` | ||
|
||
## Examples | ||
|
||
Inside the `examples` directory, is the `client-template`. This template is what you should base your GameMaker game off of. It includes basic implementation to connect to the TCP and UDP server, with only needed to change a couple macros. | ||
Inside the `examples` directory, is the `client-template`. This template is what you should base your GameMaker game off of. It includes basic | ||
implementation to connect to the TCP and UDP server, with only needed to change a couple macros. | ||
|
||
There is also an example of a basic platformer game [here](./example/platformer-basic) called `platformer-basic`. | ||
|
||
If you'd like a guided breakdown of how to implement this, or where to start, check out this [wiki article](https://github.com/f0rbit/gm-server/wiki/Walkthrough-of-platformer-basic-example) | ||
If you'd like a guided breakdown of how to implement this, or where to start, check out | ||
this [wiki article](https://github.com/f0rbit/gm-server/wiki/Walkthrough-of-platformer-basic-example) | ||
|
||
### License | ||
|
||
The source code is licensed under the [MIT License](./LICENSE.md) |