You Are Here:

Community: Blogs

Who am I?

mopius

Thinking about what mobile phones can do except messaging and voice calls is one of my main interests. At the department of Mobile Computing at the University of Applied Sciences in Hagenberg (Austria), I can work on those ideas every day by collaborating with students, researching and - well - thinking.

 

Calendar

« November 2009 »
Mo Tu We Th Fr Sa Su
            1
2 3 4 5 6 7 8
9 10 11 12 13 14 15
16 17 18 19 20 21 22
23 24 25 26 27 28 29
30            
 

Andreas Jakl's Forum Nokia Blog

Developer Events

mopius | 14 May, 2009 22:57

Last week, I’ve been giving a talk at the first Austrian Android Developers Day (a2d2, organized by T-Mobile) about Android as a mobile operating system. It has been a very interesting experience – is there something that Nokia can possibly learn from this event?

Let’s start with the location: the event took place in Vienna. It was fully booked; nearly all attendants were from Austria. Most developer events that I know of try to gather an international audience and are therefore hosted in the larger cities. But the a2d2 clearly demonstrated that it’s perfectly feasible to host regional developer events. After all, the country size doesn’t say anything about the quality of developers: I've been told that when taking the number of inhabitants into account, most entries/finalists from the Android developer challenge came from Austria.

a2d2

One of the most interesting aspects about the event was the mixed audience. About one third was actually developing for the platform, while another third didn’t really know a lot about Android beforehand! This is unique compared to most developer events, where attendants are experienced developers or managers who wish to extend their business. At the a2d2, students, small and big companies were all thrown together and enjoyed talking to each other. For example, several of our students (some from 2nd semester!) presented their projects at the tech sessions; on the other hand, there have been representatives from large companies like Red Bull or bwin. This resulted in a very relaxed atmosphere that lead to many new ideas.

The choice of date and time is the last fact I’d like to point out: the a2d2 started in the late afternoon and lasted until 10 pm. This made it a lot easier to attend after work, instead of having to take several days off to drive to some big developer event.

Developer Events

Obviously, huge events like the recent Nokia Developer Summit in Monaco are important as well. These serve the business target group and bring together the dedicated core of development companies, who can and want to spend the time and the resources required to travel there. The events demonstrate the dedication of Nokia to their business and show the value that lies in the ecosystem – which is bigger than on any other platform.

However, smaller companies, individuals and students are more or less left out. They need regional events that are easy to reach and cheap to attend. These events help to build the regional network that's needed to acquire new projects. And: this group is where the real innovation comes from. While they do not generate money for the platform or Nokia in the short term, it’ll pay off in the long run.

The interaction of Nokia with bloggers and with dedicated members of the community (through the FN Champions program) is excellent. Additionally, companies that are really interested in working on Nokia platforms are taken care of through the FN Launchpad / Pro programs.

Now, the goal should be to take care of the rest – developers who are not yet working on the platform, but might be interested. And those who are already doing something, but don’t have the resources to travel to big events or spend time on engaging in the online community. This is vital for creating a buzz around the platforms and for showing developers that they are being taken seriously. Just imagine how great it is for a student to be able to demonstrate his project at an event organized by a company like T-Mobile – or Nokia!

Fundamental changes in native Symbian OS development

mopius | 27 March, 2009 11:41

Just announced rather silently in the Symbian Developer Newsletter, one of the biggest changes in the world of Symbian OS development is on its way. It's all about the letter L, which represents the new idiom of L-classes. According to the documentation PDF: "The L prefix denotes that these classes may be Liberal when it comes to Leaving, while being Leave-safe themselves."

When working with Symbian OS and of course especially when teaching it, the biggest issue have always been the descriptors. While they are a nice concept and a good example of polymorphism, even the simplest string modifications often required looking up some code examples or documentation. Now, the new LString class can finally take care of automatically resizing its buffer (on the heap) and memory cleanup. Additionally, the LString is also derived from TDesC, making it possible to use it with all the standard Symbian OS APIs.

Other changes include the possibiliy to put everything from the two-phase construction into a single C++ constructor, by using macros and special templates. Makes the code easier to read and shorter, and is therefore also a welcome change. Memory management (plus cleanup stack) usage has also been simplified through the use of new class templates (LCleanedupX and LManagedX), which provide automatic resource management.

