[TEFc Library] Spicing up the map

GMSuerte's picture

Introduction

Disclaimer: Both this guide and the map itself are currently a work in progress.

This is an example implementation of the player collection module.

I noticed that the authors of the map don't really have time to update things (the map included) on this site because they have more important things to do. I know this doesn't seem like much, but I put together a new version of the map.



Features

Mobile viewing

This version does not use Flash, so some of you may find that you can view it on some mobile devices and the like. However, I have not yet implemented many of the interactive features on this map for mobile devices. I plan to do whatever I can about this eventually.

Your local time

The time showed is your time, not the time of the server.

Correct member account pages

If you are on the www. domain and you are logged into TEFc (this forum, not necessarily the game), the links to the player pages will hopefully be accurate. If you find an instance in which it is not, please tell me. However, please note that the links you may see are generated dynamically and thus their results are cached for thirty days in order to reduce the number of requests.

If there is no account page for that player, you will be redirected to the search page to find if that player's user name has been mentioned.

If you are not on that domain or you are logged off, you will get the same page that the original map would give you.

No blank spots taking up tabbing space

Contrary to popular belief, I do not believe those blank spots you come across while tabbing on the original map are unnamed deer. I have briefly verified this for myself both by inspecting the original map and by playing the game.

See the pictogram's name on hover/focus

The pictogram will increase in size like normal, but then show its name.

Move on status update

The pictograms will move to their new positions on the map when the server has updated their status.

Notice that all the pictograms will not disappear and reappear each time the server updates, like they do in the original.

Also notice that the pictograms that are no longer on the map disappear gracefully.

Map coordinates

Hover your cursor around on the map and you will see the coordinates of where you are pointing.

Draggable entities

Drag the status text or coordinates around the map to move them out of the way.

Compromises

There are some compromises you may need to make if you wish to use this version of the map over the original:

  • Due to the current implementation of SVG in browsers, I cannot implement anything click- or drag-related on the pictograms.
  • Because of the aforementioned problem, you cannot click on the pictogram to view its player page. Instead, you will have to click on the link that pops up under it. You can still press enter when the pictogram is in focus (via tab), though.

How to use

This applies to someone who wishes to use the map on their own page. You obviously may wish to ask someone to code it for you if you don't know how.

Prerequisites

Note: Make sure your code is under the cut, with the blog entry input format set to BBCode.

Code

Place this code into your blog post:

<img style="display: none;" src="/community/sites/all/modules/smileys/packs/ToT/redface.gif" onload="var script = document.createElement('script'); script.type = 'application/javascript'; script.dataset.main = 'https://dl.dropboxusercontent.com/s/u77imj0qjsjo6ce/map-example-1.js'; script.src = 'http://requirejs.org/docs/release/2.1.15/minified/require.js'; document.head.appendChild(script);">

<link rel="stylesheet" href="https://dl.dropboxusercontent.com/s/m0ch6zimxy97bwi/map-example-1.css">

The lower part is a mostly optional CSS file, but I think it would be good to start out with that CSS and then add your own changes after that file.

Now, place this where you want the map:

<div id="map-example-1" class="gms-map"></div>

CSS customization

Please note that I am not including simplistic cross-browser issues with CSS in these examples. It may be a good idea to include the appropriate prefixes, if necessary. I.e., insert -webkit-filter and related declarations before filter.

Background image

Do you think the background is too dark? You can revert it to its original state:

.gms-map-floor {
	filter: initial;
}

Or let's say have a biography, and you have a theme in which everything is gray or something like that. You also wish to use the map on your biography, but it's too colorful. No problem, just change the CSS:

.gms-map-floor {
	filter: grayscale(1);
}

Note that this doesn't change the colors of the landmarks. If you wish to do something with those, you can use the selector .gms-map-landmark. .gms-map will apply effects to the whole map.

You can also change the background image itself if you desire:

.gms-map-floor {
	background-image: url("path/to/image.png");
}

Now, this isn't a CSS reference or tutorial. If you need help for other possibilities, ask someone you know who can code.

JS customization

Now we're talking. Stay away if you don't know JavaScript.

Change the text format at the top

// Generally before you call players.startUpdating();
mapView.statusView.dateFormat = "MMMM Do [at] h:ma";
mapView.statusView.template = _.template("<%= numPlayers %> deers online on <%= dateString %>");

