Screen Line Drawing Problem in OpenServer 5.0.7

Ask a Question related to SCO, Design and Development.

  1. #1

    Default Screen Line Drawing Problem in OpenServer 5.0.7

    On a new 5.0.7 install, I get D's instead of lines inside of the scoterm
    window. I tried mkdev scoansi--this cleared up the problem in character mode
    but not in X-windows scoterm. I think that some ansi termcap values have to be
    changed but I've misplaced my notes on this problem. So does anyone remember
    how to fix this problem?

    Transpower
    Transpower Guest

  2. Similar Questions and Discussions

    1. Using cylinders for line drawing
      I have been trying to use cylinders for line drawing, unfortunately I have not been able to get the results I want. I am sure the problem is...
    2. Process of drawing an image to the screen? (technical)
      Lets say I have a png in my library and I draw it to the screen, what is the actual process Director takes? Does it transfer it to a bitmap, then...
    3. Explain the process of drawing a png to the screen. (technical)
      Lets say I have a png in my library and I draw it to the screen, what is the actual process Director takes? Does it transfer it to a bitmap, then...
    4. 3d line drawing
      What would be the best way to draw a free 3d spline inside the 3d world using a keyboard input (or any other input that allows accurate 3d...
    5. How is this done?? Line drawing.
      Hi, I have recently started dabbling with Flash and I came across this site: www.caststoneuk.co.uk I really like the effect of the lines being...
  3. #2

    Default Re: Screen Line Drawing Problem in OpenServer 5.0.7

    I checked and that's what it currently is set to. C'mon guys/gals, there is a
    solution to this.

    Transpower
    Transpower Guest

  4. #3

    Default Re: Screen Line Drawing Problem in OpenServer 5.0.7

    Transpower wrote:
    > On a new 5.0.7 install,
    > I get D's instead of lines
    That *IS* a parity problem in my experience. In CP437 the right-tee-join
    character (-|) is 0xB4 the letter D is 0x44. The difference is the
    absence of the MSB (most significant bit a.k.a. parity bit).

    Maybe you have a setting that is stripping parity. What does stty say?
    > inside of the scoterm
    > window. I tried mkdev scoansi--this cleared up the problem in character mode
    > but not in X-windows scoterm. I think that some ansi termcap values have to be
    > changed but I've misplaced my notes on this problem. So does anyone remember
    > how to fix this problem?
    As you probably know, termcap & terminfo do define line-draw characters
    but these are not the CP437 characters but ASCII characters used within
    a shift-out/shift-in escape sequence to indicate graphics characters.
    There's no correspondence/relationship between CP437 and (for example)
    VT102 graphics-characters (lqkxmj).

    If you have an application that uses termcap/terminfo capabilities for
    line-graphics then you need to make certain that your TERM setting is
    correct. IME ANSI and VT100 are vague and unreliable designations since
    they are often both incompletely implemented and extended.

    I generally create a text file of CP437 line-draw characters than cat it
    to test various permutations of configuartion settings (stty, mapchan,
    etc). I also have files of vt100 & ansi escape sequences to draw boxes
    that I can use with cat for testing, saves firing up an app and
    eliminates some complexity from the problem determination phase.

    --
    Ian Wilson.

    Ian Wilson Guest

  5. #4

    Default Re: Screen Line Drawing Problem in OpenServer 5.0.7

    Tech support at FP Technologies sent me the latest termcap for filePro and that
    solved the problem. Thanks everyone for your ideas.

    Transpower
    Transpower Guest

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

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 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139