Welcome, Guest. Please login or register. Did you miss your activation email?

Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Messages - mrzo

Pages: [1]
1
SFML projects / Re: A.I. Chatbot + 2D space exploration game!
« on: June 11, 2022, 05:44:46 pm »
Some updates on the development:

  • I overhauled the complete GUI with an uniform color theme and new widgets.
  • The A.I. assistant considers your surroundings: you can refer to objects in the game such as stars, stations or hostile ships and the chatbot responds to that.
  • I implemented a trading system with economic cycles. If you are clever, you can make money by buying
     and selling resources at the right time. You can always ask your A.I. assistant for more help.

If you want to see some screenshots, you can have a look here:
https://imgur.com/gallery/7vOOrfb

Or you can visit the steam page:
https://store.steampowered.com/app/1670930/Black_Sun/?utm_source=sfml

2
SFML projects / Re: A.I. Chatbot + 2D space exploration game!
« on: January 29, 2022, 01:40:41 am »
Some people asked me on other channels how the actual gameplay looks like so I made an extra trailer showing it.

https://www.youtube.com/watch?v=sKnqTd7yUWY

In general, you can decide how to steer your space ship: completely by yourself or by using the A.I. assistant. The same is valid for combat. You can ask the A.I. to take over the weapons and put it either in defensive mode (only firing at hostile missiles) or aggressive mode (attacking hostile ships directly). Or - if you feel like it - you can take control of the guns and fire at your will.

3
SFML projects / Re: I combined a A.I. Chatbot with a 2D exploration game!
« on: January 19, 2022, 12:40:52 pm »
I added a fast dynamic grid so I can finally resolve collisions between hundreds of asteroids.

https://www.youtube.com/watch?v=KXx_vg3Y-xQ

4
SFML projects / Re: Screenshot Thread
« on: January 13, 2022, 01:20:49 pm »
I finally managed to add a proper asteroid field to my space game.


5
SFML projects / Re: Axioms Of Dominion, An Empire Forging Game
« on: January 03, 2022, 06:41:48 pm »
Sounds like fun! Do you have website with visuals or screenshots from the UI? I didn't find any on your game design website.

6
SFML projects / Re: I combined a A.I. Chatbot with a 2D exploration game!
« on: December 20, 2021, 12:14:18 pm »
It is actually almost instant so I had to add a small delay to make it more "human-like" :)

It's quite fast because a neural network translates the input string into a fixed size vector which is compared with an existing database of vectors of other pre-translated semantic patterns. This allows me to cover many different wordings of the same commands (e.g. the vectors for "Repair the ship" and "Fix the damage please" are quite similar). When finding a similar pattern, I can simply return its recorded response or call its attached action.

The database currently contains around 10k pairs of patterns and responses / actions. But even with 1M of patterns there shouldn't be any problem with the performance since it is a simple cosine similarity calculation :)

7
SFML projects / A.I. Chatbot + 2D space exploration game!
« on: December 19, 2021, 09:36:52 pm »
Hey SFML fellows,

So I love space exploration games (first thing I tried with SFML was an asteroid shooter)! But space is big - so sometimes it is a little bit boring to fly through or to do the daily trading grind all by yourself. That's how I came up with the idea of an A.I. assistant who gives you some company. Her name is Hopper. She is not the smartest conversational android out there but at least she knows how to steer a space ship.

The game is called Black Sun and it will take some time before I can put it in a polished-enough state to release it in Early Access but I am already very excited to share this trailer with you:

http://www.youtube.com/watch?v=oBjvcstFTqQ

The libraries I use are:

You can follow the development of the game on steam (https://store.steampowered.com/app/1670930/Black_Sun/) or on twitter, youtube or soundcloud (https://linktr.ee/blacksungame).

Take care and if you have any questions, feel free to ask :)

Pages: [1]
anything