MT_Mapper for Windows (and Linux now too!)- make mapping easier! [0.5]

User avatar
Dan Duncombe
Member
 
Posts: 904
Joined: Thu May 09, 2013 21:11

by Dan Duncombe » Tue Oct 15, 2013 18:24

jojoa1997 wrote:Could you add source code. I would like to compile this into Ubuntu.

Well, all source is in mt_mapper.bat, which is essentially plain text. It is code for Windows though, dunno if it can be converted somehow for Linux.
EDIT:
[spoiler=A Linux Conversion]
Your phone or window isn't wide enough to display the code box. If it's a phone, try rotating it to landscape mode.
Code: Select all
#!/bin/bash
#
# Translated to bash by VR (vytautas)


echo "-------------------------------------------------"
echo "This program is made by DanDuncombe."
echo "Read the README before first use."
echo "Licensed under WTFPL"
echo "This is version 0.5"
echo "Please type your world name:"
read world_name
if [ -f ../worlds/${world_name} ];
then
    echo "World $world_name Detected!"
    echo "What do want you want to name your map?"
    read map
    if [ -f ${map}.png ];
    then
        echo "Map ${map} exists!"
        #goto :new_map_name
    else
        echo "-------------------------------------------------"
        echo "Press [1] if you want to add extra parameters"
        echo "Press [2] to Map world"
        echo "-------------------------------------------------"
        read choice
        if [ $choice == 1 ];
        then
            echo "Type extra params:"
            read param
        fi
        echo "Mapping ${world_name}... (Please be patient)"
        wine minetest_mapper.exe -i ../worlds/${world_name} -o ${map}.png $param
        echo "Done!"
    fi
else
    echo "World Not Found!"
fi

[/spoiler]

This is a Linux-compatable .sh code that has a similar effect to the Windows version.
Last edited by Dan Duncombe on Tue Oct 15, 2013 19:27, edited 1 time in total.
Some Mods: Castles Prefab Camouflage
My Games: Nostalgia Realtest Revamped
Servers: See above games.
 

User avatar
jojoa1997
Member
 
Posts: 2890
Joined: Thu Dec 13, 2012 05:11

by jojoa1997 » Wed Oct 16, 2013 10:11

Dan Duncombe wrote:
jojoa1997 wrote:Could you add source code. I would like to compile this into Ubuntu.

Well, all source is in mt_mapper.bat, which is essentially plain text. It is code for Windows though, dunno if it can be converted somehow for Linux.
EDIT:
[spoiler=A Linux Conversion]
Your phone or window isn't wide enough to display the code box. If it's a phone, try rotating it to landscape mode.
Code: Select all
#!/bin/bash
#
# Translated to bash by VR (vytautas)


echo "-------------------------------------------------"
echo "This program is made by DanDuncombe."
echo "Read the README before first use."
echo "Licensed under WTFPL"
echo "This is version 0.5"
echo "Please type your world name:"
read world_name
if [ -f ../worlds/${world_name} ];
then
    echo "World $world_name Detected!"
    echo "What do want you want to name your map?"
    read map
    if [ -f ${map}.png ];
    then
        echo "Map ${map} exists!"
        #goto :new_map_name
    else
        echo "-------------------------------------------------"
        echo "Press [1] if you want to add extra parameters"
        echo "Press [2] to Map world"
        echo "-------------------------------------------------"
        read choice
        if [ $choice == 1 ];
        then
            echo "Type extra params:"
            read param
        fi
        echo "Mapping ${world_name}... (Please be patient)"
        wine minetest_mapper.exe -i ../worlds/${world_name} -o ${map}.png $param
        echo "Done!"
    fi
else
    echo "World Not Found!"
fi

[/spoiler]

This is a Linux-compatable .sh code that has a similar effect to the Windows version.

Thanks. I didnt notice that this was all terminal code. I thought it was an actual program.
Coding;
1X coding
3X debugging
12X tweaking to be just right
 

User avatar
Inocudom
Member
 
Posts: 2889
Joined: Sat Sep 29, 2012 01:14
IRC: Inocudom
In-game: Inocudom

by Inocudom » Wed Dec 11, 2013 15:17

You know, some things really aren't meant to be. Minetest having a convenient mapping program is one of them (the download link no longer works.)
 

User avatar
BlockMen
Member
 
Posts: 768
Joined: Fri Mar 01, 2013 17:24
GitHub: BlockMen

by BlockMen » Wed Dec 11, 2013 15:22

Inocudom wrote:You know, some things really aren't meant to be. Minetest having a convenient mapping program is one of them (the download link no longer works.)



I have found a version of his mapper from 2015-15-10: https://www.dropbox.com/s/im382oufejgywse/minetest_mapper-master.zip
 

User avatar
hoodedice
Member
 
Posts: 1372
Joined: Sat Jul 06, 2013 06:33

by hoodedice » Wed Dec 11, 2013 16:01

Inocudom wrote:You know, some things really aren't meant to be. Minetest having a convenient mapping program is one of them (the download link no longer works.)