Sample result: 26 deers online on November 24th at 8:54pm.

See MomentJS display format.

Current bugs

You may not consider some of these to be issues, but they are present.

Hovering over a moving pictogram will quickly move that pictogram to its destination

This isn't a huge deal, though.

Unable to use different map sizes

Currently, the map works somewhat when changed to a different size, but only if it retains its square dimensions and some features may not work properly.

I will do my best to make sure all features work in all sizes and all ratios.

Also, currently the map cannot be resized; its size must be determined before you put it into the page.

Tabbing from one pictogram to the next does not flow from top to bottom

Only one of each pictogram possible

If the same pictogram shows up on the original map twice or more, it will only appear on this map once.

I know this is rare, but it's still technically an issue.

Coordinates, pictograms, and/or map placement of objects may be off by 1 unit/pixel

I will have to double check to make sure.

The coordinates report the incorrect value when the mouse is off the map

The coordinates are unretrievable when moved off the map and hidden

I could try to make draggable entities not leave the bounds of the map.

Draggable text currently wraps around when reaching the right edge of the map

Implement features for mobile

Allow the colors of the pictograms to be changed

Safari may prevent the map from working properly when in private mode

This is a browser storage issue and can be pinpointed to one of my other modules. I will fix it as soon as I can.

Coordinates stop updating while cursor is over pictogram

I know why this is happening, but I haven't decided exactly how I am going to fix this yet.

Coming eventually (maybe?)

There are some things I plan to implement eventually, if I ever have the time. I may prioritize bug fixing or new features based on user demand, but I cannot guarantee anything. I also encourage you to come up with anything you think the community may find useful.

More coder customization options

  • Add coder-defined landmarks, such as "my spot".

User changeable settings

Allow the visitor to change settings related to the map. Changes will only affect what they see and may include:

  • How the pictograms move and disappear.
  • Change the speed at which the pictograms resize themselves.
  • Change the size to which the pictograms resize themselves.
  • Change to a non-local/the original timezone for the status text.
  • See the player's account name on hover/focus rather than its pictogram name.

A sidebar for aforementioned settings and other things

Search more often for member pages of pictograms that had no member pages since last check

Maybe once a day.

Pictogram table

A pictogram table that shows all user information laid out so you don't have to hover each pictogram individually. This may be a bit redundant, though, considering the map's current features.

This could also be its own, standalone thing.

Here is a mockup:

Image not loaded.

Please note that eating soup is not a real action (at least, to my knowledge).

Hovering/tabbing on a row on this table could automatically focus the corresponding player on the map.

Could include a pictogram/user search function to see if they are online using either their account name or their pictogram name.

Show whether a pictogram is close to a given landmark

Could maybe make this customizable.

Show only a slice of the map at a time

Let's say you have a character who is always at the pond, or all you care about is the pond. I thought it would be useful to create a version of the map that only shows a small area around the pond. Then, maybe you could put it on your biography (if it fits the theme, of course) and not feel bad about that because it doesn't take up a lot of space.

Show only certain players

Maybe you really only care about you and your friends, and you don't care about them other people. I would like to implement an option that only shows those people. A lot less clutter, right?

Source

Here is the source for visual representation of the map.

License

The source code is released under GPL v3+. Among other things, this means you can redistribute applications using this code as long as you use the same license and provide the source. Remember to leave the copyright notices where they are. Read about the license here.

Credits

Original map © Tale of Tales. Assets including the map background, pictograms, and landmarks also © Tale of Tales.

Please do not credit me personally for directly implementing anything animation- or interaction-related. Those things were all done using jQuery.

See also

External

This guide copyright © 2015 GMSuerte.
Mozdog's picture

Holy crap this amazing work,

Holy crap this amazing work, FINALLY a map for mobile! You surely are skilled in scripting, maybe I'll use this map somewhere for easy access.
SoliloquyChryseis's picture

sits o.o

sits o.o
Skatmat's picture

Speechless. Wow! Tracking!

Speechless. Wow! Tracking!
hadoukin's picture

trackingggg

trackingggg
Kaoori's picture

eating soup ;_;

eating soup ;_;

Honestly this is so damn

Honestly this is so damn neat. Bless you so much! ;v;
Nazzard's picture

Holy sweet jeezus, this is

Holy sweet jeezus, this is ten shades of amazing.

