summaryrefslogtreecommitdiff
path: root/nuttx/examples/nx/nx_main.c
diff options
context:
space:
mode:
authorpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2008-11-28 23:04:54 +0000
committerpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2008-11-28 23:04:54 +0000
commit62f15df2d7d7ad3a3bc4a93fbb6e94644f1e0f3f (patch)
treeecd94fbfa9e5e21f09aa4526ddaabaa93472a1b7 /nuttx/examples/nx/nx_main.c
parent783dea5150512780cfaba1048403caf757108f45 (diff)
downloadpx4-nuttx-62f15df2d7d7ad3a3bc4a93fbb6e94644f1e0f3f.tar.gz
px4-nuttx-62f15df2d7d7ad3a3bc4a93fbb6e94644f1e0f3f.tar.bz2
px4-nuttx-62f15df2d7d7ad3a3bc4a93fbb6e94644f1e0f3f.zip
Changes from initial NX debug
git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@1341 42af7a65-404d-4744-a932-0658087f49c3
Diffstat (limited to 'nuttx/examples/nx/nx_main.c')
-rw-r--r--nuttx/examples/nx/nx_main.c321
1 files changed, 272 insertions, 49 deletions
diff --git a/nuttx/examples/nx/nx_main.c b/nuttx/examples/nx/nx_main.c
index efbf747ca..cd91cea2e 100644
--- a/nuttx/examples/nx/nx_main.c
+++ b/nuttx/examples/nx/nx_main.c
@@ -41,6 +41,7 @@
#include <sys/types.h>
#include <stdio.h>
+#include <stdlib.h>
#include <unistd.h>
#include <sched.h>
#include <errno.h>
@@ -59,90 +60,188 @@
* Private Types
****************************************************************************/
+enum exitcode_e
+{
+ NXEXIT_SUCCESS = 0,
+ NXEXIT_TASKCREATE,
+ NXEXIT_FBINITIALIZE,
+ NXEXIT_FBGETVPLANE,
+ NXEXIT_NXOPEN,
+ NXEXIT_NXSETBGCOLOR,
+ NXEXIT_NXOPENWINDOW,
+ NXEXIT_NXSETSIZE,
+ NXEXIT_NXSETPOSITION,
+ NXEXIT_NXCLOSEWINDOW
+};
+
/****************************************************************************
* Private Function Prototypes
****************************************************************************/
-static void my_redraw(NXWINDOW handle, FAR const struct nxgl_rect_s *rect,
- boolean more);
-static void my_position(NXWINDOW handle, FAR const struct nxgl_rect_s *size,
- FAR const struct nxgl_point_s *pos);
+static void nxeg_redraw1(NXWINDOW hwnd, FAR const struct nxgl_rect_s *rect,
+ boolean more);
+static void nxeg_redraw2(NXWINDOW hwnd, FAR const struct nxgl_rect_s *rect,
+ boolean more);
+static void nxeg_position1(NXWINDOW hwnd, FAR const struct nxgl_rect_s *size,
+ FAR const struct nxgl_point_s *pos,
+ FAR const struct nxgl_rect_s *bounds);
+static void nxeg_position2(NXWINDOW hwnd, FAR const struct nxgl_rect_s *size,
+ FAR const struct nxgl_point_s *pos,
+ FAR const struct nxgl_rect_s *bounds);
#ifdef CONFIG_NX_MOUSE
-static void my_mousein(NXWINDOW handle, FAR const struct nxgl_point_s *pos,
- ubyte buttons);
+static void nxeg_mousein1(NXWINDOW hwnd, FAR const struct nxgl_point_s *pos,
+ ubyte buttons);
+static void nxeg_mousein2(NXWINDOW hwnd, FAR const struct nxgl_point_s *pos,
+ ubyte buttons);
#endif
#ifdef CONFIG_NX_KBD
-static void my_kbdin(NXWINDOW handle, ubyte nch, const ubyte *ch);
+static void nxeg_kbdin(NXWINDOW hwnd, ubyte nch, const ubyte *ch);
#endif
/****************************************************************************
* Private Data
****************************************************************************/
-static const struct nx_callback_s g_nxcb =
+static const struct nx_callback_s g_nxcb1 =
+{
+ nxeg_redraw1, /* redraw */
+ nxeg_position1 /* position */
+#ifdef CONFIG_NX_MOUSE
+ , nxeg_mousein1 /* mousein */
+#endif
+#ifdef CONFIG_NX_KBD
+ , nxeg_kbdin1 /* my kbdin */
+#endif
+};
+
+static const struct nx_callback_s g_nxcb2 =
{
- my_redraw, /* redraw */
- my_position /* position */
+ nxeg_redraw2, /* redraw */
+ nxeg_position2 /* position */
#ifdef CONFIG_NX_MOUSE
- , my_mousein /* mousein */
+ , nxeg_mousein2 /* mousein */
#endif
#ifdef CONFIG_NX_KBD
- , my_kbdin /* my kbdin */
+ , nxeg_kbdin2 /* my kbdin */
#endif
};
+static nxgl_coord_t g_xres;
+static nxgl_coord_t g_yres;
+
+static nxgl_mxpixel_t g_color1[CONFIG_NX_NPLANES];
+static nxgl_mxpixel_t g_color2[CONFIG_NX_NPLANES];
+
/****************************************************************************
* Private Functions
****************************************************************************/
/****************************************************************************
- * Name: my_redraw
+ * Name: nxeg_redraw1
****************************************************************************/
-static void my_redraw(NXWINDOW hwnd, FAR const struct nxgl_rect_s *rect,
- boolean more)
+static void nxeg_redraw1(NXWINDOW hwnd, FAR const struct nxgl_rect_s *rect,
+ boolean more)
{
- message("my_redraw: hwnd=%p rect={(%d,%d),(%d,%d)} more=%s\n",
+ message("nxeg_redraw1: hwnd=%p rect={(%d,%d),(%d,%d)} more=%s\n",
hwnd,
rect->pt1.x, rect->pt1.y, rect->pt2.x, rect->pt2.y,
more ? "TRUE" : "FALSE");
+ nx_fill(hwnd, rect, g_color1);
}
/****************************************************************************
- * Name: my_position
+ * Name: nxeg_redraw2
****************************************************************************/
-static void my_position(NXWINDOW hwnd, FAR const struct nxgl_rect_s *size,
- FAR const struct nxgl_point_s *pos)
+static void nxeg_redraw2(NXWINDOW hwnd, FAR const struct nxgl_rect_s *rect,
+ boolean more)
{
- message("my_position: hwnd=%p size={(%d,%d),(%d,%d)} pos=(%d,%d)\n",
+ message("nxeg_redraw2: hwnd=%p rect={(%d,%d),(%d,%d)} more=%s\n",
+ hwnd,
+ rect->pt1.x, rect->pt1.y, rect->pt2.x, rect->pt2.y,
+ more ? "TRUE" : "FALSE");
+ nx_fill(hwnd, rect, g_color2);
+}
+
+/****************************************************************************
+ * Name: nxeg_position1
+ ****************************************************************************/
+
+static void nxeg_position1(NXWINDOW hwnd, FAR const struct nxgl_rect_s *size,
+ FAR const struct nxgl_point_s *pos,
+ FAR const struct nxgl_rect_s *bounds)
+{
+ /* Report the position */
+
+ message("nxeg_position1: hwnd=%p size={(%d,%d),(%d,%d)} pos=(%d,%d) bounds={(%d,%d),(%d,%d)}\n",
hwnd,
size->pt1.x, size->pt1.y, size->pt2.x, size->pt2.y,
- pos->x, pos->y);
+ pos->x, pos->y,
+ bounds->pt1.x, bounds->pt1.y, bounds->pt2.x, bounds->pt2.y);
+
+ /* Save the window limits */
+
+ g_xres = bounds->pt2.x;
+ g_yres = bounds->pt2.y;
}
/****************************************************************************
- * Name: my_mousein
+ * Name: nxeg_position2
+ ****************************************************************************/
+
+static void nxeg_position2(NXWINDOW hwnd, FAR const struct nxgl_rect_s *size,
+ FAR const struct nxgl_point_s *pos,
+ FAR const struct nxgl_rect_s *bounds)
+{
+ /* Report the position */
+
+ message("nxeg_position2: hwnd=%p size={(%d,%d),(%d,%d)} pos=(%d,%d) bounds={(%d,%d),(%d,%d)}\n",
+ hwnd,
+ size->pt1.x, size->pt1.y, size->pt2.x, size->pt2.y,
+ pos->x, pos->y,
+ bounds->pt1.x, bounds->pt1.y, bounds->pt2.x, bounds->pt2.y);
+
+ /* Save the window limits */
+
+ g_xres = bounds->pt2.x;
+ g_yres = bounds->pt2.y;
+}
+
+/****************************************************************************
+ * Name: nxeg_mousein1
+ ****************************************************************************/
+
+#ifdef CONFIG_NX_MOUSE
+static void nxeg_mousein1(NXWINDOW hwnd, FAR const struct nxgl_point_s *pos,
+ ubyte buttons)
+{
+ message("nxeg_mousein1: hwnd=%p pos=(%d,%d) button=%02x\n",
+ hwnd, pos->x, pos->y, buttons);
+}
+#endif
+
+/****************************************************************************
+ * Name: nxeg_mousein2
****************************************************************************/
#ifdef CONFIG_NX_MOUSE
-static void my_mousein(NXWINDOW hwnd, FAR const struct nxgl_point_s *pos,
- ubyte buttons)
+static void nxeg_mousein2(NXWINDOW hwnd, FAR const struct nxgl_point_s *pos,
+ ubyte buttons)
{
- message("my_mousein: hwnd=%p pos=(%d,%d) button=%02x\n",
+ message("nxeg_mousein2: hwnd=%p pos=(%d,%d) button=%02x\n",
hwnd, pos->x, pos->y, buttons);
}
#endif
/****************************************************************************
- * Name:
+ * Name: nxeg_kbdinfo
****************************************************************************/
#ifdef CONFIG_NX_KBD
-static void my_kbdin(NXWINDOW hwnd, ubyte nch, const ubyte *ch)
+static void nxeg_kbdinfo(ubyte nch, const ubyte *ch)
{
int i;
- message("my_kbdin: hwnd=%p nch=%d\n", hwnd, nch);
for (i = 0; i < nch; i++)
{
if (isprint(ch[i]))
@@ -158,6 +257,30 @@ static void my_kbdin(NXWINDOW hwnd, ubyte nch, const ubyte *ch)
#endif
/****************************************************************************
+ * Name: nxeg_kbdin1
+ ****************************************************************************/
+
+#ifdef CONFIG_NX_KBD
+static void nxeg_kbdin1(NXWINDOW hwnd, ubyte nch, const ubyte *ch)
+{
+ message("nxeg_kbdin1: hwnd=%p nch=%d\n", hwnd, nch);
+ nxeg_kbdinfo(nch, ch);
+}
+#endif
+
+/****************************************************************************
+ * Name: nxeg_kbdin2
+ ****************************************************************************/
+
+#ifdef CONFIG_NX_KBD
+static void nxeg_kbdin2(NXWINDOW hwnd, ubyte nch, const ubyte *ch)
+{
+ message("nxeg_kbdin2: hwnd=%p nch=%d\n", hwnd, nch);
+ nxeg_kbdinfo(nch, ch);
+}
+#endif
+
+/****************************************************************************
* Public Functions
****************************************************************************/
@@ -176,25 +299,37 @@ void user_initialize(void)
int user_start(int argc, char *argv[])
{
NXHANDLE hnx;
- NXWINDOW hwnd;
+ NXWINDOW hwnd1;
+ NXWINDOW hwnd2;
#ifndef CONFIG_NX_MULTIUSER
FAR struct fb_vtable_s *fb;
#else
pid_t servrid;
#endif
+ struct nxgl_rect_s rect;
+ struct nxgl_point_s pt;
nxgl_mxpixel_t color;
- int exitcode = 0;
+ int exitcode = NXEXIT_SUCCESS;
int ret;
+ int i;
+
+ /* Initialize window colors */
+
+ for (i = 0; i < CONFIG_NX_NPLANES; i++)
+ {
+ g_color1[i] = CONFIG_EXAMPLES_NX_COLOR1;
+ g_color1[2] = CONFIG_EXAMPLES_NX_COLOR2;
+ }
#ifdef CONFIG_NX_MULTIUSER
/* Start the server task */
message("user_start: Starting nx_servertask task\n");
- servrid = task_create("NX Server", 50, CONFIG_EXAMPLES_NX_STACKSIZE, nx_servertask, argv);
+ servrid = task_create("NX Server", 50, CONFIG_EXAMPLES_NX_STACKSIZE, nx_servertask, NULL);
if (servrid < 0)
{
message("user_start: Failed to create nx_servertask task: %d\n", errno);
- exitcode = 1;
+ exitcode = NXEXIT_TASKCREATE;
goto errout;
}
@@ -204,7 +339,7 @@ int user_start(int argc, char *argv[])
/* Connect to the server */
- hnx = nx_connect(&g_nxcb);
+ hnx = nx_connect();
#else
/* Initialize the frame buffer device */
@@ -213,7 +348,7 @@ int user_start(int argc, char *argv[])
if (ret < 0)
{
message("user_start: up_fbinitialize failed: %d\n", -ret);
- exitcode = 2;
+ exitcode = NXEXIT_FBINITIALIZE;
goto errout;
}
@@ -221,21 +356,21 @@ int user_start(int argc, char *argv[])
if (!fb)
{
message("user_start: up_fbgetvplane failed, vplane=%d\n", CONFIG_EXAMPLES_NX_VPLANE);
- exitcode = 3;
+ exitcode = NXEXIT_FBGETVPLANE;
goto errout;
}
/* Then open NX */
message("user_start: Open NX\n");
- hnx = nx_open(fb, &g_nxcb);
+ hnx = nx_open(fb);
#endif
message("user_start: NX handle=%p\n", hnx);
if (!hnx)
{
message("user_start: Failed to get NX handle: %d\n", errno);
- exitcode = 4;
+ exitcode = NXEXIT_NXOPEN;
goto errout;
}
@@ -247,32 +382,120 @@ int user_start(int argc, char *argv[])
if (ret < 0)
{
message("user_start: nx_setbgcolor failed: %d\n", errno);
- exitcode = 5;
+ exitcode = NXEXIT_NXSETBGCOLOR;
goto errout_with_nx;
}
- /* Create a window */
+ /* Create window #1 */
- message("user_start: Create a window\n");
- hwnd = nx_openwindow(hnx);
- message("user_start: NX window=%p\n", hwnd);
+ message("user_start: Create window #1\n");
+ hwnd1 = nx_openwindow(hnx, &g_nxcb1);
+ message("user_start: hwnd1=%p\n", hwnd1);
- if (!hwnd)
+ if (!hwnd1)
{
message("user_start: nx_openwindow failed: %d\n", errno);
- exitcode = 6;
+ exitcode = NXEXIT_NXOPENWINDOW;
goto errout_with_nx;
}
+ message("user_start: Screen resolution (%d,%d)\n", g_xres, g_yres);
+
+ /* Set the size of the window 2 */
- /* Close the window */
+ rect.pt1.x = 0;
+ rect.pt1.y = 0;
+ rect.pt2.x = g_xres/2;
+ rect.pt2.y = g_yres/2;
-//errout_with_window:
+ message("user_start: Set hwnd1 size to (%d,%d)\n", rect.pt2.x, rect.pt2.y);
+ ret = nx_setsize(hwnd1, &rect);
+ if (ret < 0)
+ {
+ message("user_start: nx_setsize failed: %d\n", errno);
+ exitcode = NXEXIT_NXSETSIZE;
+ goto errout_with_hwnd1;
+ }
+
+ pt.x = g_xres / 4;
+ pt.y = g_yres / 4;
+
+ message("user_start: Set hwnd1 postion to (%d,%d)\n", pt.x, pt.y);
+ ret = nx_setposition(hwnd1, &pt);
+ if (ret < 0)
+ {
+ message("user_start: nx_setposition failed: %d\n", errno);
+ exitcode = NXEXIT_NXSETPOSITION;
+ goto errout_with_hwnd1;
+ }
+
+ /* Create window #2 */
+
+ message("user_start: Create window #1\n");
+ hwnd2 = nx_openwindow(hnx, &g_nxcb2);
+ message("user_start: hwnd2=%p\n", hwnd2);
+
+ if (!hwnd2)
+ {
+ message("user_start: nx_openwindow failed: %d\n", errno);
+ exitcode = NXEXIT_NXOPENWINDOW;
+ goto errout_with_hwnd1;
+ }
+
+ /* Set the size of the window 2 == size of window 1*/
+
+ message("user_start: Set hwnd2 size to (%d,%d)\n", rect.pt2.x, rect.pt2.y);
+ ret = nx_setsize(hwnd2, &rect);
+ if (ret < 0)
+ {
+ message("user_start: nx_setsize failed: %d\n", errno);
+ exitcode = NXEXIT_NXSETSIZE;
+ goto errout_with_hwnd2;
+ }
+
+ pt.x = g_xres - rect.pt2.x - pt.x;
+ pt.y = g_yres - rect.pt2.y - pt.y;
+
+ message("user_start: Set hwnd2 postion to (%d,%d)\n", pt.x, pt.y);
+ ret = nx_setposition(hwnd2, &pt);
+ if (ret < 0)
+ {
+ message("user_start: nx_setposition failed: %d\n", errno);
+ exitcode = NXEXIT_NXSETPOSITION;
+ goto errout_with_hwnd2;
+ }
+
+ /* Lower window 2 */
+
+ message("user_start: Lower window #2\n");
+ ret = nx_lower(hwnd2);
+ if (ret < 0)
+ {
+ message("user_start: nx_lower failed: %d\n", errno);
+ exitcode = NXEXIT_NXSETPOSITION;
+ goto errout_with_hwnd2;
+ }
+
+ /* Close the window 2 */
+
+errout_with_hwnd2:
message("user_start: Close window\n");
- ret = nx_closewindow(hwnd);
- if (!hwnd)
+ ret = nx_closewindow(hwnd2);
+ if (ret < 0)
+ {
+ message("user_start: nx_openwindow failed: %d\n", errno);
+ exitcode = NXEXIT_NXCLOSEWINDOW;
+ goto errout_with_nx;
+ }
+
+ /* Close the window1 */
+
+errout_with_hwnd1:
+ message("user_start: Close window\n");
+ ret = nx_closewindow(hwnd1);
+ if (ret < 0)
{
message("user_start: nx_openwindow failed: %d\n", errno);
- exitcode = 7;
+ exitcode = NXEXIT_NXCLOSEWINDOW;
goto errout_with_nx;
}