2015-06-21 09:33:46 -06:00
|
|
|
/*
|
2023-01-09 10:41:41 -07:00
|
|
|
Copyright (C) 1997-2023 Sam Lantinga <slouken@libsdl.org>
|
2015-06-21 09:33:46 -06:00
|
|
|
|
|
|
|
This software is provided 'as-is', without any express or implied
|
|
|
|
warranty. In no event will the authors be held liable for any damages
|
|
|
|
arising from the use of this software.
|
|
|
|
|
|
|
|
Permission is granted to anyone to use this software for any purpose,
|
|
|
|
including commercial applications, and to alter it and redistribute it
|
|
|
|
freely.
|
|
|
|
*/
|
|
|
|
|
|
|
|
/* Simple program: draw as many random objects on the screen as possible */
|
|
|
|
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <time.h>
|
|
|
|
|
|
|
|
#ifdef __EMSCRIPTEN__
|
|
|
|
#include <emscripten/emscripten.h>
|
|
|
|
#endif
|
|
|
|
|
2022-11-26 21:43:38 -07:00
|
|
|
#include <SDL3/SDL_test_common.h>
|
2022-12-14 21:58:20 -07:00
|
|
|
#include <SDL3/SDL_main.h>
|
2015-06-21 09:33:46 -06:00
|
|
|
|
2022-11-30 13:51:59 -07:00
|
|
|
#define SWAP(typ, a, b) \
|
|
|
|
do { \
|
|
|
|
typ t = a; \
|
|
|
|
a = b; \
|
|
|
|
b = t; \
|
|
|
|
} while (0)
|
2015-06-21 09:33:46 -06:00
|
|
|
#define NUM_OBJECTS 100
|
|
|
|
|
|
|
|
static SDLTest_CommonState *state;
|
|
|
|
static int num_objects;
|
|
|
|
static SDL_bool cycle_color;
|
|
|
|
static SDL_bool cycle_alpha;
|
|
|
|
static int cycle_direction = 1;
|
|
|
|
static int current_alpha = 255;
|
|
|
|
static int current_color = 255;
|
|
|
|
static SDL_BlendMode blendMode = SDL_BLENDMODE_NONE;
|
|
|
|
|
2023-03-08 03:40:07 -07:00
|
|
|
static float mouse_begin_x = -1.0f, mouse_begin_y = -1.0f;
|
2015-06-21 09:33:46 -06:00
|
|
|
|
2023-03-08 03:40:07 -07:00
|
|
|
static void DrawPoints(SDL_Renderer *renderer)
|
2015-06-21 09:33:46 -06:00
|
|
|
{
|
|
|
|
int i;
|
2022-12-31 12:19:32 -07:00
|
|
|
float x, y;
|
2015-06-21 09:33:46 -06:00
|
|
|
SDL_Rect viewport;
|
|
|
|
|
|
|
|
/* Query the sizes */
|
2022-12-27 07:21:13 -07:00
|
|
|
SDL_GetRenderViewport(renderer, &viewport);
|
2015-06-21 09:33:46 -06:00
|
|
|
|
|
|
|
for (i = 0; i < num_objects * 4; ++i) {
|
|
|
|
/* Cycle the color and alpha, if desired */
|
|
|
|
if (cycle_color) {
|
|
|
|
current_color += cycle_direction;
|
|
|
|
if (current_color < 0) {
|
|
|
|
current_color = 0;
|
|
|
|
cycle_direction = -cycle_direction;
|
|
|
|
}
|
|
|
|
if (current_color > 255) {
|
|
|
|
current_color = 255;
|
|
|
|
cycle_direction = -cycle_direction;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (cycle_alpha) {
|
|
|
|
current_alpha += cycle_direction;
|
|
|
|
if (current_alpha < 0) {
|
|
|
|
current_alpha = 0;
|
|
|
|
cycle_direction = -cycle_direction;
|
|
|
|
}
|
|
|
|
if (current_alpha > 255) {
|
|
|
|
current_alpha = 255;
|
|
|
|
cycle_direction = -cycle_direction;
|
|
|
|
}
|
|
|
|
}
|
2022-11-30 13:51:59 -07:00
|
|
|
SDL_SetRenderDrawColor(renderer, 255, (Uint8)current_color,
|
|
|
|
(Uint8)current_color, (Uint8)current_alpha);
|
2015-06-21 09:33:46 -06:00
|
|
|
|
2022-12-31 12:19:32 -07:00
|
|
|
x = (float)(rand() % viewport.w);
|
|
|
|
y = (float)(rand() % viewport.h);
|
2022-12-27 07:21:13 -07:00
|
|
|
SDL_RenderPoint(renderer, x, y);
|
2015-06-21 09:33:46 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#define MAX_LINES 16
|
2023-03-08 03:40:07 -07:00
|
|
|
static int num_lines = 0;
|
|
|
|
static SDL_FRect lines[MAX_LINES];
|
|
|
|
static int add_line(float x1, float y1, float x2, float y2)
|
2015-06-21 09:33:46 -06:00
|
|
|
{
|
2022-11-27 09:38:43 -07:00
|
|
|
if (num_lines >= MAX_LINES) {
|
2015-06-21 09:33:46 -06:00
|
|
|
return 0;
|
2022-11-27 09:38:43 -07:00
|
|
|
}
|
|
|
|
if ((x1 == x2) && (y1 == y2)) {
|
2015-06-21 09:33:46 -06:00
|
|
|
return 0;
|
2022-11-27 09:38:43 -07:00
|
|
|
}
|
2015-06-21 09:33:46 -06:00
|
|
|
|
2022-12-29 20:31:12 -07:00
|
|
|
SDL_Log("adding line (%g, %g), (%g, %g)\n", x1, y1, x2, y2);
|
2015-06-21 09:33:46 -06:00
|
|
|
lines[num_lines].x = x1;
|
|
|
|
lines[num_lines].y = y1;
|
|
|
|
lines[num_lines].w = x2;
|
|
|
|
lines[num_lines].h = y2;
|
|
|
|
|
|
|
|
return ++num_lines;
|
|
|
|
}
|
|
|
|
|
2023-03-08 03:40:07 -07:00
|
|
|
static void DrawLines(SDL_Renderer *renderer)
|
2015-06-21 09:33:46 -06:00
|
|
|
{
|
|
|
|
int i;
|
|
|
|
SDL_Rect viewport;
|
|
|
|
|
|
|
|
/* Query the sizes */
|
2022-12-27 07:21:13 -07:00
|
|
|
SDL_GetRenderViewport(renderer, &viewport);
|
2015-06-21 09:33:46 -06:00
|
|
|
|
|
|
|
SDL_SetRenderDrawColor(renderer, 255, 255, 255, 255);
|
|
|
|
|
|
|
|
for (i = 0; i < num_lines; ++i) {
|
|
|
|
if (i == -1) {
|
2022-12-31 12:19:32 -07:00
|
|
|
SDL_RenderLine(renderer, 0.0f, 0.0f, (float)(viewport.w - 1), (float)(viewport.h - 1));
|
|
|
|
SDL_RenderLine(renderer, 0.0f, (float)(viewport.h - 1), (float)(viewport.w - 1), 0.0f);
|
|
|
|
SDL_RenderLine(renderer, 0.0f, (float)(viewport.h / 2), (float)(viewport.w - 1), (float)(viewport.h / 2));
|
|
|
|
SDL_RenderLine(renderer, (float)(viewport.w / 2), 0.0f, (float)(viewport.w / 2), (float)(viewport.h - 1));
|
2015-06-21 09:33:46 -06:00
|
|
|
} else {
|
2022-12-31 12:19:32 -07:00
|
|
|
SDL_RenderLine(renderer, lines[i].x, lines[i].y, lines[i].w, lines[i].h);
|
2015-06-21 09:33:46 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#define MAX_RECTS 16
|
2023-03-08 03:40:07 -07:00
|
|
|
static int num_rects = 0;
|
|
|
|
static SDL_FRect rects[MAX_RECTS];
|
|
|
|
static int add_rect(float x1, float y1, float x2, float y2)
|
2015-06-21 09:33:46 -06:00
|
|
|
{
|
2022-11-27 09:38:43 -07:00
|
|
|
if (num_rects >= MAX_RECTS) {
|
2015-06-21 09:33:46 -06:00
|
|
|
return 0;
|
2022-11-27 09:38:43 -07:00
|
|
|
}
|
|
|
|
if ((x1 == x2) || (y1 == y2)) {
|
2015-06-21 09:33:46 -06:00
|
|
|
return 0;
|
2022-11-27 09:38:43 -07:00
|
|
|
}
|
2015-06-21 09:33:46 -06:00
|
|
|
|
2022-11-27 09:38:43 -07:00
|
|
|
if (x1 > x2) {
|
2022-12-29 20:31:12 -07:00
|
|
|
SWAP(float, x1, x2);
|
2022-11-27 09:38:43 -07:00
|
|
|
}
|
|
|
|
if (y1 > y2) {
|
2022-12-29 20:31:12 -07:00
|
|
|
SWAP(float, y1, y2);
|
2022-11-27 09:38:43 -07:00
|
|
|
}
|
2015-06-21 09:33:46 -06:00
|
|
|
|
2022-12-29 20:31:12 -07:00
|
|
|
SDL_Log("adding rect (%g, %g), (%g, %g) [%gx%g]\n", x1, y1, x2, y2,
|
2022-11-30 13:51:59 -07:00
|
|
|
x2 - x1, y2 - y1);
|
2015-06-21 09:33:46 -06:00
|
|
|
|
|
|
|
rects[num_rects].x = x1;
|
|
|
|
rects[num_rects].y = y1;
|
|
|
|
rects[num_rects].w = x2 - x1;
|
|
|
|
rects[num_rects].h = y2 - y1;
|
|
|
|
|
|
|
|
return ++num_rects;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2022-11-30 13:51:59 -07:00
|
|
|
DrawRects(SDL_Renderer *renderer)
|
2015-06-21 09:33:46 -06:00
|
|
|
{
|
|
|
|
SDL_SetRenderDrawColor(renderer, 255, 127, 0, 255);
|
2022-12-31 12:19:32 -07:00
|
|
|
SDL_RenderFillRects(renderer, rects, num_rects);
|
2015-06-21 09:33:46 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2022-11-30 13:51:59 -07:00
|
|
|
DrawRectLineIntersections(SDL_Renderer *renderer)
|
2015-06-21 09:33:46 -06:00
|
|
|
{
|
|
|
|
int i, j;
|
|
|
|
|
|
|
|
SDL_SetRenderDrawColor(renderer, 0, 255, 55, 255);
|
|
|
|
|
2022-12-01 14:07:03 -07:00
|
|
|
for (i = 0; i < num_rects; i++) {
|
2015-06-21 09:33:46 -06:00
|
|
|
for (j = 0; j < num_lines; j++) {
|
2022-12-29 20:31:12 -07:00
|
|
|
float x1, y1, x2, y2;
|
|
|
|
SDL_FRect r;
|
2015-06-21 09:33:46 -06:00
|
|
|
|
|
|
|
r = rects[i];
|
|
|
|
x1 = lines[j].x;
|
|
|
|
y1 = lines[j].y;
|
|
|
|
x2 = lines[j].w;
|
|
|
|
y2 = lines[j].h;
|
|
|
|
|
2022-12-29 20:31:12 -07:00
|
|
|
if (SDL_GetRectAndLineIntersectionFloat(&r, &x1, &y1, &x2, &y2)) {
|
2022-12-31 12:19:32 -07:00
|
|
|
SDL_RenderLine(renderer, x1, y1, x2, y2);
|
2015-06-21 09:33:46 -06:00
|
|
|
}
|
|
|
|
}
|
2022-12-01 14:07:03 -07:00
|
|
|
}
|
2015-06-21 09:33:46 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2022-11-30 13:51:59 -07:00
|
|
|
DrawRectRectIntersections(SDL_Renderer *renderer)
|
2015-06-21 09:33:46 -06:00
|
|
|
{
|
|
|
|
int i, j;
|
|
|
|
|
|
|
|
SDL_SetRenderDrawColor(renderer, 255, 200, 0, 255);
|
|
|
|
|
2022-12-01 14:07:03 -07:00
|
|
|
for (i = 0; i < num_rects; i++) {
|
2015-06-21 09:33:46 -06:00
|
|
|
for (j = i + 1; j < num_rects; j++) {
|
2022-12-29 20:31:12 -07:00
|
|
|
SDL_FRect r;
|
|
|
|
if (SDL_GetRectIntersectionFloat(&rects[i], &rects[j], &r)) {
|
2022-12-31 12:19:32 -07:00
|
|
|
SDL_RenderFillRect(renderer, &r);
|
2015-06-21 09:33:46 -06:00
|
|
|
}
|
|
|
|
}
|
2022-12-01 14:07:03 -07:00
|
|
|
}
|
2015-06-21 09:33:46 -06:00
|
|
|
}
|
|
|
|
|
2023-03-16 08:38:26 -06:00
|
|
|
static void loop(void *arg)
|
2015-06-21 09:33:46 -06:00
|
|
|
{
|
|
|
|
int i;
|
|
|
|
SDL_Event event;
|
2023-03-16 08:38:26 -06:00
|
|
|
int *done = (int*)arg;
|
2015-06-21 09:33:46 -06:00
|
|
|
|
|
|
|
/* Check for events */
|
|
|
|
while (SDL_PollEvent(&event)) {
|
2023-03-16 08:38:26 -06:00
|
|
|
SDLTest_CommonEvent(state, &event, done);
|
2015-06-21 09:33:46 -06:00
|
|
|
switch (event.type) {
|
2023-01-29 20:06:08 -07:00
|
|
|
case SDL_EVENT_MOUSE_BUTTON_DOWN:
|
2015-06-21 09:33:46 -06:00
|
|
|
mouse_begin_x = event.button.x;
|
|
|
|
mouse_begin_y = event.button.y;
|
|
|
|
break;
|
2023-01-29 20:06:08 -07:00
|
|
|
case SDL_EVENT_MOUSE_BUTTON_UP:
|
2022-11-27 09:38:43 -07:00
|
|
|
if (event.button.button == 3) {
|
|
|
|
add_line(mouse_begin_x, mouse_begin_y, event.button.x, event.button.y);
|
|
|
|
}
|
|
|
|
if (event.button.button == 1) {
|
|
|
|
add_rect(mouse_begin_x, mouse_begin_y, event.button.x, event.button.y);
|
|
|
|
}
|
2015-06-21 09:33:46 -06:00
|
|
|
break;
|
2023-01-23 18:54:09 -07:00
|
|
|
case SDL_EVENT_KEY_DOWN:
|
2015-06-21 09:33:46 -06:00
|
|
|
switch (event.key.keysym.sym) {
|
|
|
|
case 'l':
|
2022-12-23 18:52:46 -07:00
|
|
|
if (event.key.keysym.mod & SDL_KMOD_SHIFT) {
|
2015-06-21 09:33:46 -06:00
|
|
|
num_lines = 0;
|
2022-12-01 14:07:03 -07:00
|
|
|
} else {
|
2022-12-29 20:31:12 -07:00
|
|
|
add_line(
|
|
|
|
(float)(rand() % 640),
|
|
|
|
(float)(rand() % 480),
|
|
|
|
(float)(rand() % 640),
|
|
|
|
(float)(rand() % 480));
|
2022-12-01 14:07:03 -07:00
|
|
|
}
|
2015-06-21 09:33:46 -06:00
|
|
|
break;
|
|
|
|
case 'r':
|
2022-12-23 18:52:46 -07:00
|
|
|
if (event.key.keysym.mod & SDL_KMOD_SHIFT) {
|
2015-06-21 09:33:46 -06:00
|
|
|
num_rects = 0;
|
2022-12-01 14:07:03 -07:00
|
|
|
} else {
|
2022-12-29 20:31:12 -07:00
|
|
|
add_rect(
|
|
|
|
(float)(rand() % 640),
|
|
|
|
(float)(rand() % 480),
|
|
|
|
(float)(rand() % 640),
|
|
|
|
(float)(rand() % 480));
|
2022-12-01 14:07:03 -07:00
|
|
|
}
|
2015-06-21 09:33:46 -06:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
for (i = 0; i < state->num_windows; ++i) {
|
|
|
|
SDL_Renderer *renderer = state->renderers[i];
|
2022-11-27 09:38:43 -07:00
|
|
|
if (state->windows[i] == NULL) {
|
2015-06-21 09:33:46 -06:00
|
|
|
continue;
|
2022-11-27 09:38:43 -07:00
|
|
|
}
|
2015-06-21 09:33:46 -06:00
|
|
|
SDL_SetRenderDrawColor(renderer, 0xA0, 0xA0, 0xA0, 0xFF);
|
|
|
|
SDL_RenderClear(renderer);
|
|
|
|
|
|
|
|
DrawRects(renderer);
|
|
|
|
DrawPoints(renderer);
|
|
|
|
DrawRectRectIntersections(renderer);
|
|
|
|
DrawLines(renderer);
|
|
|
|
DrawRectLineIntersections(renderer);
|
|
|
|
|
|
|
|
SDL_RenderPresent(renderer);
|
|
|
|
}
|
|
|
|
#ifdef __EMSCRIPTEN__
|
2023-03-16 08:38:26 -06:00
|
|
|
if (*done) {
|
2015-06-21 09:33:46 -06:00
|
|
|
emscripten_cancel_main_loop();
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2022-11-30 13:51:59 -07:00
|
|
|
int main(int argc, char *argv[])
|
2015-06-21 09:33:46 -06:00
|
|
|
{
|
|
|
|
int i;
|
2022-12-02 02:17:17 -07:00
|
|
|
Uint64 then, now;
|
|
|
|
Uint32 frames;
|
2023-03-16 08:38:26 -06:00
|
|
|
int done;
|
2015-06-21 09:33:46 -06:00
|
|
|
|
|
|
|
/* Initialize parameters */
|
2023-03-16 08:38:26 -06:00
|
|
|
num_objects = -1; /* -1 means not initialized */
|
2015-06-21 09:33:46 -06:00
|
|
|
|
|
|
|
/* Initialize test framework */
|
|
|
|
state = SDLTest_CommonCreateState(argv, SDL_INIT_VIDEO);
|
2022-11-27 09:38:43 -07:00
|
|
|
if (state == NULL) {
|
2015-06-21 09:33:46 -06:00
|
|
|
return 1;
|
|
|
|
}
|
2023-03-16 08:38:26 -06:00
|
|
|
|
|
|
|
/* Enable standard application logging */
|
|
|
|
SDL_LogSetPriority(SDL_LOG_CATEGORY_APPLICATION, SDL_LOG_PRIORITY_INFO);
|
|
|
|
|
2015-06-21 09:33:46 -06:00
|
|
|
for (i = 1; i < argc;) {
|
|
|
|
int consumed;
|
|
|
|
|
|
|
|
consumed = SDLTest_CommonArg(state, i);
|
|
|
|
if (consumed == 0) {
|
|
|
|
consumed = -1;
|
|
|
|
if (SDL_strcasecmp(argv[i], "--blend") == 0) {
|
|
|
|
if (argv[i + 1]) {
|
|
|
|
if (SDL_strcasecmp(argv[i + 1], "none") == 0) {
|
|
|
|
blendMode = SDL_BLENDMODE_NONE;
|
|
|
|
consumed = 2;
|
|
|
|
} else if (SDL_strcasecmp(argv[i + 1], "blend") == 0) {
|
|
|
|
blendMode = SDL_BLENDMODE_BLEND;
|
|
|
|
consumed = 2;
|
|
|
|
} else if (SDL_strcasecmp(argv[i + 1], "add") == 0) {
|
|
|
|
blendMode = SDL_BLENDMODE_ADD;
|
|
|
|
consumed = 2;
|
|
|
|
} else if (SDL_strcasecmp(argv[i + 1], "mod") == 0) {
|
|
|
|
blendMode = SDL_BLENDMODE_MOD;
|
|
|
|
consumed = 2;
|
2023-03-15 14:58:43 -06:00
|
|
|
} else if (SDL_strcasecmp(argv[i + 1], "mul") == 0) {
|
|
|
|
blendMode = SDL_BLENDMODE_MUL;
|
|
|
|
consumed = 2;
|
2015-06-21 09:33:46 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
} else if (SDL_strcasecmp(argv[i], "--cyclecolor") == 0) {
|
|
|
|
cycle_color = SDL_TRUE;
|
|
|
|
consumed = 1;
|
|
|
|
} else if (SDL_strcasecmp(argv[i], "--cyclealpha") == 0) {
|
|
|
|
cycle_alpha = SDL_TRUE;
|
|
|
|
consumed = 1;
|
2023-03-16 08:38:26 -06:00
|
|
|
} else if (num_objects < 0 && SDL_isdigit(*argv[i])) {
|
|
|
|
char *endptr = NULL;
|
|
|
|
num_objects = (int)SDL_strtol(argv[i], &endptr, 0);
|
|
|
|
if (endptr != argv[i] && *endptr == '\0' && num_objects >= 0) {
|
|
|
|
consumed = 1;
|
|
|
|
}
|
2015-06-21 09:33:46 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
if (consumed < 0) {
|
2023-03-16 08:38:26 -06:00
|
|
|
static const char *options[] = { "[--blend none|blend|add|mod|mul]", "[--cyclecolor]", "[--cyclealpha]", "[count]", NULL };
|
2019-05-28 15:39:13 -06:00
|
|
|
SDLTest_CommonLogUsage(state, argv[0], options);
|
2015-06-21 09:33:46 -06:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
i += consumed;
|
|
|
|
}
|
|
|
|
if (!SDLTest_CommonInit(state)) {
|
|
|
|
return 2;
|
|
|
|
}
|
|
|
|
|
2023-03-16 08:38:26 -06:00
|
|
|
if (num_objects < 0) {
|
|
|
|
num_objects = NUM_OBJECTS;
|
|
|
|
}
|
|
|
|
|
2015-06-21 09:33:46 -06:00
|
|
|
/* Create the windows and initialize the renderers */
|
|
|
|
for (i = 0; i < state->num_windows; ++i) {
|
|
|
|
SDL_Renderer *renderer = state->renderers[i];
|
|
|
|
SDL_SetRenderDrawBlendMode(renderer, blendMode);
|
|
|
|
SDL_SetRenderDrawColor(renderer, 0xA0, 0xA0, 0xA0, 0xFF);
|
|
|
|
SDL_RenderClear(renderer);
|
|
|
|
}
|
|
|
|
|
2022-10-05 17:10:22 -06:00
|
|
|
srand((unsigned int)time(NULL));
|
2015-06-21 09:33:46 -06:00
|
|
|
|
|
|
|
/* Main render loop */
|
|
|
|
frames = 0;
|
|
|
|
then = SDL_GetTicks();
|
|
|
|
done = 0;
|
|
|
|
|
|
|
|
#ifdef __EMSCRIPTEN__
|
2023-03-16 08:38:26 -06:00
|
|
|
emscripten_set_main_loop_arg(loop, &done, 0, 1);
|
2015-06-21 09:33:46 -06:00
|
|
|
#else
|
|
|
|
while (!done) {
|
|
|
|
++frames;
|
2023-03-16 08:38:26 -06:00
|
|
|
loop(&done);
|
2015-06-21 09:33:46 -06:00
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/* Print out some timing information */
|
|
|
|
now = SDL_GetTicks();
|
2023-03-16 08:38:26 -06:00
|
|
|
|
|
|
|
SDLTest_CommonQuit(state);
|
|
|
|
|
2015-06-21 09:33:46 -06:00
|
|
|
if (now > then) {
|
2022-11-30 13:51:59 -07:00
|
|
|
double fps = ((double)frames * 1000) / (now - then);
|
2015-06-21 09:33:46 -06:00
|
|
|
SDL_Log("%2.2f frames per second\n", fps);
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|