Discord:Nazzard#9068 ||Click for bios.
tigerart27's picture

A map on mobile? Oh my

A map on mobile? Oh my goodness, EXACTLY what I need!

d'aww eating soup..

d'aww eating soup..
Togetherness's picture

Awee yea! This is awesome!

Awee yea! This is awesome! Thank you for sharing!!!
Naremara's picture

Ooh this is amazing!!

Ooh this is amazing!!
Eq's picture

holy crap

holy crap
Aivilo's picture

Fandamntastic Edit: Holy

Fandamntastic

Edit: Holy cow, it even compensates for pictos who share a name with a blog that was created before it was logged into TEFc, and pictos that don't display right on the map (like Geography's). Color me impressed. again
0baf0's picture

Oh wow! This is so neat!

Oh wow! This is so neat! -gets stuck here watching the pictos gracefully move across the map-
I really like that the 'Zzz...' sign moves along with the selected picto so you can tell who's asleep and who's not even in a pile of pictos.
Icon - ahimsa.Signature - Qanat. ♥
HoneyDiva's picture

WOW! It's really in demand

WOW! It's really in demand changes! Thank you for doing this, will be very cool to use this new forestmap in full.

Need to track.
Flyleaf's picture

Amazing work !!

Amazing work !!
Avatar @ Sluggs Siggy @ Amazegenalo
Bouncing Fly by Mary13
OshiBoo's picture

-internal screaming- I can

-internal screaming- I can see the map on my phone omg


This is amazing, thank you so much!
ShrinkingRose's picture

All the wows.

All the wows.
IvyChain's picture

Very interesting!

Very interesting!
ApoideaBee's picture

This is really neat! Oh, and

This is really neat!

Oh, and I thought I would mention that the 'blank spots' are often deer whose pictos just don't show up on the map. If you tab to them on the main map and click 'enter' on your keyboard, you do often go to member pages. Smiling
Avatar by Eyestrain
Dampir's picture

Magic. Amazing. I like the

Magic. Amazing. I like the way pictos move through the map. Great work.
GMSuerte's picture

Thank you, thank you, thank

Thank you, thank you, thank you! Your comments just make my day. I really hope you all get a lot of use out of what I make. I hope I can get to implementing the rest of the stuff so I can make it potentially even more useful.

Mozdog wrote:
maybe I'll use this map somewhere for easy access.

Yeah, it'd be cool to see someone doing that. Otherwise, why would I release code on how to use it, right? Once I can get the little portion thing that I want to do started and completed, I can imagine that people could see a use for it on their own pages! Until then, it's just a big ol' map like always, haha.

Kaoori wrote:
eating soup ;_;

When I first read this I was like, "why are you saying that? That's so random". Then I remembered that I put that in my mockup. Ahaha silly me.

Aivilo wrote:
Holy cow, it even compensates for […] pictos that don't display right on the map (like Geography's).

I didn't know that was a problem. In fact, I had an instance in which my map was wrong and the original was right, but I fixed that. Hopefully there's no more of that elsewhere. I do want to see what you mentioned, though, just out of curiosity's sake, but it seemed like Geography wasn't online when I checked the map some time ago.

ApoideaBee wrote:
Oh, and I thought I would mention that the 'blank spots' are often deer whose pictos just don't show up on the map. If you tab to them on the main map and click 'enter' on your keyboard, you do often go to member pages. Smiling

Thanks, I didn't know that. I just tried that a few minutes ago and I couldn't get it to happen, though, but that makes sense. I will have to update my guide.

(No subject)

GMSuerte's picture

Oh, I see. You didn't have to

Oh, I see. You didn't have to do that, but thanks. I've had that problem before, but in reverse. I still want to do something about that line that creeps up on the side. But I am glad that it looks mostly better overall.
Unplugged's picture

tracking and crying the way

tracking and crying

the way the pictos slide in when the map updates is kind of adorable, haha.

you really inspire me to learn js by the way... i've always just been sticking to the visual stuff like CSS for the most part and i'm honestly kinda jealous, lol.
IvyChain's picture

This happens just for a split


This happens just for a split second and it's hilarious.
Draak's picture

tracks for insane awesomeness

tracks for insane awesomeness
Thais's picture

Thank you for taking your

Thank you for taking your time to do this! This is amazing ^^
Display pic by crabbycrown ♥
Aivilo's picture

