Urban Terror launcher.
This repository has been archived on 2022-06-29. You can view files and clone it, but cannot push or open issues or pull requests.
Go to file
Stanislav Nikitin df4d6a3cca macOS fixes for profiles and launching. Version bump.
More fixes here. First, fixed binary path parsing for profiles,
so you should be able to add a profile on macOS now. Only one
requirement - you should add Quake3-UrT.x86_64 file, which located
inside Urban Terror's application bundle, under Contents/MacOS
directory.

Fixed the way we call Urban Terror on macOS and tested it. Should
work now flawlessly.

Bumped to 0.1.0-beta2, and mac-only release for now.
2016-10-09 17:06:47 +05:00
artwork Added artwork. 2016-10-09 00:40:36 +05:00
cache Completely fixed favorited servers. You may want to re-edit them. 2016-10-09 01:29:46 +05:00
cachemodels One more huge refactoring and quick connect widget working. 2016-10-08 19:57:33 +05:00
colorizer More debug output and servers refresh fix. 2016-10-07 02:50:52 +05:00
common macOS fixes for profiles and launching. Version bump. 2016-10-09 17:06:47 +05:00
configuration Possible Windows support. 2016-10-05 14:05:37 +05:00
context One more huge refactoring and quick connect widget working. 2016-10-08 19:57:33 +05:00
database Many fixes and debug prints removed. 2016-10-07 22:21:19 +05:00
datamodels Favorites servers fix, one server update and show privates. 2016-10-07 14:28:44 +05:00
doc macOS fixes for profiles and launching. Version bump. 2016-10-09 17:06:47 +05:00
eventer One more huge refactoring and quick connect widget working. 2016-10-08 19:57:33 +05:00
ioq3dataparser Players parsing fixes and short info done. 2016-10-06 21:34:14 +05:00
launcher macOS fixes for profiles and launching. Version bump. 2016-10-09 17:06:47 +05:00
requester One more huge refactoring and quick connect widget working. 2016-10-08 19:57:33 +05:00
ui macOS fixes for profiles and launching. Version bump. 2016-10-09 17:06:47 +05:00
.gitignore macOS fixes for profiles and launching. Version bump. 2016-10-09 17:06:47 +05:00
LICENSE Initial commit, what works: 2016-10-04 15:42:36 +05:00
README.md Updated macOS build script and some README update. 2016-10-09 03:29:36 +05:00
urtrator.go Fix for windows not to show console on launch. 2016-10-08 23:57:21 +05:00

README.md

URTrator

Join the chat at https://gitter.im/urtrator/Lobby

Main Window

URTrator is a desktop application that should (eventually) replace Urban Terror's and IRC client interfaces for you, because they're pretty shitty :).

Disclaimer: This software isn't written nor supported (for now) by FrozenSand. All code is a community effort.

Right now it can:

  • Obtaining list of Urban Terror servers from master server and updating information about them.
  • Local caching of whole data (in SQLite3 database).
  • Extended Urban Terror launching capabilities (e.g. launching game in another X session).
  • Supporting of multiple profiles with multiple game versions. When you're launching Urban Terror URTrator will check profile you're trying to use and, if version incompatability found, will not launch the game.
  • Favorites servers.
  • Updating single server.
  • Showing information about servers (like in UrT Connector).

Planning:

  • Friends searching.
  • RCON console.
  • Game updating (not from official servers yet, sorry).
  • Pickup/matchmaking interfaces.
  • All kinds of notifications.
  • Extended profile editor, so every profile could have own configuration files, etc.
  • Clipboard monitoring.
  • ...maybe more :)

Installation

Release

You don't need to install anything, thanks to Go's. URTrator executable contains everything we need. Just download approriate binary and launch it! :) The only thing is to make sure you have GTK2 and sqlite3 installed.

Distro-and-OS specific instructions

  • MacOS
  • Windows (to be written)
  • Nixes: read below.

Development version

URTrator written in Go and GTK2, so you should have them installed. Make sure your GOPATH variable is defined.

Then execute:

go get -d github.com/pztrn/urtrator
go install github.com/pztrn/urtrator

First command will get sources of URTrator and dependencies, second command will build executable for you and place it in $GOROOT/bin.

Updating

go get will do initial repo clone for you, but flag -u is required to get updated URTrator source. So, for updating sources just issue:

go get -d -u github.com/pztrn/urtrator

Again, this will only update sources. To build executable you have to issue:

go install github.com/pztrn/urtrator

Important information

GTK warnings in console

Many GTK warnings in console may appear while using URTrator. Unfortunately, they are out of control, because they are related to Go GTK+2 bindings and nothing can be done on URTrator side.

Why GTK+2?

Because GTK+3 going on "stable api nonsense" way. And also it have some troubles with integrating with current popular WM/DE (like XFCE4, Openbox, etc.). And also I already tired of that shitty Adwaita and Cantarella.

If you want to use GTK+3, well, you can write UI for yourself, Go bindings exist.