• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    迪恩网络公众号

C# COORD类代码示例

原作者: [db:作者] 来自: [db:来源] 收藏 邀请

本文整理汇总了C#中COORD的典型用法代码示例。如果您正苦于以下问题:C# COORD类的具体用法?C# COORD怎么用?C# COORD使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。



COORD类属于命名空间,在下文中一共展示了COORD类的20个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的C#代码示例。

示例1: ReadConsoleOutput

 static extern bool ReadConsoleOutput(
     IntPtr hConsoleOutput,
     [Out] CHAR_INFO[,] lpBuffer,
     COORD dwBufferSize,
     COORD dwBufferCoord,
     ref SMALL_RECT lpReadRegion
     );
开发者ID:kalaharileeu,项目名称:PylauncherFSI,代码行数:7,代码来源:Readcmd.cs


示例2: ColorConsole

 // Constructor.
 public ColorConsole()
 {
     ConsoleInfo = new CONSOLE_SCREEN_BUFFER_INFO();
     ConsoleOutputLocation = new COORD();
     hConsoleHandle = GetStdHandle(STD_OUTPUT_HANDLE);
     GetConsoleScreenBufferInfo(hConsoleHandle, ref ConsoleInfo);
     OriginalColors = ConsoleInfo.wAttributes;
 }
开发者ID:JackFong,项目名称:NetworkMonitor.Net,代码行数:9,代码来源:ColorConsole.cs


示例3: WriteConsoleOutput

        public static extern bool WriteConsoleOutput(
			IntPtr hConsoleOutput,
			/* This pointer is treated as the origin of a two-dimensional array of CHAR_INFO structures
			whose size is specified by the dwBufferSize parameter.*/
			[MarshalAs(UnmanagedType.LPArray), In] CHAR_INFO[] lpBuffer,
			COORD dwBufferSize,
			COORD dwBufferCoord,
			ref SMALL_RECT lpWriteRegion);
开发者ID:spaceorc,项目名称:icfpc2015,代码行数:8,代码来源:ConsoleApi.cs


示例4: InitConsole

    public static bool InitConsole()
    {
        if (Application.platform != RuntimePlatform.WindowsPlayer)
            return false;

        AllocConsole();
        SetConsoleCtrlHandler(null, true);

        StdOutHandle = GetStdHandle(unchecked((uint)STD_OUTPUT_HANDLE));
        StdInHandle = GetStdHandle(unchecked((uint)STD_INPUT_HANDLE));

        // 允许控制台右键菜单
        uint dwConsoleMode = 0;
        GetConsoleMode(StdInHandle, out dwConsoleMode);
        SetConsoleMode(StdInHandle, ~ENABLE_MOUSE_INPUT & dwConsoleMode);

        // forbid close
        IntPtr hWnd = GetConsoleWindow();
        IntPtr hMenu = GetSystemMenu(hWnd, 0);
        RemoveMenu(hMenu, SC_CLOSE, MF_BYCOMMAND);

        COORD BufferSize = new COORD()
        {
            X = 120,
            Y = 320,
        };

        SMALL_RECT WinRect = new SMALL_RECT()
        {
            Left = 0,
            Top = 0,
            Right = (short)(BufferSize.X - 1),
            Bottom = 30,
        };

        IntPtr pBuffer = Marshal.AllocHGlobal(Marshal.SizeOf(BufferSize));
        Marshal.StructureToPtr(BufferSize, pBuffer, false);
        Debug.Log(SetConsoleScreenBufferSize(StdOutHandle, pBuffer));
        Marshal.FreeHGlobal(pBuffer);

        IntPtr pWinRect = Marshal.AllocHGlobal(Marshal.SizeOf(WinRect));
        Marshal.StructureToPtr(WinRect, pWinRect, false);
        Debug.Log(SetConsoleWindowInfo(StdOutHandle, true, pWinRect));
        Marshal.FreeHGlobal(pWinRect);

        ConsoleAlive = true;

        Thread th = new Thread(new ThreadStart(WorkingThread));
        th.Start();

        return true;
    }
开发者ID:xtopsoft,项目名称:XGame,代码行数:52,代码来源:XConsole.cs


