Skip to main content

Posts

Showing posts from 2010

PewPew Beta, for Android

Currently my work has shifted from developing PewPew to porting it to several different phone OS. I'll try to write a post later about the process of porting, because there's lot's of interesting bits I've discovered. A few weeks ago I submitted a version of PewPew for the Bada OS to Samsung, but it got rejected because my website contained an image of an iPhone and a link to the App Store. At first I was surprised, but they simply don't want to have iPhone advertisement flaunted at their customers, which is understandable. In the meanwhile I ported PewPew to Android and improved many things, and because I got rejected, those improvements will get to be in the initial Bada OS release as well (I try to look on the bright side of things). Regarding the Android version, I don't know how well my app works on other phones, so I am starting a beta process. I want to get PewPew perfectly right before I submit it to the Android Market: I am a firm believer that first i...

PewPew 1.4 and PewPew 2 1.2 submitted to the app store

I finally submitted to the App Store updated versions of PewPew and PewPew 2 ! Both versions now support the iPad's and the iPhone 4's resolution. Most changes are in PewPew 2 : There's an improved Chapter One : among the things I did was adding visual feedback showing destructible objects were reacting to the players' bullets, so the players would know those objects were destructible . More importantly, I've corrected the bug where the game denied the completion of a level when a player died just after completing the level's objectives, but before the transition back to the menu. There's the long awaited Chapter Two ! It took a really long time to create because it's containing a lot of new enemies, and the levels are more complex than in the first chapter. I now display the best times for the campaign levels. I've added a new infinity mode that you unlock by completing the chapter Two. This mode is very different from the existing ones since you...

Lack of updates because...

I am porting PewPew to the Bada OS. There is a contest going on, and I believe I have a real chance of winning a price ;-)

PewPew, step 10

At the beginning of this blog, I used to do short movies showing the progress of the game. I think it's cool to look back and see what changed and what hasn't. Following this spirit, I made a small video showing the new game mode in action: It features two new enemies internally called "Rolling Cube" and "Planner" :) It looks really cool, but I still find it hard to play because my fingers tend to slip off the screen. This is because when the two ships are going in opposite directions, they cancel each others movement. Because I want to move anyway, I naturally move my fingers away from the centers of the joysticks, and thus move my fingers off the touchscreen. There is really nothing I can do, except maybe visually notify the players that they are already moving as much as they can, and that they don't need to move their fingers further from the center. Come to think about it, it's an excellent idea. Yay. Now back to work.

One month after...

The lack of posts on this blog is due to some furious bug fixing. During this past month I submitted to the App Store: -PewPew 2 -PewPew 2 Lite, but I removed it from the app store immediately because I had actually uploaded the full version, instead of the Lite version... -an update to PewPew 1 to notify everyone about PewPew 2 -an update to PewPew 2 because PewPew 2 was crashing when the score table was full, and because the iPad version simply did not start. It got rejected because the game did not support correctly the orientations of the iPad... -a second update to PewPew 2 to fix all the issues I was aware of at the time (it got accepted). At the moment, there seems to be no bugs left on the iPhone, but the iPad version sometimes crashes when validating a score, or when editing the name... It will get fixed! While waiting for Apple to approve the various updates, I worked on the campaign. In the next campaign, you'll fight the "Boss" once more. This time however, it...

Gold

PewPew 2 is Gold! I submitted it to the App Store yesterday, and hopefully it will be accepted in the App Store within a week. It will be priced at $1.99, which I think is a very good deal considering the quality of the content :o This month I did some beta testing on different devices (3GS, iPad), and discovered the performance on the 3GS was worse than on my iPod 2G! I lost a lot of time trying to find out what the problem was, until I finally found a post in a forum explaining that using timers to set the FPS is bad on the iPhone OS 3.0. I also did a small trailer with iMovie: PewPew 2 trailer from Jean-François Geyelin on Vimeo . It was my first time doing video editing, and it was pretty fun. It's frustrating that iMovie does not allow placing the text where we want it, but overall it's still a cool and simple software. That is all for now, more updates when PewPew 2 is live.

PewPew 2's progress

I haven't posted in quite some time now because I've been so busy with programming PewPew 2, but quite a few people are asking for news, so here we go: PewPew 2 is progressing real well. Here are some of the new features that are currently done : -Scores can be uploaded anytime, not just after you've played (it should have been the case from the start, I know) -Replays are now uploaded along the scores. This will allow you to watch and admire the best players play. Also, you'll be able to show off. -Better graphics, 3D sound, seriously optimized engine. -2 new sound tracks. -A 10 level campaign with a lot of diversity. And a boss. -2 new unlock-able game modes (in addition to megagore, assault, chromatic conflict and dodge this) -Medals. These are rewards when you achieve certain scores in one of the 6 game modes. -6 different ships. You progressively unlock them by obtaining medals. -Lot's of new ennemies. I think it's enough new content for a first release of...

Volumetric lines 2

I promised I was going to do a follow up on the Volumetric Lines episode, so here it is. Like I said, it was very easy to change from regular lines, to using volumetric lines in PewPew. In fact, I already changed once the way lines are drawn: the early versions of PewPew used SDL without OpenGL, so the lines were drawn in software using the good old Bresenham . Switching to OpenGL forced me to reduce the coupling between the renderer, and the game engine. Here is all I had to do to make the switch to volumetric lines, besides the initialization: #ifdef USE_VOLUMETRIC_LINES for (int index=0; index < numberOfVertex; index+=6) VolumeLineRenderer::getInstance().renderLine( &vertexes[index], &vertexes[index+3] ); #else glVertexPointer(3, VERTEX_TYPE, 0, vertexes); glDrawArrays(GL_LINES, 0, numberOfVertex); #endif Here are some new screenshots comparing the regular render to Sebastien Hillaire's one with different line width. Now this is running on a PC, not on ...

Automatic .caf file creation

As I said in the previous post, I am currently working on adding sound effects to PewPew 2. The preferred format for sound effects with OpenAL on the iPhone is the .caf ( Core Audio Format ), but audio softwares usually output .wav files. Fortunately, there's an easy way to convert one format to the other, using a built in command in OS X: afconvert -f caff -d LEI16@44100 -c 1 in.wav out.caf Being a programmer, I am lazy, so I started thinking about automatizing the conversion for all my .wav files using a small python script that would look like that: for every file in the directory: exec "afconvert -f caff -d LEI16@44100 -c 1 file.wav file.caf" But it was not going to be efficient: every time I would want to regenerate a single .caf file, the script would regenerate all of them. And then it hit me: makefiles are made to solve this exact problem. I tested my idea with a small makefile that looked like: test.caf: test.wav afconvert -f caff -d LEI16@44100 -c 1 test.wav t...

Happy new year

First of all, happy new year. For some, 2009 was the year of the Ox and 2010 will be the year of the Tiger. For me, 2009 was the year of PewPew, and 2010 will be the year of PewPew 2! In 2009, most of my time was spent on creating the engine and getting to know the iPhone. Now that the engine is done, I am almost exclusively working on the content: I am creating tons of new ennemies and even more levels. I say "almost exclusively", because I actually did improve the engine. I did an important (though obvious) optimisation regarding the collision system (Chromatic Conflict is smoother now because of that), I made explosions luminous, and I am in the process of adding sound effects. The light added to the explosions is just an expanding texture (not even billboarded) whose transparency increases until it becomes totally transparent. It's simple, but it looks real good, I can't wait to post a video. The sound effects are handled with OpenAL. OpenAL enables you to speci...