[Home] [Downloads] [Search] [Help/forum]


Register forum user name Search FAQ

Gammon Forum

[Folder]  Entire forum
-> [Folder]  MUSHclient
. -> [Folder]  General
. . -> [Subject]  About ASCII

About ASCII

It is now over 60 days since the last post. This thread is closed.     [Refresh] Refresh page


Pages: 1 2  

Posted by Feijiyeye   (10 posts)  [Biography] bio
Date Sun 18 Sep 2016 07:54 AM (UTC)

Amended on Mon 19 Sep 2016 03:02 AM (UTC) by Feijiyeye

Message
Hello, everyone. I am from China. I recently played mud with mushclient.The mushclient is very great.since use this,I don't want to use zmud any more.
But some of the ASCII pattern can not be displayed with mushclient, It is very difficult for me.

who can help me?thanks a lot
[Go to top] top

Posted by Fiendish   USA  (2,514 posts)  [Biography] bio   Global Moderator
Date Reply #1 on Sun 18 Sep 2016 08:00 AM (UTC)
Message
Please provide more information.

https://github.com/fiendish/aardwolfclientpackage
[Go to top] top

Posted by Feijiyeye   (10 posts)  [Biography] bio
Date Reply #2 on Sun 18 Sep 2016 09:00 AM (UTC)
Message
Draw a two-dimensional coordinates, and then use the ASCII symbol to mark the ship's position. because the mush trigger can not catch the ASCII tab, so you can not determine the location of the ship
[Go to top] top

Posted by Feijiyeye   (10 posts)  [Biography] bio
Date Reply #3 on Sun 18 Sep 2016 09:00 AM (UTC)

Amended on Sun 18 Sep 2016 09:19 AM (UTC) by Feijiyeye

Message
thanks
[Go to top] top

Posted by Feijiyeye   (10 posts)  [Biography] bio
Date Reply #4 on Sun 18 Sep 2016 02:34 PM (UTC)
Message
In the same place, we can see the ship by zmud, but can't see anyting by mushclient.

http://115.28.138.173/data/attachment/forum/201609/18/232917jpspposysd95pcrc.jpg

http://115.28.138.173/data/attachment/forum/201609/18/232916xube9dbd62ouq26m.jpg


who can help me?thanks
[Go to top] top

Posted by Fiendish   USA  (2,514 posts)  [Biography] bio   Global Moderator
Date Reply #5 on Sun 18 Sep 2016 07:53 PM (UTC)
Message
I don't see anything like
Quote:
> 你往北方看去:
in the MUSHclient picture.

https://github.com/fiendish/aardwolfclientpackage
[Go to top] top

Posted by Feijiyeye   (10 posts)  [Biography] bio
Date Reply #6 on Mon 19 Sep 2016 02:53 AM (UTC)
Message
Fiendish said:

I don't see anything like
Quote:
> 你往北方看去:
in the MUSHclient picture.


That is the problem, it can not be displayed in the mushclient.
[Go to top] top

Posted by Fiendish   USA  (2,514 posts)  [Biography] bio   Global Moderator
Date Reply #7 on Mon 19 Sep 2016 12:35 PM (UTC)

Amended on Tue 20 Sep 2016 08:53 AM (UTC) by Fiendish

Message
I can get it to display just fine. See: http://i.imgur.com/KwWfs5X.png

Note: I am using Fedora 24 Linux, and to test this I ran MUSHclient in UTF8 mode with:

LANG=zh_CN.UTF-8 wine MUSHclient.exe


Can you please copy + paste the whole message from zMUD* into a chinese text file and link the file here?
* - all of the messages that do not show for you in MUSHclient

We need the actual messages for testing, not just pictures of them.

https://github.com/fiendish/aardwolfclientpackage
[Go to top] top

Posted by Feijiyeye   (10 posts)  [Biography] bio
Date Reply #8 on Fri 23 Sep 2016 10:51 AM (UTC)

Amended on Fri 23 Sep 2016 09:30 PM (UTC) by Nick Gammon

Message
yes,I find this code.
Function look, how can be displayed in the mush!!