示例5: ReadFromBuffer

        public static IEnumerable<string> ReadFromBuffer(short x, short y, short width, short height)
        {
            IntPtr buffer = Marshal.AllocHGlobal(width * height * Marshal.SizeOf(typeof(CHAR_INFO)));
            if (buffer == null)
                throw new OutOfMemoryException();

            try
            {
                COORD coord = new COORD();
                SMALL_RECT rc = new SMALL_RECT();
                rc.Left = x;
                rc.Top = y;
                rc.Right = (short)(x + width - 1);
                rc.Bottom = (short)(y + height - 1);

                COORD size = new COORD();
                size.X = width;
                size.Y = height;

                const int STD_OUTPUT_HANDLE = -11;
                if (!ReadConsoleOutput(GetStdHandle(STD_OUTPUT_HANDLE), buffer, size, coord, ref rc))
                {
                    // 'Not enough storage is available to process this command' may be raised for buffer size > 64K (see ReadConsoleOutput doc.)
                    throw new Win32Exception(Marshal.GetLastWin32Error());
                }

                IntPtr ptr = buffer;
                for (int h = 0; h < height; h++)
                {
                    StringBuilder sb = new StringBuilder();
                    for (int w = 0; w < width; w++)
                    {
                        CHAR_INFO ci = (CHAR_INFO)Marshal.PtrToStructure(ptr, typeof(CHAR_INFO));
                        char[] chars = Console.OutputEncoding.GetChars(ci.charData);
                        sb.Append(chars[0]);
                        ptr += Marshal.SizeOf(typeof(CHAR_INFO));
                    }
                    yield return sb.ToString();
                }
            }
            finally
            {
                Marshal.FreeHGlobal(buffer);
            }
        }
开发者ID:gunnerwolf,项目名称:Quot,代码行数:45,代码来源:ConsoleReader.cs


示例6: readvalue

        public string readvalue(ref System.IntPtr ptr, short a)
        {
            SMALL_RECT srctReadRect = new SMALL_RECT
            {
                Top = 0,
                Left = 0,
                Bottom = 1,
                Right = 80
            };
            CHAR_INFO[,] chiBuffer = new CHAR_INFO[2, 80]; // [2][80];10 lines,  with 50 characters

            COORD coordBufSize = new COORD
            {
                X = 80,
                Y = 2
            };
            COORD coordBufCoord = new COORD
            {
                X = 0,
                Y = 0
            };

            bool fSuccess;
            int i = 0;
            int j = 0;
            string chartostring = "start";
            string previousstring = "";

            short g = a;
            short h = (short)(g + 1);

            srctReadRect.Top = g;
            srctReadRect.Bottom = h;
            int count = 0;

            //System.Console.WriteLine(g + "." + h);
            while (count < 1)//Hunting:if it find 1 empty rows with text then it will stop reading
            {
                previousstring = chartostring;
                srctReadRect.Top = g;
                srctReadRect.Bottom = h;

                fSuccess = ReadConsoleOutput(ptr, chiBuffer, coordBufSize, coordBufCoord, ref srctReadRect);

                i = 0;
                j = 0;
                chartostring = "";
                while (j < coordBufSize.Y)
                {
                    while (i < coordBufSize.X)
                    {
                        if (chiBuffer[j, i].UnicodeChar != 0 && chiBuffer[j, i].UnicodeChar != 32)
                            chartostring += chiBuffer[j, i].UnicodeChar;
                        i++;
                    }
                    i = 0;
                    j++;
                }

                if (chartostring.Length == 0)//The character length is zero, reverse the top of the source rect
                {
                    count++;
                }
                else
                {
                    count = 0;
                }
                g += 1;
                h += 1;
            }
            return previousstring;
        }
开发者ID:kalaharileeu,项目名称:ProcessLauncher,代码行数:72,代码来源:Readcmd.cs


示例7: SetConsoleScreenBufferSize

 internal static extern bool SetConsoleScreenBufferSize(IntPtr hConsoleOutput, COORD size);
开发者ID:Clockwork-Muse,项目名称:coreclr,代码行数:1,代码来源:Win32Native.cs


示例8: SetConsoleCursorPosition

 public static extern bool SetConsoleCursorPosition(
     IntPtr hConsoleOutput,
    COORD dwCursorPosition
     );
开发者ID:LostCodeStudios,项目名称:SpaceHordes,代码行数:4,代码来源:Win32.Functions.cs


示例9: ConvertLineAndColumnToOffset

        private int ConvertLineAndColumnToOffset(COORD coord)
        {
            int offset;
            int x = _initialX;
            int y = _initialY + Options.ExtraPromptLineCount;

            int bufferWidth = _console.BufferWidth;
            var continuationPromptLength = Options.ContinuationPrompt.Length;
            for (offset = 0; offset < _buffer.Length; offset++)
            {
                // If we are on the correct line, return when we find
                // the correct column
                if (coord.Y == y && coord.X <= x)
                {
                    return offset;
                }
                char c = _buffer[offset];
                if (c == '\n')
                {
                    // If we are about to move off of the correct line,
                    // the line was shorter than the column we wanted so return.
                    if (coord.Y == y)
                    {
                        return offset;
                    }
                    y += 1;
                    x = continuationPromptLength;
                }
                else
                {
                    int size = LengthInBufferCells(c);
                    x += size;
                    // Wrap?  No prompt when wrapping
                    if (x >= bufferWidth)
                    {
                        int offsize = x - bufferWidth;
                        if (offsize % size == 0)
                        {
                            x -= bufferWidth;
                        }
                        else
                        {
                            x = size;
                        }
                        y += 1;
                    }
                }
            }

            // Return -1 if y is out of range, otherwise the last line was shorter
            // than we wanted, but still in range so just return the last offset.
            return (coord.Y == y) ? offset : -1;
        }
