From b740cab3a230d9eb0c5d128bec390959f6dd639d Mon Sep 17 00:00:00 2001 From: Johannes Hofmann Date: Thu, 26 Mar 2009 11:40:50 +0100 Subject: style --- src/Hill.H | 17 ---------------- src/Hill.cxx | 64 +++++++++++++++++++++++------------------------------------- 2 files changed, 24 insertions(+), 57 deletions(-) (limited to 'src') diff --git a/src/Hill.H b/src/Hill.H index 7a18aa3..da680f8 100644 --- a/src/Hill.H +++ b/src/Hill.H @@ -33,11 +33,8 @@ class Hill { int flags; Hill(const char *n, double p, double l, double h); - Hill(const Hill& h); - Hill(double x_tmp, double y_tmp); - ~Hill(); }; @@ -49,35 +46,21 @@ class Hills { public: Hills(); - Hills(const Hills *h); - ~Hills(); int load(const char *file); - void mark_duplicates(double dist); - void add(Hill *m); - void remove(const Hill *m); - void add(Hills *h); - void sort_phi(); - void sort_name(); - void sort(); - void clear(); - void clobber(); - int contains(const Hill *m) const; - int get_num() const; - Hill *get(int n) const; }; #endif diff --git a/src/Hill.cxx b/src/Hill.cxx index e6207d3..c2971cf 100644 --- a/src/Hill.cxx +++ b/src/Hill.cxx @@ -49,9 +49,8 @@ Hill::Hill(double x_tmp, double y_tmp) { } Hill::~Hill() { - if (name) { + if (name) free(name); - } } Hills::Hills() { @@ -95,9 +94,8 @@ Hills::load(const char *file) { n = 0; for (ap = vals; (*ap = strsep(&bp, ",")) != NULL;) { n++; - if (++ap >= &vals[10]) { + if (++ap >= &vals[10]) break; - } } // standard format including name and description @@ -135,9 +133,8 @@ void Hills::mark_duplicates(double dist) { for(i=0; iflags & Hill::TRACK_POINT) { + if (m->flags & Hill::TRACK_POINT) continue; - } if (m) { j = i + 1; @@ -157,15 +154,14 @@ void Hills::mark_duplicates(double dist) { } Hills::~Hills() { - if (m) { + if (m) free(m); - } } void Hills::add(Hill *m1) { if (num >= cap) { - cap = cap?cap * 2:100; + cap = cap ? cap * 2 : 100; m = (Hill **) realloc(m, cap * sizeof(Hill *)); } @@ -174,9 +170,8 @@ Hills::add(Hill *m1) { void Hills::add(Hills *h) { - for(int i=0; iget_num(); i++) { + for (int i=0; iget_num(); i++) add(h->get(i)); - } } static int @@ -185,13 +180,12 @@ comp_mountains(const void *n1, const void *n2) { Hill *m2 = *(Hill **)n2; if (m1 && m2) { - if (m1->alph < m2->alph) { + if (m1->alph < m2->alph) return 1; - } else if (m1->alph > m2->alph) { + else if (m1->alph > m2->alph) return -1; - } else { + else return 0; - } } else { return 0; } @@ -203,13 +197,12 @@ comp_mountains_phi(const void *n1, const void *n2) { Hill *m2 = *(Hill **)n2; if (m1 && m2) { - if (m1->phi < m2->phi) { + if (m1->phi < m2->phi) return 1; - } else if (m1->phi > m2->phi) { + else if (m1->phi > m2->phi) return -1; - } else { + else return 0; - } } else { return 0; } @@ -220,36 +213,32 @@ comp_mountains_name(const void *n1, const void *n2) { Hill *m1 = *(Hill **)n1; Hill *m2 = *(Hill **)n2; - if (m1 && m2) { + if (m1 && m2) return strcasecmp(m1->name, m2->name); - } else { + else return 0; - } } void Hills::sort() { - if (!m) { + if (!m) return; - } qsort(m, num, sizeof(Hill *), comp_mountains); } void Hills::sort_phi() { - if (!m) { + if (!m) return; - } qsort(m, num, sizeof(Hill *), comp_mountains_phi); } void Hills::sort_name() { - if (!m) { + if (!m) return; - } qsort(m, num, sizeof(Hill *), comp_mountains_name); } @@ -266,18 +255,16 @@ Hills::clear() { int Hills::contains(const Hill *m) const { - for(int i=0; i= num) { + if (n < 0 || n >= num) return NULL; - } else { + else return m[n]; - } } -- cgit v1.2.3