We'll see how these new additions work out in real life, but at least on paper, they do sound promising and make it easier for newcomers to start developing with Symbian OS. The only problem is that those new concepts are added to many other already existing idioms, increasing the total amount of information you have to know when you really want to do a lot - and it'll not be possible to get entirely rid of old descriptor classes like the HBufC, as they're still used by many system APIs. Also, that these resource management tasks are done automatically usually means less efficiency compared to the manual way that has always been in Symbian OS - one of the reasons why the OS is so fast, even on low spec hardware. Most probably, you'd use native Symbian OS C++ code for the more low-level and highest performance code (and do resource management manually), and prefer Qt or Widgets instead for other applications in the future.

Another interesting sidenote: if you take a look at the new header files, you'll see that they are already released under the "Symbian Foundation License v1.0" (even though the source code is not included yet) and that they are contributed by Nokia. In case I didn't miss anything, this is most probably the first public third party contribution to the Symbian Foundation. Let's hope we'll see more of those welcome additions in the future - even though it means that I'll have to rewrite many parts of the Symbian OS course slides when there's time...

Read more about the L-classes at the Symbian Developer Network, especially at the pdf linked to at the end of the article.

The Phone’s Compass as a Game Controller

mopius | 24 March, 2009 22:08

CarChallenge is controlled through the compass of the mobile phone.
CarChallenge is controlled through the compass of the mobile phone.
The Nokia 6210 Navigator is the first device from Nokia that features a magnetometer. It allows using the phone as a compass – very important for pedestrian navigation. GPS alone can only determine the direction in which you’re facing when you are moving. With a compass, the phone instantly knows in which direction you’re facing and rotates the map accordingly. This makes me happy when I step out of the underground and want to know where to go – without having to walk several meters only to find out that I chose the wrong direction.

A traditional compass only works when it is held horizontally. As Paul Coulton recently described in his Forum Nokia Blogs posting, the Nokia 6210 includes a 3-axis magnetometer. Through some calculations, it is possible to find out the absolute direction in which the phone is facing, no matter how the phone is oriented. The S60 Sensor Framework provides a processed sensor output that gives you the degrees relative to the North Pole.

Compass Applications

Traditional applications that greatly benefit from a compass are apps like the “Magic Wand” (recently described by Paul; our students have also been working on a similar app during the winter semester): just point the phone to a building and the phone tells you what it is. By combining information from GPS, the accelerometer and the compass, it is possible to determine where the user is pointing his phone and for example to augment the camera picture with additional information about what he sees.

Another possibility would be to use the same method for showing information about the stars and constellations. Just point your phone to a star and instantly get information about it. I’m not yet aware of any such applications for S60 phones that integrate the magnetometer. General planetariums are of course available, like for example Solun’.

A few days ago, I’ve been chatting with Philipp Breuss, one of the winners of the first Android challenge and now teaching Android at our Mobile Computing department in Hagenberg. He told me that there are currently two such planetarium applications that make use of the magnetometer for the Android platform; one of them being his own. An easy to understand concept that has great potential.

Compass Games

The compass is of course not limited to applications. A novel idea is to use it for controlling games. Christian Feldbacher and his colleagues Philipp Rakuschan and Clemens Stangl have been busy developing a 3D car game with a clever artificial intelligence over the last two semesters - called CarChallenge. As an experiment, we decided to include the compass as an additional control method.

Playing the game with the compass requires physical action – the car drives in the absolute direction you’re facing. Want to turn the car left? Just turn yourself to the left. How to turn the car around? Make a 180° turn yourself (e.g, from North to South).

In contrast to the compass, the acceleration sensor is only able to measure relative movements on this axis. The rather small resulting sidewise acceleration forces would not be sufficient for accurate game control. Instead, accelerometer based car games usually rely on tilting the device – something that can be measured easily through the different distribution of gravity to the three accelerometer axes. However, there would not be a difference at all if you’re facing to the North or the South – the gravity is always just directed downwards. Through the compass, the game is now able to integrate the absolute direction in which you’re facing.

His video on YouTube demonstrates the look and feel of the game, as well as the compass-based control mechanism. Of course, steering via the compass isn’t well suited for playing the game in a bus and is probably problematic for long gaming sessions. However, it’s great fun!

As a next step, why not make a game that determines how often you can turn around before you get dizzy and fall to the ground (detected by the accelerometer, to use the available sensors to their full extent)?

