Hello 馃憢 I鈥檓 Alastair

Startenders: Intergalactic Bartending

At its heart, Startenders is an intergalactic bartending game with a key focus on getting the player moving around and using machines, pouring drinks and memorizing the bar. ...

February 11, 2022 路 3 min 路 Alastair

Brunch Club 馃

Brunch Club is an action packed party game about food that can be played solo or up to 4 players with a seasoning of pop culture. Try, try, and fry again! Can you stand the heat, or will you have to get out of the kitchen? ...

January 20, 2021 路 2 min 路 Alastair

EVE SSO OAuth

With an understanding of how to retrieve data from the public CREST API endpoints, I want to get down the authentication side of things before I get into the fun stuff. Third-party applications for EVE Online can now make use of the Single Sign On (SSO) user flow, allowing users to authenticate the application via the EVE login servers. This is great for web-based applications but causes a bit of hassle for non-web applications....

February 22, 2016 路 2 min 路 Alastair

EVE Static Data Export & Solar Systems

Shoot for the moon! Part of the goal for the EVE Online CREST API challenge was to visualize the chosen trade route. To do this I鈥檝e made use of both the CREST API and Static Data Export (SDE) to populate a series of uGUI buttons for each region. There鈥檚 not a whole lot of reasons to use the CREST API to poll static data such as regions, but it shows that I know how to use it....

February 21, 2016 路 1 min 路 Alastair

LINQ Queries

Ok, so we鈥檙e back in development mode now. I鈥檝e pulled lots of data from the CREST API and it鈥檚 being displayed but we need to be able to filter and sort it so it鈥檚 useful to us. Hopefully you鈥檝e come accross LINQ at some point - Language-INtegrated Query. This stuff is great, it鈥檚 basically cheat codes for programming. The first thing we want to do is sort all sell orders by price because we want to know where to go for the best deal in New Eden....

February 19, 2016 路 1 min 路 Alastair

Stop Calling Them Scripts

Or don鈥檛, I鈥檓 not a cop! Ok, this is more a personal habit but a sensible one - hear me out. The most commonly referenced thing in unity is the idea of a Script, Unity even uses it in its context menus when creating new C# Scripts. This idea is a remnant from the days when programming in Unity was made to look approachable by non-technical game developers and frustratingly stuck around....

February 16, 2016 路 2 min 路 Alastair

Meta Data

With the data in and stored in sensible C# classes, we can start to have some fun - I鈥檝e added in some meta data about the current search item. By checking the lastest history item with the latest but, comparisons can be made about their differences. in this case, the change in price and percentage change. double _latest = hist.items[hist.items.Count - 1].avgPrice; double _latestButOne = hist.items[hist.items.Count - 2].avgPrice; double _change = (_latest - _latestButOne); double _percentChange = (_change / _latestButOne); DateTime _latestDate = DateTime....

February 15, 2016 路 1 min 路 Alastair

Search Period

One of the main features of the EVE Online Market view is filtering history by a date range, allowing the player to see trends over 1 year, 6 months, 3 months, and the last 7 days. Luckily all entries in the history come with a date time string, which can be parsed directly to a .NET DateTime object. Compare this with a date from six months ago and we can filter the results....

February 15, 2016 路 1 min 路 Alastair

Unity & Graph Maker

Make something already! Ok, so we鈥檙e gonna be pulling down loads of information from the CREST API so it鈥檚 going to have to be displayed in a sensible way and there鈥檚 nothing more sensible than graphs. Graph Maker is a fantastic plugin for Unity that allows the creation of fully dynamic 2D graphs and charts, honestly, the work put into this is just incredible - oh and it鈥檚 fully supported by the new Unity UI framework....

February 15, 2016 路 2 min 路 Alastair

You are not a web designer

You are a games developer Excuse me while I jump on my high horse for this one. Personal portfolio websites are a great way of cataloging your games and projects but be careful about how much time you put into creating your website over the projects you want to show. I鈥檝e been guilty of this before - spending weekend are weekend finding and customising the perfect WordPress template to show off all my work....

February 15, 2016 路 2 min 路 Alastair

JSON to C#

Introduction The following post explains how to deserialize JSON into C# classes using the Unity game engine. It provides an overview of CREST API endpoints, which can be used to request data in Unity, and suggests a few tools and resources for parsing and serializing JSON data. Getting started With a knowledge of the CREST API endpoints, requests can start being made for data - in Unity this is as simple as initialising a new WWW object with the specified endpoint URL....

February 12, 2016 路 3 min 路 Alastair

Making The First Call

The CREST API has a fistful of endpoints available to 3rd party developers. Interestingly, sending a request to the root endpoint returns a JSON string of all available endpoints; pretty handy. https://public-crest.eveonline.com/ Most browsers will return this object as a download as there is no filetype associated with the response. When sent through an application however, the string can be read as normal. This stuff is pretty straight forward as all that needs doing is identifying the desired endpoint, some examples are outlined below....

February 12, 2016 路 2 min 路 Alastair

Developer or Gamer

As a developer it becomes difficult to see games in the same way as gamers. The perfect example of this for me is EVE Online - the fantastically technical MMO. I鈥檝e tried to play it many times - and like many others found it difficult to really get into; now this isn鈥檛 a criticism of the game, I guess it鈥檚 just not my play style. But what I do love is it鈥檚 technical magnificence....

February 11, 2016 路 2 min 路 Alastair

EVE Online Static Data Export (SDE)

Show me what you鈥檝e got! EVE Online does something wonderful with its data, it doesn鈥檛 hide it away behind fancy graphics and menus; it puts it on display for the whole universe to see. Almost everything you see in many of EVE鈥檚 user interfaces is pulled from a database with IDs, put in a table for you to filter and analyze as you see fit. However, these IDs are not shown in the game, instead their name and description are used to identify items in a market search for example....

February 11, 2016 路 2 min 路 Alastair