开发者ID:cybernetics,项目名称:PSReadLine,代码行数:53,代码来源:Render.cs


示例10: WriteConsoleOutput

 internal static unsafe extern bool WriteConsoleOutput(IntPtr hConsoleOutput, CHAR_INFO* buffer, COORD bufferSize, COORD bufferCoord, ref SMALL_RECT writeRegion);
开发者ID:Clockwork-Muse,项目名称:coreclr,代码行数:1,代码来源:Win32Native.cs


示例11: FillConsoleOutputCharacter

	private static extern int FillConsoleOutputCharacter(int hConsoleOutput, byte cCharacter, int nLength, COORD dwWriteCoord, ref int lpNumberOfCharsWritten);
开发者ID:rjgodia30,项目名称:bcit-courses,代码行数:1,代码来源:ConsoleUtils.cs


示例12: ReadConsoleOutputAttribute

 public static extern bool ReadConsoleOutputAttribute(
     IntPtr hConsoleOutput,
     [Out] ushort[] lpAttribute,
     uint nLength,
     COORD dwReadCoord,
     out uint lpNumberOfAttrsRead
     );
开发者ID:LostCodeStudios,项目名称:SpaceHordes,代码行数:7,代码来源:Win32.Functions.cs


示例13: SetConsoleCursorPosition

 internal static extern bool SetConsoleCursorPosition(IntPtr hConsoleOutput, 
     COORD cursorPosition);
开发者ID:Clockwork-Muse,项目名称:coreclr,代码行数:2,代码来源:Win32Native.cs


示例14: WriteConsoleOutputAttribute

 public static extern bool WriteConsoleOutputAttribute(
     IntPtr hConsoleOutput,
     ushort[] lpAttribute,
     uint nLength,
     COORD dwWriteCoord,
     out uint lpNumberOfAttrsWritten
     );
开发者ID:LostCodeStudios,项目名称:SpaceHordes,代码行数:7,代码来源:Win32.Functions.cs


示例15: WriteConsoleOutputCharacter

 public static extern bool WriteConsoleOutputCharacter(
     IntPtr hConsoleOutput,
     string lpCharacter,
     uint nLength,
     COORD dwWriteCoord,
     out uint lpNumberOfCharsWritten
     );
开发者ID:LostCodeStudios,项目名称:SpaceHordes,代码行数:7,代码来源:Win32.Functions.cs


示例16: WriteConsoleOutput

 public static extern bool WriteConsoleOutput(
     IntPtr hConsoleOutput,
     CHAR_INFO[] lpBuffer,
     COORD dwBufferSize,
     COORD dwBufferCoord,
     ref SMALL_RECT lpWriteRegion
     );
开发者ID:LostCodeStudios,项目名称:SpaceHordes,代码行数:7,代码来源:Win32.Functions.cs


示例17: SetConsoleScreenBufferSize

 public static extern bool SetConsoleScreenBufferSize(
     IntPtr hConsoleOutput,
     COORD dwSize
     );
开发者ID:LostCodeStudios,项目名称:SpaceHordes,代码行数:4,代码来源:Win32.Functions.cs


示例18: SetConsoleDisplayMode

 public static extern bool SetConsoleDisplayMode(
     IntPtr ConsoleOutput,
     uint Flags,
     out COORD NewScreenBufferDimensions
     );
开发者ID:LostCodeStudios,项目名称:SpaceHordes,代码行数:5,代码来源:Win32.Functions.cs


示例19: FillConsoleOutputCharacter

 internal static extern bool FillConsoleOutputCharacter(IntPtr hConsoleOutput,
     char character, int nLength, COORD dwWriteCoord, out int pNumCharsWritten);
开发者ID:Clockwork-Muse,项目名称:coreclr,代码行数:2,代码来源:Win32Native.cs


示例20: FillConsoleOutputCharacter

 public static extern int FillConsoleOutputCharacter(IntPtr Handle, char uChar, int Len, COORD start, ref int written);
开发者ID:wykoooo,项目名称:copy-dotnet-library,代码行数:1,代码来源:Silmoon.cs



注:本文中的COORD类示例整理自Github/MSDocs等源码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。


鲜花

握手

雷人

路过

鸡蛋
该文章已有0人参与评论

请发表评论

全部评论

专题导读
上一篇:
C# COPYDATASTRUCT类代码示例发布时间:2022-05-24
下一篇:
C# CONTROL_STATE类代码示例发布时间:2022-05-24
热门推荐
阅读排行榜

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap