Map Database  •  FAQ  •  RSS  •  Login

Red chat close seal

<<

Krom

User avatar

Knights Province Developer

Posts: 3282

Joined: 09 May 2006, 22:00

KaM Skill Level: Fair

Location: Russia

Post 13 Mar 2013, 08:27

Re: Red chat close seal

@FeyBart: KaM Remake does not have controls animation yet. The only exception is credits text moving up. However idea is nice, maybe we implement it someday )
Knights Province at: http://www.knightsprovince.com
KaM Remake at: http://www.kamremake.com
Original MBWR/WR2/AFC/FVR tools at: http://krom.reveur.de
<<

Lewin

User avatar

KaM Remake Developer

Posts: 3822

Joined: 16 Sep 2007, 22:00

KaM Skill Level: Skilled

ICQ: 269127056

Website: http://lewin.hodgman.id.au

Yahoo Messenger: lewinlewinhodgman

Location: Australia

Post 13 Mar 2013, 08:53

Re: Red chat close seal

There is really no need to make the header of the scroll that large. It does not add any functionality but only covers part of the screen.
He's made it smaller than it was before, compare the old with the new:
Image

Image

The text in the second message can be moved up so it uses more of the scroll space rather than wasting it.
<<

FeyBart

User avatar

Knight

Posts: 402

Joined: 28 Dec 2011, 16:35

KaM Skill Level: Beginner

Location: Nutville, NL

Post 13 Mar 2013, 08:56

Re: Red chat close seal

@FeyBart: KaM Remake does not have controls animation yet. The only exception is credits text moving up. However idea is nice, maybe we implement it someday )
That's nice. How does implementing animation support work anyway? Would there be stock software you can just use?
Nice coffee is always nice.
<<

Krom

User avatar

Knights Province Developer

Posts: 3282

Joined: 09 May 2006, 22:00

KaM Skill Level: Fair

Location: Russia

Post 13 Mar 2013, 10:19

Re: Red chat close seal

@FeyBart: Implementing animations requires an Animator class. Controls that need to be animated report to it and say "I need to go from this to that position, in this trajectory and do it in 500ms please". Then Animator would be called each frame and update controls that he has enlisted, removing them after animation has ended. Kind of like so.
Knights Province at: http://www.knightsprovince.com
KaM Remake at: http://www.kamremake.com
Original MBWR/WR2/AFC/FVR tools at: http://krom.reveur.de
<<

FeyBart

User avatar

Knight

Posts: 402

Joined: 28 Dec 2011, 16:35

KaM Skill Level: Beginner

Location: Nutville, NL

Post 13 Mar 2013, 14:08

Re: Red chat close seal

So you give the program some coordinates, like image A must come from X=300, Y=200, and go to X=200, Y=100 in half a second? Is it also possible to make it change the size of an image or sprite like that?
Nice coffee is always nice.
<<

Lewin

User avatar

KaM Remake Developer

Posts: 3822

Joined: 16 Sep 2007, 22:00

KaM Skill Level: Skilled

ICQ: 269127056

Website: http://lewin.hodgman.id.au

Yahoo Messenger: lewinlewinhodgman

Location: Australia

Post 13 Mar 2013, 14:46

Re: Red chat close seal

So you give the program some coordinates, like image A must come from X=300, Y=200, and go to X=200, Y=100 in half a second? Is it also possible to make it change the size of an image or sprite like that?
It's not a program, it's a class that we would write for our controls library. It wouldn't need to be very complicated, it just needs to update the position of the control every frame. Changing size is harder to implement unless we make our controls support scaling in a much simpler way than they do currently (it wouldn't be hard to do for a single image or something though).
<<

FeyBart

User avatar

Knight

Posts: 402

Joined: 28 Dec 2011, 16:35

KaM Skill Level: Beginner

Location: Nutville, NL

Post 13 Mar 2013, 15:44

Re: Red chat close seal

If it would have to update it every key frame, wouldn't that make it lag a lot?
Nice coffee is always nice.
<<

Krom

User avatar

Knights Province Developer

Posts: 3282

Joined: 09 May 2006, 22:00

KaM Skill Level: Fair

Location: Russia

Post 13 Mar 2013, 16:29

Re: Red chat close seal

@FeyBart: Actually no. Remake already does hundreds of thousands of updates each tick and each frame. Computers are good at crunching numbers :)
Knights Province at: http://www.knightsprovince.com
KaM Remake at: http://www.kamremake.com
Original MBWR/WR2/AFC/FVR tools at: http://krom.reveur.de
<<

FeyBart

User avatar

Knight

Posts: 402

Joined: 28 Dec 2011, 16:35

KaM Skill Level: Beginner

Location: Nutville, NL

Post 13 Mar 2013, 20:24

Re: Red chat close seal

Heh, I guess computers are a lot faster than I am. Makes me think of those 90's computer commercials.
Especially the ones with John Cleese in 'em.
Nice coffee is always nice.
<<

Lewin

User avatar

KaM Remake Developer

Posts: 3822

Joined: 16 Sep 2007, 22:00

KaM Skill Level: Skilled

ICQ: 269127056

Website: http://lewin.hodgman.id.au

Yahoo Messenger: lewinlewinhodgman

Location: Australia

Post 13 Mar 2013, 21:06

Re: Red chat close seal

The animator just needs to update the X and Y position of the control, that's just two floating point numbers to be calculated and stored back to memory (a very simple operation) to be used next time the control renders itself. It should only take a dozen or so clock cycles, and even with just a 1GHz CPU you get 1,000,000,000 clock cycles per second :) Even if you wanted to render at 100 FPS that's still 10,000,000 clock cycles per frame (ignoring the fact that game logic and other stuff also needs to share CPU resources). So we can certainly afford to update a few X Y coordinates.

Note: thinking in terms of clock cycles is generally a bad idea because that's an over simplistic model of how a CPU works, but it gives you a rough impression of just how good at crunching numbers computers really are.
<<

FeyBart

User avatar

Knight

Posts: 402

Joined: 28 Dec 2011, 16:35

KaM Skill Level: Beginner

Location: Nutville, NL

Post 13 Mar 2013, 21:12

Re: Red chat close seal

Dang. And I thought my teacher was good at maths...
Nice coffee is always nice.
<<

H.A.H.

Lance Carrier

Posts: 69

Joined: 26 Dec 2012, 23:51

Location: The Netherlands

Post 15 Mar 2013, 10:49

Re: Red chat close seal

There is a problem: making it less yellow and bright easily makes it as gray and dull as the old one. Pick one out of 3:

A:

Image

B:

Image

C:

Image
<<

Krom

User avatar

Knights Province Developer

Posts: 3282

Joined: 09 May 2006, 22:00

KaM Skill Level: Fair

Location: Russia

Post 15 Mar 2013, 11:04

Re: Red chat close seal

Making it grey is okay, because it is not the most important element in UI. Players top attention still goes to whats happening in town/battle. We don't have a "pause on read" mode.

I pick C, but with some suggestions: lighten black areas, they don't need that much contrast, make the rope volume when it goes above/on scroll, make it even less saturated, check how it looks on 1920x1080 display.

Good work!
Knights Province at: http://www.knightsprovince.com
KaM Remake at: http://www.kamremake.com
Original MBWR/WR2/AFC/FVR tools at: http://krom.reveur.de
<<

Lewin

User avatar

KaM Remake Developer

Posts: 3822

Joined: 16 Sep 2007, 22:00

KaM Skill Level: Skilled

ICQ: 269127056

Website: http://lewin.hodgman.id.au

Yahoo Messenger: lewinlewinhodgman

Location: Australia

Post 15 Mar 2013, 14:05

Re: Red chat close seal

I also like C, it's far better than the original dull KaM one :)
<<

Siegfried

User avatar

Knight

Posts: 494

Joined: 24 Jul 2009, 22:00

Post 15 Mar 2013, 15:08

Re: Red chat close seal

I prefer B. It looks unfamiliar at first, but it is very smooth and the letters are very readable, so it's easy to read fast.

Return to “Ideas / Suggestions”

Who is online

Users browsing this forum: Ahrefs [Bot] and 1 guest