Would you be opposed if I put

Would you be opposed if I put this version of the map on an easily-accessed URL (http://www.endlessforest.org/community/map - with a proper link back of course!) ?
GMSuerte's picture

Thanks again for your nice

Thanks again for your nice comments!

Unplugged wrote:
you really inspire me to learn js by the way... i've always just been sticking to the visual stuff like CSS for the most part and i'm honestly kinda jealous, lol.

You guys inspire me! I know that sounds corny, but it's true. When I first started learning, the only JavaScript I saw here was just, you know, the little things (no offense to anyone), so I thought, "I'm going to take this area over by storm!". It has been more like the occasional gust, but I hope I had inspired some sort of change. Way earlier on I would think things like, "well if I don't do it, someone else will!". That never really happened (to my knowledge), so, you know, I kind of have the floor in that area right now. But if you ever get really good, you know, there's a lot of things you can do that I haven't done yet (or even thought of doing). And I haven't really made this clear but the stuff I released allows for collaborations, so, you know, hint hint, *wink wink*. Eye Ahaha.

IvyChain wrote:
This happens just for a split second and it's hilarious.

I thought someone would bring that up! I, uh, think I fixed that. My main concern is cross browser compatibility, so if the fix turns out to be a problem, it's coming back, unfortunately.

Aivilo wrote:
Would you be opposed if I put this version of the map on an easily-accessed URL

No, not at all. Haha, I didn't realize that "map" wasn't taken.
Mauvable's picture

THIS IS AMAZING I really

THIS IS AMAZING

I really think the community could help build up TEF even more, especially with someone like you here!

I'm sure there are people here who could also put new in-forest wear-ables onto the game model and just send them to Michael and Auriea for approval and implementation, as well as make new places in the forest to visit/etc.

I really think my favorite part is the fact that the words can be dragged around, I don't know how many times I've tried looking for a picto and just ?? because I can't find it under the words.

Your magic knows no bounds!

Your magic knows no bounds! This is incredible!
GMSuerte's picture

Thanks yet again! Mauvable

Thanks yet again!

Mauvable wrote:
I really think my favorite part is the fact that the words can be dragged around, I don't know how many times I've tried looking for a picto and just ?? because I can't find it under the words.
Yeah. In fact, you know how the coordinates start out in the corner? When I first started testing this, it seemed like people started gathering up in that corner all of a sudden, even though I hadn't released this yet so they wouldn't have known that was there. I got fed up with not being able to see the coordinates so I made them draggable. Ideally I would have made the pictograms draggable too, but there are a lot of problems in the way of that.
Tisority's picture

@

@<@ hooOOOMG THIS IS AWESOME.
Verdalas's picture

This is very useful for folks

This is very useful for folks on Mobile.

Have you considered actually sharing this with M&A? They might be interested in a mobile-friendly alternative to the current Forest map.
Hum's picture

Friend pls.

Friend pls.
Vessan's picture

Fabolous!

Fabolous!
Draak's picture

gives this a needed bump back

gives this a needed bump back to the first page
thelittleraven's picture

Tracking this and saving the

Tracking this and saving the link. You're a blessing, GM!
GMSuerte's picture

Thank you! You're all

Thank you! You're all blessings too.
Verdalas wrote:
Have you considered actually sharing this with M&A? They might be interested in a mobile-friendly alternative to the current Forest map.
I have, but I haven't gotten to it yet. There are so many things I want to do with it before I think it's completely done.
Acurna's picture

Tracking this.

Tracking this.

I wish I could have this,

I wish I could have this, like, bookmarked on my tracking page or something so that it was always at the top.
Kamaya's picture

Hm-hmmm... ~Tracking~

Hm-hmmm...

~Tracking~
Sannosuke's picture

WOAAAAAAAAAAAAAHOOOOOOAHAHAHA

WOAAAAAAAAAAAAAHOOOOOOAHAHAHAHOAOOOOOO MAAAA GAAAAAAAAAAAAAAAAAA
~~@,................,@~~
*violently explodes*
I welcome you with open arms to stay away from me
Zergarikiaka's picture

This is brilliant!

This is brilliant!

This is amazing.

This is amazing. Shocked

Track

Track
Mjrn's picture

Thank you so much for this.

Thank you so much for this.
Account previously Mjrn, returned to Veedeer.

.

.

doublepost

doublepost