void look(object me,int idx,int team,int way)
{
	int x,y,i,j,k,a,cur,size,tsize,x1,x2,y1,isshow;
	string str;
	
	if(!me || !userp(me)) return;
	
	if(team==1) {
		x = sea[idx]["x2"] - sea[idx]["x1"];
		y = sea[idx]["y2"] - sea[idx]["y1"];
	}
	else {
		x = sea[idx]["x1"] - sea[idx]["x2"];
		y = sea[idx]["y1"] - sea[idx]["y2"];
	}
	
	// get ruler
	size = 1;
	switch(way) {
		case 6: if(x<0) size = 0; break;
		case 4: if(x>0) size = 0; break;
		case 8: if(y<0) size = 0; break;
		case 2: if(y>0) size = 0; break;
	}

	i = MAX( ABS(x) , ABS(y) );
	if( i > 7500 || size == 0 ) { size = 1000; str = "?"; }
	else if( i > 3750 ) { size = 500; str = "?"; }
	else if( i > 1875 ) { size = 250; str = "????"; }
	else { size = 125; str = "????"; }
	
	x /= size;
	y /= size;
	
	// get shot to be showed
	tsize = 0;
	for(i=0;i<MAX_SHOTS;i++) {
		if( shot[i]["x"]==0 || shot[i]["job"]!=idx ) continue;
	
		if(team==1) {
			tshot[tsize]["x"] = shot[i]["x"] - sea[idx]["x1"];
			tshot[tsize]["y"] = shot[i]["y"] - sea[idx]["y1"];
		}
		else {
			tshot[tsize]["x"] = shot[i]["x"] - sea[idx]["x2"];
			tshot[tsize]["y"] = shot[i]["y"] - sea[idx]["y2"];
		}
		
		tshot[tsize]["x"] /= size;
		tshot[tsize]["y"] /= size;
		tshot[tsize]["team"] = shot[i]["team"];
		
		switch(way) {
			case 6: if(tshot[tsize]["x"]>0 && ABS(tshot[tsize]["y"])<15) tsize++; break;
			case 4: if(tshot[tsize]["x"]<0 && ABS(tshot[tsize]["y"])<15) tsize++; break;
			case 8: if(tshot[tsize]["y"]>0 && ABS(tshot[tsize]["x"])<15) tsize++; break;
			case 2: if(tshot[tsize]["y"]<0 && ABS(tshot[tsize]["x"])<15) tsize++; break;
		}
	}
		
	// first line
	isshow = 1;
	switch(way) {
		case 6: 
			tell_object(me,CYN"??????:\n"NOR);
			tell_object(me,"  010203040506070809101112131415\n");
			if(x<1 || x>15) isshow = 0;
			x1 = 0; x2 = 30; y1 = -15;
			break;
		case 4: 
			tell_object(me,CYN"??????:\n"NOR);
			tell_object(me,"  151413121110090807060504030201\n"); 
			if(x<-15 || x>-1) isshow = 0;
			x1 = 30; x2 = 30; y1 = -15;
			break;
		case 8: 
			tell_object(me,CYN"??????:\n"NOR);
			tell_object(me,"  151413121110090807060504030201**010203040506070809101112131415\n");
			if(x<-15 || x>15) isshow = 0;
			x1 = 30; x2 = 62; y1 = 1;
			break;
		case 2: 
			tell_object(me,CYN"??????:\n"NOR);
			tell_object(me,"  151413121110090807060504030201"+showship(idx,team)+"010203040506070809101112131415\n");
			if(x<-15 || x>15) isshow = 0;
			x1 = 30; x2 = 62; y1 = 1;
			break;
	}
		
	a = -1;
	for(k=15;k>=y1;k--) {
		if(way==2) i=k-16; else i=k;
		if(i==0 && way==6)	
			tell_object(me,showship(idx,team));
		else
			tell_object(me,sprintf("%.2d",ABS(i)));
		cur = 0;
		
		for(j=0;j<tsize;j++) {
			if( tshot[j]["y"] != i ) continue;
			
			if(cur>0) tell_object(me,ANSI_CHAR+sprintf("%d",cur)+ANSI_LEFT);
			cur = x1 + tshot[j]["x"]*2;
			tell_object(me,ANSI_CHAR+sprintf("%d",cur)+ANSI_RIGHT);	
			
			if(tshot[j]["team"]==1) tell_object(me,HIW); else tell_object(me,CYN);
			tell_object(me,"?"NOR);
			cur += 2;
		}
		
		if( y==i && isshow ) a = 0;
				
		if(cur<x2) tell_object(me,ANSI_CHAR+sprintf("%d",x2-cur)+ANSI_RIGHT);
		if(i==0 && way==4)	
			tell_object(me,showship(idx,team)+"\n");
		else
			tell_object(me,sprintf("%.2d\n",ABS(i)));
		
		if(a>=0) a++;
	}

/*
	for(k=15;k>=y1;k--) {
		if(way==2) i=k-16; else i=k;
		if(i==0 && way==6)	
			tell_object(me,showship(idx,team));
		else
			tell_object(me,sprintf("%.2d",ABS(i)));
		cur = 0;
		
		for(j=0;j<tsize;j++) {
			if( tshot[j]["y"] != i ) continue;
			
			if(cur>0) tell_object(me,ANSI_CHAR+sprintf("%d",cur)+ANSI_LEFT);
			cur = x1 + tshot[j]["x"]*2;
			tell_object(me,ANSI_CHAR+sprintf("%d",cur)+ANSI_RIGHT);	
			
			if(tshot[j]["team"]==1) tell_object(me,HIW); else tell_object(me,CYN);
			tell_object(me,"?"NOR);
			cur += 2;
		}
		
		if( y==i && isshow ) {
			if(cur>0) tell_object(me,ANSI_CHAR+sprintf("%d",cur)+ANSI_LEFT);
			cur = x1 + x*2;
			if(cur>0) tell_object(me,ANSI_CHAR+sprintf("%d",cur)+ANSI_RIGHT);
			tell_object(me,showship(idx,3-team));
			cur += 2;
		}
		
		if(cur<x2) tell_object(me,ANSI_CHAR+sprintf("%d",x2-cur)+ANSI_RIGHT);
		if(i==0 && way==4)	
			tell_object(me,showship(idx,team)+"\n");
		else
			tell_object(me,sprintf("%.2d\n",ABS(i)));
	}
*/	
	// last line
	switch(way) {
		case 6: tell_object(me,"  010203040506070809101112131415\n"); break;
		case 4: tell_object(me,"  151413121110090807060504030201\n"); break;
		case 8: tell_object(me,"  151413121110090807060504030201"+showship(idx,team)+"010203040506070809101112131415\n"); break;
		case 2: tell_object(me,"  151413121110090807060504030201**010203040506070809101112131415\n"); break;
	}

	// show ruler
	tell_object(me,"???:"+str+" ?????");
	if(wizardp(me) && me->query("env/test"))
		tell_object(me,sprintf("    ??:%d,%d ; ??:%d,%d",sea[idx]["x1"],sea[idx]["y1"],sea[idx]["x2"],sea[idx]["y2"]));
	tell_object(me,"\n");
	
	// show ship
	if( a > 0 ) {
		tell_object(me,ANSI_CHAR+sprintf("%d",a+2)+ANSI_UP);
		
		if(y==0 && way==6)	
			tell_object(me,showship(idx,team));
		else
			tell_object(me,"?");

		cur = x1 + x*2;
		if(way==6) cur-=2;
		if(cur>0) tell_object(me,ANSI_CHAR+sprintf("%d",cur)+ANSI_RIGHT);
		tell_object(me,showship(idx,3-team));
		cur += 2;
		
		if(cur<x2) tell_object(me,ANSI_CHAR+sprintf("%d",x2-cur)+ANSI_RIGHT);
		if(y==0 && way==4)	
			tell_object(me,showship(idx,team)+"\n");
		else
			tell_object(me,"?\n");

		tell_object(me,ANSI_CHAR+sprintf("%d",a+1)+ANSI_DOWN);
	}
}
[Go to top] top