CarChallenge is essentially finished and will be released shortly. Watch the project page at symbianresources.com for updates!

Accelerometers Redefine the Game Experience

mopius | 19 March, 2009 19:25

SlidersEdge
Accelerometers fully integrated into the game design - turn your phone to change the gravity of the environment!
Nearly nobody noticed the Nokia 5500 Sports, most likely the first phone equipped with an accelerometer that was accessible for 3rd party developers. gBoarder (application for recording snowboarding statistics like the number of crashes or jumps) and CarMeter (measures g forces when driving a car) were one of the few applications that made use of it - already released in February 2007.

When Nokia finally released the R&D API for the N95, the boom began and many acceleration sensor-based applications appeared. Many of them are useful (pyPozentica), others are just for fun (Light Sabre). And of course, there are some entertaining games as well (Groove Labyrinth, pyWuzzler).

Especially with the iPhone lacking any keyboard, many game concepts simply were not really possible – as an effect, the accelerometer got to be an accepted control method for commercial games. Racing games are a good example, where the tilt of the phone simulates a steering wheel. Much like in ShakerRacer, which uses the same concept for controlling a real car.

However, most of the games just use the acceleration sensor as an input method that fits to the game (up to some degree). Only very few games completely base the whole game concept on the use of the accelerometer. One of those few games has been developed by the Mobile Computing students David Berger and Stefan Poremba from the Hagenberg University o.a.S.

SlideEscape / SlidersEdge

On the first sight, the game SlideEscape / SlidersEdge could be seen as a normal jump & run. The fact that the left/right-movement of the character can be controlled by tilting the phone and jumping by quickly pulling the phone towards you is nice, but not something new either.

The innovation comes from the fact that turning the phone changes the gravity of the virtual game world. An example: the character is standing in front of an uncrossable abyss. How to get over it? Turn your phone upside down to walk on the ceiling and safely pass the depths!

Through this mechanism, the acceleration sensor not only influences the movement, but is directly integrated in the whole game experience as well as the level design. It’s not just an add-on that could be easily replaced by a key control mechanism (like in a racing game), but an essential part of the game.

The video on YouTube demonstrates how this works in real life:

The project is available as a free download from David’s official homepage, as well as from the project page at symbianresources.com.

Please note that the game is a prototype and therefore not really bug-free. The main game is a Java ME application. As it still isn’t possible to access accelerometer data from Java ME on Nokia phones, a native S60 application is provided as well, which runs in the background and provides acceleration data to the game via an internal socket (does not lead to data charges, even though the Java ME game warns you upon start-up).

Mobile Physics

mopius | 11 March, 2009 19:21

Chipmunk is an open source physics engine and is now available for S60.
Draw abstract objects on the screen; they will instantly get physical properties!
Physics engines simulate behaviour and motion of objects in a virtual world. With the increased processor resources available on today’s PCs, almost every game integrates a more or less advanced physics engine.

Even if the dedicated physics PCI card for the PC, the PhysX by AGEIA, did not really succeed in reaching the mass market, it increased the awareness that the game experience is greatly enhanced if physics are accurately simulated. Nowadays, NVidia has bought this company and physics simulations are often calculated directly on the 3D graphics hardware.

The oldest game I can remember that heavily relied on physics simulation was called The Incredible Machine. Released in 1993, players had to place various objects in a 2D plane to solve puzzles. This included placing machines, lights, ropes, balls and much more.

Another game, Bridge Builder, has now been around for quite some time (first release in 2000) and also uses physics as the main gameplay element. Players have to build bridges and ensure that they do not break. Later examples like World of Goo follow a similar basic concept, but make the game a lot more accessibly by integrating a different scenario and pleasant graphics.

Another possibility for games that mainly rely on physics simulation is represented by Crayon Physics. In a pre-defined scenario, players have to move an abstract object (like a circle) from its starting position to a target. This can be done by drawing 2D objects (like other circles that behave like balls, rectangles, or ropes); physical attributes are applied to those. Of course, solving the levels gets very challenging over time.

Mobile Physics

Even if advanced 3D physics like found in Half Life 2 would still be too much for today’s mobile devices, they are certainly up to the task of running 2D physics engines. A good example is Numpty Physics, available for free for the Maemo-platform.

David Berger, a student in the 3rd semester of Mobile Computing in Hagenberg, has now ported the open source 2D physics engine called Chipmunk to the S60 platform.

With the help of the OpenC++ libraries, it was possible to run the engine without any serious modifications. As the foundation for the user interface, he used the Mobile Paint example from Nokia. All objects that you draw on the screen instantly get physical properties and move according to the current gravity level as well as collisions with other objects.

David’s video on YouTube demonstrates how well the engine works. Unfortunately, there were some problems with regards to the screen update and the TV out when drawing – but as you can see in the video, the engine works totally fluid and fast. Now, I’m looking forward to seeing the first physics-based games on the S60 platform!

 

More information, the download of the demo plus source code is available on David’s website as well as on the project website on symbianresources.com.

Mopoid Workshop - Your Own Arkanoid-like Game for S60

mopius | 14 January, 2009 00:23

Develop a full-blown Arkanoid-like game - and play it!
Develop a full-blown Arkanoid-like game - and play it!
Probably the largest and longest free workshop for S60 development is now available in a completely rewritten and updated version. The unique aspect: everything is explained based on a fully working Arkanoid-like game called Mopoid.

While reading through 76 pages and 175 slides, you will explore most of the important concepts behind Symbian OS / S60 – including using the UI designer of Carbide.c++, scalable vector graphics, localizable text and of course all the traditional topics like the cleanup stack, descriptors or periodic timers.

The Origins

In 2004, I prepared my very first Symbian OS workshop at the University of Applied Sciences in Hagenberg. Its aim was to give a compressed overview of the most important concepts of development for S60 – in form of a large, fully working game. Students would implement certain parts; the specialities of native Symbian OS C++ development were explained right when they were relevant. I still remember working through the whole night on the day before the workshop, testing everything ten times to make sure that everything really worked as expected.

The Update

Back then, the tutorial was based on the free Borland C++ Builder Mobile Edition, which already featured a UI designer. While the IDE had potential, it was slow and buggy. Soon after, it was abandoned.

The mobile world moves quickly, and the tutorial soon got outdated. Still based on S60 1st Edition, the game wouldn’t run on current devices. Also, Borland C++ Builder does no longer exist, with the (much better) Carbide.c++ IDE now being the standard for Symbian OS development.

As it would have been a pity to simply let dust settle on Mopoid and watch it disappear, I decided to take on the task of updating the tutorial for today’s environment. The game has now been greatly extended and improved - for example, it includes support for scalable screens. Of course, most parts of the tutorial had to be rewritten as well. The slides are completely new.

The Future

The workshop was just published on the Symbian Developer Network and is now also available from symbianresources.com. The whole tutorial might be a bit too steep if you don’t have any experience with Symbian OS at all, but for a little more advanced developers, it’ll be interesting to see how all the idioms and concepts fit together in a real game.

The source code is released using the GPL license. Mopoid already supports level files, saving the high score and much more. If someone wants to add more features or levels, it’d be great to release a polished game without some rough edges to the public in the future!

The Mopoid tutorial comes with 76 pages and 175 slides full of free Symbian OS information.

Mobile Surveillance Tools

mopius | 04 January, 2009 19:07

SpyPhone / BabyPhone
SpyPhone / BabyPhone is a Python-application that monitors the surrounding sound level.

At the core of every mobile phone, there’s still the voice channel. Therefore, every phone is equipped with a microphone that’s optimized at recording the human voice. Add the aspect that the phone is mobile and that the owner usually carries it with him all the time, it’s no surprising thought that the phone can be used as a remote surveillance tool.

BiBUnit is based on a rather simple concept and essentially accepts incoming video calls if a previously set number is calling, allowing you to monitor the surroundings through the phone camera. SpyManager on the other hand lets you take remote snapshots of through phone, also through a PC server application.

Similar, but with a different usage scenario is Phone Guardian, which allows remotely controlling aspects of the device in case it was stolen from you. SecureMe is built based on the same concept.

SkyeSpy turns the situation around and alerts the observer autonomously. The application on the "spy"-phone is able to monitor the audio level of the surroundings. If it exceeds a threshold, the phone will contact a previously paired phone per SMS or a call.

There might be other applications around that I missed, but the list should give you an overview of what is currently possible on a S60 phone.

SpyPhone / BabyPhone

Now the students Clemens Rainer and Daniel Haslinger went up to the task of implementing this application via PyS60 and have released their results for free as an open source application called SpyPhone or BabyPhone.

