~ubuntu-branches/ubuntu/trusty/netrek-client-cow/trusty

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
/* tools.c - shell escape, graphic toolsw - 10/10/93
 * 
 * copyright 1993 Kurt Siegl <007@netrek.org> Free to use, hack, etc.
 * Just keep these credits here. Use of this code may be dangerous to your
 * health and/or system. Its use is at your own risk. I assume no
 * responsibility for damages, real, potential, or imagined, resulting  from
 * the use of it.
 * 
 */

#include "config.h"

#ifdef TOOLS
#include <stdio.h>
#include <signal.h>

#include "Wlib.h"
#include "defs.h"
#include "struct.h"
#include "data.h"

#include "defaults.h"

#include "tools.h"

void
        sendTools(char *str)
{
  char    pipebuf[100];
  char    c;
  FILE   *pipefp;
  int     len, i;

  if (sscanf(str, "set %s %c", pipebuf, &c) == 2)
    {
      for (i = 0; keys[i]; i++)
	{
	  if (strcmpi(macroKeys[i].name, pipebuf) == 0)
	    {
	      macroKeys[i].dest = c;
	      W_WriteText(toolsWin, 0, 0, textColor, str, strlen(str), W_RegularFont);
	      return;
	    }
	}
    }

  if (!W_IsMapped(toolsWin))
    showToolsWin();

#ifndef WIN32
  SIGNAL(SIGCHLD, SIG_DFL);
  if (shelltools && (pipefp = popen(str, "r")) != NULL)
    {
      while (fgets(pipebuf, 80, pipefp) != NULL)
	{
	  len = strlen(pipebuf);
	  if (pipebuf[len - 1] == '\n')
	    pipebuf[len - 1] = '\0';
	  W_WriteText(toolsWin, 0, 0, textColor, pipebuf,
		      strlen(pipebuf), W_RegularFont);
	}
      pclose(pipefp);
    }
  else
#endif

    W_WriteText(toolsWin, 0, 0, textColor, str, strlen(str), W_RegularFont);
}

void showToolsWin(void)
{
  if (W_IsMapped(toolsWin))
    W_UnmapWindow(toolsWin);
  else
    W_MapWindow(toolsWin);
}
#endif /* TOOLS */