Posted by Nick Gammon   Australia  (22,973 posts)  [Biography] bio   Forum Administrator
Date Reply #9 on Fri 23 Sep 2016 09:37 PM (UTC)
Message
I tried to put your post into code tags but lost the Chinese characters. Can you edit your post and paste it again please?

- Nick Gammon

www.gammon.com.au, www.mushclient.com
[Go to top] top

Posted by Nick Gammon   Australia  (22,973 posts)  [Biography] bio   Forum Administrator
Date Reply #10 on Fri 23 Sep 2016 10:26 PM (UTC)
Message
Also see: http://www.gammon.com.au/forum/?id=13797

- Nick Gammon

www.gammon.com.au, www.mushclient.com
[Go to top] top

Posted by Feijiyeye   (10 posts)  [Biography] bio
Date Reply #11 on Sat 24 Sep 2016 03:23 PM (UTC)

Amended on Sun 25 Sep 2016 08:06 AM (UTC) by Feijiyeye

Message
Nick Gammon said:

I tried to put your post into code tags but lost the Chinese characters. Can you edit your post and paste it again please?

thank you very much!

IN THE MushClient:
watch north:
151413121110090807060504030201**010203040506070809101112131415
1515
1414
1313
1212
1111
1010
0909
0808
0707
0606
0505
0404
0303
02●02
0101
151413121110090807060504030201舢010203040506070809101112131415