Why are you such a God damn pessimist?
7:42 PM - Bauglio: I think if you go to staples you could steal firmware from a fax machine that would run better than win10 does on any platform
7:42 PM - Bauglio: so fudge the stable build
7:43 PM - Bauglio: get the staple build
 

User avatar
Inocudom
Member
 
Posts: 2889
Joined: Sat Sep 29, 2012 01:14
IRC: Inocudom
In-game: Inocudom

by Inocudom » Wed Dec 11, 2013 16:19

hoodedice wrote:
Inocudom wrote:You know, some things really aren't meant to be. Minetest having a convenient mapping program is one of them (the download link no longer works.)


Why are you such a God damn pessimist?


Because I understand how things are; how they really are. I learned well from the historian Alan Watt, and one of the things I learned from him is how flawed mankind is. I also learned well from the experiences of my own life.
Last edited by Inocudom on Wed Dec 11, 2013 16:24, edited 1 time in total.
 

hampa16
Member
 
Posts: 192
Joined: Sat Jun 29, 2013 04:20

by hampa16 » Thu Dec 26, 2013 17:53

Dan Duncombe wrote:Do you have Windows? If so, have you ever tried minetest_mapper.exe? If so, you are probably bored with having to type everything in each time. Or maybe you just don't like the Windows command line.
Then this is for you! Simply extract the contents of the zip file into the minetest directory. Then run mt_mapper.bat. All the necessary files are included in the download.
NOTICE: A mt_mapper.sh is included for Linux users, converted by vytautas, but Wine is still needed to run minetest_mapper.exe.
Remember, if choosing to enter extra params, always do them in the following way:
--param --param --param

Instead of command line, it is a 'TUI' (Text-based GUI)

[spoiler=The Example Map]http://s2.postimg.org/skc3s6i7d/Example_Map.png[/spoiler]

Download here!

Colors.txt can be found here

License for program: WTFPL
IT'S TOO CONFUSING!
Rex 2 Double 9
=RomanFox2=
SoulKiller35
 

Evolykane
Member
 
Posts: 23
Joined: Thu Dec 26, 2013 16:22

by Evolykane » Thu Dec 26, 2013 19:00

Page not fount @ downloadlink
 

User avatar
Topywo
Member
 
Posts: 1718
Joined: Fri May 18, 2012 20:27

by Topywo » Thu Dec 26, 2013 22:48

Evolykane wrote:Page not fount @ downloadlink


https://dl.dropboxusercontent.com/u/65428713/minetest_mapper-master.zip


I never tested it, but found a copy. Hope it's useful.
 

boybryon2278
New member
 
Posts: 6
Joined: Fri Jun 28, 2013 22:14

by boybryon2278 » Tue Jan 07, 2014 19:38

the minetest game app in the ubuntu software center needs to be updated its still like 0.3.1 and the minetest game is already 0.4.9 can some one please update it thank you
 

User avatar
Evergreen
Member
 
Posts: 2131
Joined: Sun Jan 06, 2013 01:22
GitHub: 4Evergreen4
IRC: EvergreenTree
In-game: Evergreen

by Evergreen » Tue Jan 07, 2014 20:40

boybryon2278 wrote:the minetest game app in the ubuntu software center needs to be updated its still like 0.3.1 and the minetest game is already 0.4.9 can some one please update it thank you
Okay:
  • First, why are you posting that in this topic?
  • Second, learn to compile it yourself.
  • And finally, there are .deb files on the downloads page for easy installation. There is also a ppa.
"Help! I searched for a mod but I couldn't find it!"
http://krock-works.16mb.com/MTstuff/modSearch.php
 

User avatar
Inocudom
Member
 
Posts: 2889
Joined: Sat Sep 29, 2012 01:14
IRC: Inocudom
In-game: Inocudom

Re: MT_Mapper for Windows (and Linux now too!)- make mapping

by Inocudom » Wed May 21, 2014 03:26

It looks like this program has been abandoned. It could benefit from the new advancements concerning minetestmapper.
 

User avatar
Krock
Member
 
Posts: 3598
Joined: Thu Oct 03, 2013 07:48
GitHub: SmallJoker

Re: MT_Mapper for Windows (and Linux now too!)- make mapping

by Krock » Wed May 21, 2014 12:00

Yes, the github link is broken too.
I'd like to see this program online again :/
Newest Win32 builds - Find a mod - All my mods
ALL YOUR DONATION ARE BELONG TO PARAMAT (Please support him and Minetest)
New DuckDuckGo !bang: !mtmod <keyword here>
 

User avatar
Inocudom
Member
 
Posts: 2889
Joined: Sat Sep 29, 2012 01:14
IRC: Inocudom
In-game: Inocudom

Re:

by Inocudom » Wed May 21, 2014 12:33

Topywo wrote:
Evolykane wrote:Page not fount @ downloadlink


https://dl.dropboxusercontent.com/u/65428713/minetest_mapper-master.zip


I never tested it, but found a copy. Hope it's useful.

This link still works.
 

Previous

Return to Minetest-Related

Who is online

Users browsing this forum: No registered users and 24 guests

cron