Like the SkyeSpy-application, the phone constantly monitors the audio level of the surroundings. If a pre-defined threshold is exceeded, the phone automatically calls the number of a pre-defined "agent".

A good use-case would be the monitoring of a baby. When it starts to cry, the phone will automatically call the number of the parents. As the call is a normal voice connection, they can hear what’s actually happening. If it sounds serious, it’s about time they pay a visit to the child.

Technically, the application is constantly working on two tasks. The first records the sound into a file on the device. In the meantime, the other task analyzes the previous sound file. The next step would be to add more sophisticated sound processing to the application. Instead of just calculating the volume like SkyeSpy does it as well, it would be possible to measure the frequencies in the recorded sounds and only react if these are in the range of the human voice.

As the SpyPhone / BabyPhone application is available as open source, it provides an ideal starting place for your own audio experiments in Python for S60.

Explore .sis-files Online

mopius | 04 January, 2009 18:27

whatisinmysis.com logo
whatisinmysis.com analyzes the contents of your.sis files.
Ever wondered what's inside your .sis files? Which certificate was used to sign it? Does it have the right capabilities? Of course there are utilities that can help you with analyzing the contents. One of them is the SISXplorer utility, or you can also use the sisinfo Python-script. Both are available for free.

But what if you don't want to install an application just to take a look at the contents of the .sis-file? Or what if you are working on a friend's PC that doesn't have the same, perfect setup as your own? Stefan Damm got into this situation from time to time, and then decided to make an online tool available.

The website whatisinmysis.com is an online interface to the sisinfo Python-script. You simply upload the .sis-file to the website, and it will display all the information about its contents. Easy, fast and free. No setup on your PC is required. The privacy statement on the site ensures that your uploaded files are deleted immediately after analysis.

whatisinmysis.com will display the following:

  • Contents of .sis file and installation directory of each entry
  • Capabilities of each executable (exe, dll, .pyd)
  • Certificate chain

If you find online services like the new one from Stefan Damm interesting, you might also want to bookmark WhyTheFuckWontMySisFileInstall.com. It has got a slightly different focus: it provides information about the signing status and prints reasons or suggestions why installation of this .sis-file might fail on a device.

Of course, whatisinmysis.com has now also been added to symbianresources.com.

New Qt Training Materials

mopius | 15 December, 2008 18:11

As you will most likely have noticed, Qt for S60 is going to be really big. Therefore, it’s a good idea to start learning Qt as soon as possible.

One chance to do this is going to be the first public “Qt on S60” webinar (as announced by Lucian Tomuta), which will be broadcasted in just two days (December 17th).

To get an overview of what Qt can do for you and how to get Qt to do just that, you might additionally want to take a look at the new Qt course materials that have just been published at symbianresources.com.  (More)

Protect your Skis with your Phone!

mopius | 10 September, 2008 22:26

Theft Deterrent System for Skis
TDS-S uses NFC technology to secure your skis.

Near Field Communication (NFC) is mostly associated with micro payment systems or access solutions. These are the ideal use cases for rather slow, but contactless information transmission over distances of up to some centimeters.

Theft Deterrent System for Skis (TDS-S) is a novel approach to using NFC technology – it protects your skis from being stolen.

The students Markus Eder, Florian Lettner and Carina Madlmayr from the Mobile Computing department of the FH Hagenberg are fond of skiing – rather natural, considering they’re from Austria. Everyone who has already been on a slope in his life will know the slightly worrying thoughts when you go into a ski hut: “Are my skis still going to be here when I return?”

Especially if you know that there are more than 10,000 registered ski thefts every year only in Austria, it’s certainly not inappropriate to think about securing your expensive skiing equipment. Naturally, cameras outside of the restaurants usually don’t help much. If you consider what everyone is usually wearing when skiing, you’ll usually have a hard time to identify the thief should the police ever catch him. The only commercial solution that’s available today is to the skis together using a lock (like the simple bike locks). Unfortunately, this isn’t the most comfortable solution.

Near Field Communication is here to help

Surprisingly, NFC is the technology that proves to be incredibly useful to prevent ski theft, while still offering all the comfort you might want to have. The project “Theft Deterrent System for Skis (TDS-S)” is essentially about pairing the boot with the ski and doesn’t let the thief step into the binding if the secure code doesn’t match.

This is done by putting an MIFARE-tag into the boot. A small RFID-module is inserted into the ski and connected to one of the new bindings that electronically control the operation of the binding – like the Atomic Neox EBM. A Near Field Communication-enabled mobile phone or a PC is able to pair the boot with the ski. If anything else than the trusted boot steps into the binding, it refuses fastening and doesn’t let the thief drive away with your skis.

The project is currently still in development - you can read more about it at symbianresources.com or the project homepage. The first prototype has already been published and managed to be among the winners of several global competitions – the 1st Austrian NFC Developer Competition as well as the NFC Forum Global Competition. Who knows how much longer it’ll take until skis, which started out as simple wooden planks (The word “ski” meant “a stick of wood” in Old Norse) will finally turn into a product full of high tech.

NFC Congress

By the way, if you're interested in NFC, the place to go is the third annual NFC Congress from the 24th - 26th of February, 2009. It'll take place again in Hagenberg. After the successful previous two events, it has now turned even bigger and now consists of the conference, a workshop, an exhibition, a competition and even an IEEE scientific workshop day. Register now!

 

A video about the project:

 

Mobile Surround Sound

mopius | 01 September, 2008 11:27

3D Sound on current mobile phones might mainly be a marketing gag – like the sound effects found on Nokia phones like the N95. It certainly does sound nice to have your ringtones swirl around and it works surprisingly well. But of course, it’s just simulated surround with two small speakers that are close together.

It will certainly be interesting to have technology from Dolby integrated into phones, like it was demonstrated at the CTIA Wireless in 2008. However, there is no precise information about future roadmaps or products.

What the students Stefan Damm and Arnold Ahrer from the Mobile Computing-department of the University of Applied Sciences in Hagenberg (Austria) created is a small solution to enable real surround sound through mobile phones - called Mobile Surround Sound.

It works by using four different mobile phones, which have to be placed into the corners of the room. Essentially, the phones are turned into speakers, albeit with a bit more intelligence than the usual speaker. A central control PC is connected via WLAN to the phones and is able to control them in real time.

Once all phones are connected, the PC starts the sound on all phones at the same time. The user can now move the sound source on the graphical interface of the server. This automatically adjusts the volume of the different speakers, thus leading to the impression that the sound is moving around in the room.

Also great to put your phones to good use if you've already got too many of them ;-)

The application was developed by Stefan and Arnold as a small project for the Interaction Technology course during the summer semester. It is written in Java (Server) / Java ME (Client) and is available for free (open source).

Automatically Calling Back Saves Money

mopius | 26 August, 2008 18:18

Auto Call Back
Auto Call Back can help you to save money.
Starting with today, I'm now also on one of the hugely popular all-inclusive phone tariff plans. In Austria, every operator currently has a plan with a certain number of minutes (usually 1000 or more) included - essentially, a flat rate for around €19/month.

On the other hand, many friends and relatives have minute-based plans, which can be rather expensive if they're calling to other operators.

Rationally, it'd be the best if I call someone with a minute-based plan back and don't accept his call. In this scenario, nobody of us pays anything (extra). Obviously, it's a bit of work - you have to discard the call, go to the call history and call back.

Automatic Call Back

Already two semesters ago, two students (Dominik Brandlberger and Daniel Haslinger) developed a solution to this called "Auto Call Back" (why always invent strange names if it can be that simple?). The whole call-back process is automated by the application.

The result after one semester is a prototype and no commercial application - after all, both didn't have any serious Symbian OS development experience before and the whole issue turned out to be not so easy.

Apparently, you can't easily cancel calls that you don't own through the public CTelephony-APIs of S60 3rd Edition-phones - it only seems to work if you accept them first and immediately cancel them. However, this means that the caller already has to pay up to one minute, no matter how short the call was. Therefore, the application now cancels the calls through simulating the red key. The disadvantage here is that the mailbox has to be turned off for rejected calls.

But how does the app know for which contacts to do it? After the first initial experiments with an own database, the best solution turned out to put all those contacts into a special group. This also allows the user to easily manage the call-back contacts through the normal contacts-app of the phone; the call-back app doesn't have to re-invent the wheel.

The prototype is available for free, but of course not yet ready for real-world usage. It lacks many features and is by far not bug-free. Also, you need to sign it yourself through the Open Signed-process from Symbian Signed.