In the zmud
Strange, I can not copy the pattern here, please look at here
http://115.28.138.173/forum.php?mod=viewthread&tid=977&extra=

How can I see the same pattern in mush?
[Go to top] top

Posted by Fiendish   USA  (2,514 posts)  [Biography] bio   Global Moderator
Date Reply #12 on Sat 24 Sep 2016 07:32 PM (UTC)

Amended on Sat 24 Sep 2016 07:36 PM (UTC) by Fiendish

Message
By wrapping it in [code][/code] tags

watch north:

   151413121110090807060504030201**010203040506070809101112131415
15                                                                                                                    15
14                                                                                                                    14
13                                                                                                                    13
12                                                                                                                    12
11                                                                                                                    11
10                                                                                                                    10
09                                                                                                                    09
08                                                                                                                    08
07                                                                                                                    07
★                                      船                                                                            ★
05                                                                                                                    05
04                                                                                                                    04
03                                                                                                                    03
02                        ●                                                                                          02
01                                                                                                                    01
   151413121110090807060504030201舢010203040506070809101112131415


Though this spacing does not look right. Too wide. The whole thing should be a box.

https://github.com/fiendish/aardwolfclientpackage
[Go to top] top

Posted by Feijiyeye   (10 posts)  [Biography] bio
Date Reply #13 on Sun 25 Sep 2016 08:08 AM (UTC)

Amended on Sun 25 Sep 2016 02:35 PM (UTC) by Feijiyeye

Message
yes IT's like a box.
[Go to top] top

Posted by Feijiyeye   (10 posts)  [Biography] bio
Date Reply #14 on Sun 25 Sep 2016 02:21 PM (UTC)
Message
Fiendish said:

By wrapping it in [code][/code] tags

watch north:

   151413121110090807060504030201**010203040506070809101112131415
15                                                                                                                    15
14                                                                                                                    14
13                                                                                                                    13
12                                                                                                                    12
11                                                                                                                    11
10                                                                                                                    10
09                                                                                                                    09
08                                                                                                                    08
07                                                                                                                    07
★                                      船                                                                            ★
05                                                                                                                    05
04                                                                                                                    04
03                                                                                                                    03
02                        ●                                                                                          02
01                                                                                                                    01
   151413121110090807060504030201舢010203040506070809101112131415


Though this spacing does not look right. Too wide. The whole thing should be a box.


but in the mushClient,IT's this
watch north:
151413121110090807060504030201**010203040506070809101112131415
1515
1414
1313
1212
1111
1010
0909
0808
0707
0606
0505
0404
0303
02●02
0101
151413121110090807060504030201舢010203040506070809101112131415

so,i can't see it clearly.
[Go to top] top

The dates and times for posts above are shown in Universal Co-ordinated Time (UTC).

To show them in your local time you can join the forum, and then set the 'time correction' field in your profile to the number of hours difference between your location and UTC time.


35,675 views.

This is page 1, subject is 2 pages long: 1 2  [Next page]

It is now over 60 days since the last post. This thread is closed.     [Refresh] Refresh page

Go to topic:           Search the forum


[Go to top] top

Quick links: MUSHclient. MUSHclient help. Forum shortcuts. Posting templates. Lua modules. Lua documentation.

Information and images on this site are licensed under the Creative Commons Attribution 3.0 Australia License unless stated otherwise.

[Home]


Written by Nick Gammon - 5K   profile for Nick Gammon on Stack Exchange, a network of free, community-driven Q&A sites   Marriage equality

Comments to: Gammon Software support
[RH click to get RSS URL] Forum RSS feed ( https://gammon.com.au/rss/forum.xml )

[Best viewed with any browser - 2K]    [Hosted at HostDash]