Finding Howler


This week, we got another awesome song from Michael Shawn Carbaugh II! (At the moment, I'm going to make you wait to hear it though.) After receiving the song, I realized that we have some serious issues with audio looping in Maven's engine. There are basically three methods to looping audio that I have pondered.

Audio Loop Using Single Audio Element

Currently, the engine uses HTML5's audio element with the loop attribute.




The great thing about this method is that it is built into HTML5 and is very easy to implement. For example, the HTML for the example above is simply this:

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
<button id="playAudioSingle">Play</button>
<button id="pauseAudioSingle">Pause</button>
<br/>
<audio id="audioSingle" src="IntoDarknessHalfLoop.mp3" loop controls></audio>
<script>
	document.getElementById("playAudioSingle").onclick = function() {
		document.getElementById("audioSingle").play();
	};
	document.getElementById("pauseAudioSingle").onclick = function() {
		document.getElementById("audioSingle").pause();
	};
</script>

However, as you may have noticed, the playback of the loop is imperfect, and the extent of this imperfection varies depending on the browser.

Read More

Better Weather


Did I ever show off the new weather graphics from Freedan Studios?
Better Weather Screenshot

Layering


In the real world, when one person is standing in front of another, you see the front person and not so much of the one behind. In a game world, it is a little bit difficult to ensure that interacting objects display to show accurately who is "in front." Let me show you what I am talking about.
Guy on top of woman's head

If we choose to not think about layering, we may easily end up drawing sprites in random order, with the effect that one sprite may look like it is walking on another sprite's head.
Read More

Git'n Back Up and Runnin'


This is "The Designer" here, back from my internship. As a team, SoloVid is at a place now where I think we are shifting into "full-time" production (as full-time as a handful of students' free-time work can be). We are looking dreamily at a release around the end of the school year.

As Freedan briefly mentioned earlier this summer, we are now using Git to version-control Maven. For those of you unfamiliar with Git (as was I before the summer), Git is one software which allows multiple people to work on the same set of project files simultaneously and then merge the changes together. On top of that, Git keeps a record of all changes made to the project so that changes may be reverted if necessary. Basically, what that equates to is easy collaboration and an total inability to irreparably mess up the project--no more emailing or Google Docs-ing files back and forth, and no more archives.

We are working primarily out of a private repo on BitBucket in order to hide our assets (we have to save some surprises for the game's release), but we do have a periodically up-to-date mirror of the repo (minus assets) on Github. Feel free to check it out!

Unfortunately, we didn't make our goal of releasing the new and improved demo yet, but we are still hoping to get that out in exactly soon...

Hiccups Hath Occurred


I do not want to be writing this post. Unfortunately, The Designer and I were mistaken to give a release date of August 6 for the demo. Being new to game design, we are still figuring out how long goals will take to reach. Ironically, though I made a blog post concerning time management just last week, The Designer and I are still working on our own. We hope that you will nevertheless continue to follow our progress for the day on which the demo actually releases. In the meantime, here is one of the sprites that you will find in the map:

Thanks for reading,
~ Freedan


Stall

Working with Time


This week has been a busy one in the development of Maven. The Designer and I have been working on our own respective roles for the game, in order to reach the point where we have something playable. One of the most difficult aspects of a project like this is organization. Knowing when to get something done, and how to complete it, can be a challenge. We have been using online resources to help overcome this, such as a nifty organizing website called Trello. Tasks in Trello are created on "cards," which can then be relocated to slots such as "do to," "Finished," etc. Because of this visual representation, we can see everything we need to do and when we need to do it.

This system has allowed content for Maven to be created in a more timely manner. It can also be quite satisfying to literally drag "to do" cards into a "finished" slot! In fact, I need to mark my "blog post" card as finished. See you next week!

~ Freedan

P.S. Don't forget ... the demo releases on August 6! :)

Progress Update


Hello,

This is just another quick update on the demo progress. The designer and I will be looking over the completed demo map tonight, in preparation for adding story and gameplay elements. We would also be happy to hear peoples' feedback on the demo when the time comes. If you are interested, read the August 6 blog post. Again, that is when the demo will be released.

Come back next week!
~Freedan

Demo Next Month


This week, I've been putting together more of the demo map. The Designer and I plan to release it in August. I am aiming for no later than August 6th, specifically. The demo will include a full map, basic NPC interaction, and hopefully even a combat section. In the meantime, The Designer has been experimenting with the engine to see how many sprites we can run, as well as fixing bugs.
I won't be showing any screenshots just yet, although I may show a very, very small screenshot later on, just so that you can see a portion of what The Designer and I are working on. For now, mark August 6th on your calenders!

See you next week,
~ Freedan

P.S. We have a simple playable demo on the site that uses a much older version of the game, with mostly pre - made graphics. This will use custom graphics and an updated, custom engine created by The Designer.

Maps and Demos


Hey guys,

This post is going to be short and sweet. The Designer and I have been working towards creating a working map in Maven. We also decided that I should be put in charge of creating a demo for the game. While The Designer's main focus is creating the finished game, I have been extremely eager to give people a way to experience the game before it is completed. So, that is what I aim to do. I am finishing some preliminary concept sketches (Similar to the one in the previous post) for the demo map, which will then be made into a fully functional map within the editor! It'll be a while before it's done, but that is what you can look forward to in the future.

See you soon,
~Freedan

Pre-Production!


The longer one works with digital media, the more one realizes just how necessary planning is. For Maven maps, this is especially true. After creating the first section of a larger map (The garrison, which I showed in an earlier post), I decided to draw a simple map of the next section: The marketplace.

This section is designed to evoke the crowded feel of a chaotic marketplace while also being simple to navigate.  To the left and right of the market will be living areas, and above it will be the garrison, whose soldiers guard the market from potential thieves. In the game, characters will also hopefully be able to obtain food and armor from market stalls. I hope to create a more immersive environment by including different areas in this map like this rather than just slapping a bunch of tents onto it.

Next up: Actual graphics for the marketplace! For now, here's my quick concept sketch. The Garrison paper is just a list of object markers so that I know where my garrison objects are in the editor.

Enjoy!
~Freedan
Newer PostsOlder Posts