If anyone is clueless what application to develop next, I'd be very interested in getting a finished and polished application that can do exactly what the prototype can do. Or is there already anything around on the web that I didn't find?

Abandon your Privacy

mopius | 05 July, 2008 12:22

CrystalMe explores offering all your private data to the public any time.
CrystalMe explores offering all your private data to the public any time.
When Nokia released the Mobile Web Server, we were always thinking, “There is more to this technology than is initially visible”. Just think about it – you carry a whole, dynamic web server around with you all the time. It offers full access to the device and all the data contained on it. You can essentially turn the mobile user from an information consumer to the source of new information, not only in the sense of sending out SMS and making calls, but providing data to everyone on the world, without any restrictions.

The only issue was: it was difficult to come up with an idea. What is the unique advantage of hosting a web site on a mobile device? What can you do with it that would not be possible otherwise? What’s the real advantage compared to using a standard server PC or to simply providing the data from the phone through a small Java ME / Python / C++ / etc. application?

Sharing your data

Take a look at the current status of the web, or maybe even the whole world. Everyone tries to guard his private data and is concerned about losing control over it, with governments and other companies constantly trying to accumulate as much information about you as possible.

On the other hand, especially younger people love to share their lives with social networks like Facebook, LinkedIn or many others. Who has not heard the stories about bosses finding out stuff about possible job candidates beforehand – stuff that those people would rather not like their boss to know?

The mobile web server is about sharing with the world, about offering information to the global internet. Today, the mobile device is your personal assistant that knows about many parts of your life. Your calendar, your contacts, your pictures, your position, ...

This led to the project we called “Crystal Me”. Think about Facebook and take the whole idea one step further. Total surveillance. Always available through the mobile web server.

Accumulating data

The user data presentation on the web of a very early development version.
The user data presentation on the web of a very early development version.
Through the intelligent use of sensor data, you can find out a lot more about the user than you might think. An example?

-    The phone doesn’t get a GPS lock -> the user is probably indoors.
-    The phone is moving in a regular pattern -> the user is probably walking.
-    According to the phone calendar, there is a meeting in a few minutes -> the user is going to the meeting.
-    The contact person that’s added to the meeting is from the other gender and it’s evening -> well, could be a date.

As you can see, there is a lot that you can reveal without any further knowledge just by combining the various bits of information that are available to you.

Crystal Me

The research project from Manuel Riegler attempts to investigate the total loss of privacy. How far can you go about revealing your life? How can you combine the available data to generate useful predictions about the current state of the user?

Right now, the project is still in its early stages. A very early prototype that was mainly built to get to know the technology is available through Nokia Mosh and was now chosen as the winner of the Forum Nokia Mobile Web Server Challenge.

But that’s not the end of the project – in total, it will continue for one year, and Manuel will also write his Master’s thesis about the research that went into Crystal Me.

Keep an eye on the project page at Symbianresources.com!

Euro 2008? -> Table Soccer on your phone!

mopius | 16 June, 2008 18:55

pyWuzzler - accelerometer controlled table soccer
pyWuzzler - accelerometer-controlled table soccer on your phone.

Austria is currently one of the host countries of the Euro 2008, the UEFA European Football Championship. Naturally, soccer is one of the biggest topics in our country at the moment, even though our chances of winning the tournament are, well, not so high.

To compensate for this, Benjamin Gmeiner and Yen-Chia Lin, two students of the Mobile Computing department of the University of Applied Sciences in Hagenberg (Austria), have developed a new application called “pyWuzzler”.

In short, it’s a table soccer game on a S60 phone, which you control through the accelerometer. After all, Austria won the world championship in table soccer in the year 2006, something that won’t happen too soon for traditional soccer.

The whole frenetic game might be a bit too difficult to play on a phone. Therefore, the students have reduced it to a head-to-head match of the two attacking players against the goalkeeper (controlled by an artificial intelligence). Score as many goals as you can within two minutes!

 

How to score a goal? It’s intuitive, just by turning your phone. Change the inclination of the phone to move the attacking players (red) to the right and left. Turn the phone to trigger a shot. The movement of the ball is based on a small physics engine to simulate accurate movement. With this control scheme, you can even perform tricks like in a real table soccer match, as can be seen in the YouTube video.

pyWuzzler is available for free from symbianresources.com. The source code is published under the Apache Licence.

Mobile Game Controllers: Problem Solved!

mopius | 18 March, 2008 17:08

