aboutsummaryrefslogtreecommitdiffstats
path: root/plugin_test.c
diff options
context:
space:
mode:
authorreinelt <reinelt@3ae390bd-cb1e-0410-b409-cd5a39f66f1f>2005-05-08 04:32:45 +0000
committerreinelt <reinelt@3ae390bd-cb1e-0410-b409-cd5a39f66f1f>2005-05-08 04:32:45 +0000
commitdbf5d92605a9db10e3e3cb154d03a515c5d5c5af (patch)
tree501d5dda3ce90fe924b893e487d9ef9f0683382b /plugin_test.c
parenta1c471e9fb7cadb68bb182ab2e9715a0aa092386 (diff)
downloadlcd4linux-dbf5d92605a9db10e3e3cb154d03a515c5d5c5af.tar.gz
[lcd4linux @ 2005-05-08 04:32:43 by reinelt]
CodingStyle added and applied git-svn-id: https://ssl.bulix.org/svn/lcd4linux/trunk@547 3ae390bd-cb1e-0410-b409-cd5a39f66f1f
Diffstat (limited to 'plugin_test.c')
-rw-r--r--plugin_test.c94
1 files changed, 48 insertions, 46 deletions
diff --git a/plugin_test.c b/plugin_test.c
index 15a098b..1c4fb14 100644
--- a/plugin_test.c
+++ b/plugin_test.c
@@ -1,4 +1,4 @@
-/* $Id: plugin_test.c,v 1.4 2005/01/18 06:30:23 reinelt Exp $
+/* $Id: plugin_test.c,v 1.5 2005/05/08 04:32:45 reinelt Exp $
*
* Handy functions for testing displays and debugging code.
*
@@ -26,6 +26,9 @@
*
*
* $Log: plugin_test.c,v $
+* Revision 1.5 2005/05/08 04:32:45 reinelt
+* CodingStyle added and applied
+*
* Revision 1.4 2005/01/18 06:30:23 reinelt
* added (C) to all copyright statements
*
@@ -45,7 +48,7 @@
*
*/
-int plugin_init_test (void);
+int plugin_init_test(void);
#include "config.h"
@@ -67,65 +70,64 @@ int plugin_init_test (void);
* amount rdelta every time they are read. Starting value is rstart.
* rbar gives the number of the test bar.
*/
-static void my_test_bar (RESULT *result, RESULT *rbar, RESULT *rmax,
- RESULT *rstart, RESULT *rdelta)
+static void my_test_bar(RESULT * result, RESULT * rbar, RESULT * rmax, RESULT * rstart, RESULT * rdelta)
{
- static double values[10]={-1,-1,-1,-1,-1,-1,-1,-1,-1,-1};
- static double deltas[10];
- int bar;
- double max,delta,value;
-
- max=R2N(rmax);
- delta=R2N(rdelta);
-
- /* the maths is just to stop double rounding errors and bad values. */
- bar=((int)floor(R2N(rbar)+0.1)) % 10;
- if ( fabs(delta) > 0.1 ) {
- /* don't move or init the bar if delta=0 (the widget is only browsing) */
- if (values[bar] == -1) {
- /* first time called. */
- values[bar]=R2N(rstart);
- deltas[bar]=delta;
+ static double values[10] = { -1, -1, -1, -1, -1, -1, -1, -1, -1, -1 };
+ static double deltas[10];
+ int bar;
+ double max, delta, value;
+
+ max = R2N(rmax);
+ delta = R2N(rdelta);
+
+ /* the maths is just to stop double rounding errors and bad values. */
+ bar = ((int) floor(R2N(rbar) + 0.1)) % 10;
+ if (fabs(delta) > 0.1) {
+ /* don't move or init the bar if delta=0 (the widget is only browsing) */
+ if (values[bar] == -1) {
+ /* first time called. */
+ values[bar] = R2N(rstart);
+ deltas[bar] = delta;
+ };
+ values[bar] += deltas[bar];
+ };
+ if (values[bar] < 0 || values[bar] > max) {
+ /* turn around. */
+ deltas[bar] = -deltas[bar];
+ values[bar] += deltas[bar];
};
- values[bar]+=deltas[bar];
- };
- if (values[bar] < 0 || values[bar] > max ) {
- /* turn around. */
- deltas[bar]= -deltas[bar];
- values[bar]+= deltas[bar];
- };
- value=values[bar];
- SetResult(&result, R_NUMBER, &value);
+ value = values[bar];
+ SetResult(&result, R_NUMBER, &value);
}
/* like above, but just switches a value between 1 and -1. Can use to test
* visibility of icons.
*/
-static void my_test_onoff (RESULT *result, RESULT *arg1)
+static void my_test_onoff(RESULT * result, RESULT * arg1)
{
- static int on[10] = {1,1,1,1,1,1,1,1,1,1};
- int i;
- double val;
-
- i = ((int)floor(R2N(arg1)+0.1)) % 10;
- on[i] = -on[i];
- val = (double)on[i];
-
- SetResult(&result, R_NUMBER, &val);
+ static int on[10] = { 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 };
+ int i;
+ double val;
+
+ i = ((int) floor(R2N(arg1) + 0.1)) % 10;
+ on[i] = -on[i];
+ val = (double) on[i];
+
+ SetResult(&result, R_NUMBER, &val);
}
-int plugin_init_test (void)
+int plugin_init_test(void)
{
-
- AddFunction ("test::bar", 4, my_test_bar);
- AddFunction ("test::onoff", 1, my_test_onoff);
-
- return 0;
+
+ AddFunction("test::bar", 4, my_test_bar);
+ AddFunction("test::onoff", 1, my_test_onoff);
+
+ return 0;
}
void plugin_exit_test(void)
{
- /* empty */
+ /* empty */
}