Monday, April 02, 2007

Wednesday, March 28, 2007

Poster

Just did my FYP persentation yesterday. Seem not bad.
Hopefully they can understand my English, haha......

This is my FYP poster. =)

Sunday, March 25, 2007

Homepage

Finally, completed the homepage for my FYP: fanssssss.googlepages.com
Now, I need to make my poster and do other assignments.
So hard.

Monday, March 19, 2007

7610 & N70

My game is working well on 7610 & N70, good!

Sunday, March 18, 2007

Testing

Basically, the game is completed.
Just send to my friends to test it.
Total, it has 3 different level.
After each level, players can get their "Grade" and a "Code" in "Result".
Then they can use that code to download something from our homepage.

I will try to complete the homepage as soon as possible.
Many assignments. . . . . . -______-''

Tuesday, March 13, 2007

Editing

I have changed the interface finally.
Also added some random moving clouds in the background.

Actived the magic function.

I am working on the timer, now.

Wednesday, March 07, 2007

Hanging

I haven't update this blog for a long time. It is because:
(1) I was busying on other school assignments
(2) I cannot login to this blog

What have I done so far?
1. Designed the game layout (But I want to redesign it -___-'')

2. Redesigned the logo & game title
3. Scripting (score, hittest, level up, etc)
4. Animation (for game over)
5. Added backgroung music (use device sound(midi) to replace import mp3/wav)
6. Testing (reduce the file size + speed up the run time)

The following are some screenshots of my game:


I have done around 70%.
Time is going so fast. I only have around 3 weeks to complete it.
At the same time, I need to finish 5 assignments too......

Sunday, January 21, 2007

Starting Screen

FYP: screen
This is the starting screen of my game.
Seen it is very simple, but I spent alot on it.
1. I need to brain storm the name and design.
2. Search the suitable photo and font.
3. Using Photoshop to edit, draw the layout, export the image in suitable format.
4. Import it in to Flash to do animation and final edition.
Woo...... Finally, I finished that bit.

Thursday, January 18, 2007

Monday, January 15, 2007

Hittest & Character

I finished a part of "Hittest" and "Character design".

Hittest:
Basically, just find out the centre of a circle and the radius of eact object.
Then set up the effective area. Below is the example:

h_dist = objectA._x - objectB._x;
v_dist = objectA._y - objectB._y;
t_dist = Math.sqrt(h_dist*h_dist + v_dist*v_dist);

A_r = objectA._width/2;
B_r = objectB._width/2;
if (t_dist <= A_r + B_r) {life -= 10;}

Below is the main character of my mobile game.