MobiPad
Play all the games you want on your mobile phone using mobiPad.
The article „Ten plausible things that would be really cool on N-Gage“ recently suggested that a Bluetooth game controller should be released for mobile phones. It’d greatly increase the way you could play your games.

There have been several attempts at building dedicated gaming controllers for mobile phones. One recent example is the Zeemote JS1, which is a small Bluetooth joystick that you can easily take with you. Another controller more closely simulates a traditional gamepad layout.

While these solutions might be good, there are some logical issues that might be problematic in real life:

  • Some controllers require a specific SDK in order to use them on the phone – currently, not many games support such proprietary SDKs, making the adoption of those controllers some kind of a hen-and-egg problem.
  • You have to buy extra hardware that you can only use for mobile phone gaming. Most likely, only very few will consider themselves as hardcore phone gamers to go into a shop and buy gaming hardware that they can only use for their phone.
  • Compared to game controllers for game consoles, the controllers for mobile phones are selling at much lower volumes. As prices usually go down with volume, you’ll not get the same bang for your buck / the same build quality for a dedicated mobile game controller.

mobiPad

All of those three issues are solved by the new mobiPad application developed by the students Alexander Erifiu and Mario Grammer at the University of Applied Sciences in Hagenberg (Austria) at the department of Mobile Computing.

In a nutshell, mobiPad allows controlling your entire phone with the Nintendo Wii™ Remote. This includes all games that you might have installed, as well as the rest of the phone like the media player. Essentially, the Wiimote is turned into a high quality wireless controller for your phone.

Tests have shown that it’s not the best way to simulate digital keys (pressed or not pressed) using analogous motions of the WiiMote. As a consequence, you will usually control the games using a traditional d-pad. In contrast to the predecessor WiiConnect / WiiRider (which allowed controlling a motorcycle game by using the Wiimote as a virtual handle of a motorbike – free download at symbianresources.com, the new mobiPad dropped support of motion control in favour of utilizing all keys as well as the d-Pad of the Wii Remote for optimal control of every game.

Another very interesting aspect is the recent ascent of touch screen dominated phones. A touch screen makes it impossible to play mobile games that have not been specifically designed for it. This situation is true for most of the currently available Java ME games, and already applies to most of the SonyEricsson UIQ-based phones – the keypad does not feature a joystick and the buttons are difficult for gaming due to their two-letter-input method. While this is a great feature, it just isn’t optimal for mobile games. Through mobiPad, you can play any standard game on those phones as well, no matter if they have QWERTY-keys or no keyboard at all!

Summary & Download

Grizzle Dizzle
Grizzle Dizzle is a free Java ME-based Bluetooth multiplayer-game that was also developed by Alexander Erifiu, Mario Grammer and Kristin Ließ.
Getting back to the start of the posting, you can see how this solution solves the issues with dedicated mobile game controllers described above:

  • You don’t need an SDK for using the Wii Remote to play games. Just start mobiPad and connect it to the WiiMote. The application will be active in the background and transform the wireless control input into simulated key input.
  • The Wii Remote is of course no specific mobile game controller. Use it at home for your console, put it into your rucksack when you’re planning to travel and want to have a better gamepad with you.
  • Due to the enormous experience of Nintendo producing game controllers and the huge volumes, the build quality of the controller is great and the price tag is good considering this.

Alexander and Mario have released mobiPad as Freeware (donations are welcome), you can download it from their dedicated web site http://www.mobi-pad.com/. If you're searching for a new game to play using the Wii Remote, try Grizzle Dizzle, which was created by the same developers and Kristin Ließ, who did the wonderful graphics!

mobiPad is available for S60 3rd Edition and UIQ 3.x. The current version (1.0) is Symbian Signed and has been tested very thoroughly, but due to the nature as a non-commercial research project, it might not be 100% bug-free. Please inform the developers of any issues you might encounter. Future versions might also include the possibility to define a custom key mapping. This mostly depends on your feedback!

 
1 2  Next»
 

Rate This

 
 
Bookmark this page: DeliciousDiggFacebookGoogleYahooStumbleUponRedditDiigoTechnocratiTwitter  Share this page Share this page Print this Page Print this page Invite a friend Invite a friend
京ICP备05048969号    Email Newsletters Press Terms & Conditions Privacy Policy Sitemap Contact Us © 2009 Nokia