source: roaraudio/roard/loop.c @ 2495:61b6587c286a

Last change on this file since 2495:61b6587c286a was 2495:61b6587c286a, checked in by phi, 15 years ago

support to disable light subsystem

File size: 4.4 KB
RevLine 
[0]1//loop.c:
2
[668]3/*
4 *      Copyright (C) Philipp 'ph3-der-loewe' Schafft - 2008
5 *
6 *  This file is part of roard a part of RoarAudio,
7 *  a cross-platform sound system for both, home and professional use.
8 *  See README for details.
9 *
10 *  This file is free software; you can redistribute it and/or modify
11 *  it under the terms of the GNU General Public License version 3
12 *  as published by the Free Software Foundation.
13 *
14 *  RoarAudio is distributed in the hope that it will be useful,
15 *  but WITHOUT ANY WARRANTY; without even the implied warranty of
16 *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17 *  GNU General Public License for more details.
18 *
19 *  You should have received a copy of the GNU General Public License
20 *  along with this software; see the file COPYING.  If not, write to
21 *  the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
22 *
23 */
24
[0]25#include "roard.h"
26
[905]27int main_loop (int driver, DRIVER_USERDATA_T driver_inst, struct roar_audio_info * sa, int sysclocksync) {
[0]28 void ** streams_input = NULL;
[547]29 int     term = 0;
30 int     streams;
[1488]31#ifdef ROAR_HAVE_GETTIMEOFDAY
[905]32 long int loopc = 0;
[9]33 struct timeval         try, ans;
[905]34 float  freq;
[1488]35#endif
[905]36#ifdef MONITOR_LATENCY
[9]37 long int ans_1last = 0, ans_2last = 0, ans_3last = 0;
38
39 printf("\n\e[s");
40 fflush(stdout);
41#endif
[0]42
43 ROAR_DBG("main_loop(*) = ?");
[982]44// alive = 1;
[258]45 g_pos = 0;
[0]46
[1488]47#ifdef ROAR_HAVE_GETTIMEOFDAY
[905]48 if ( sysclocksync ) {
49  gettimeofday(&try, NULL);
50 }
[1488]51#endif
[905]52
[0]53 while (alive) {
[1488]54#if defined(MONITOR_LATENCY) && defined(ROAR_HAVE_GETTIMEOFDAY)
[9]55 gettimeofday(&try, NULL);
56#endif
57
[0]58  ROAR_DBG("main_loop(*): looping...");
59
[1494]60#ifdef ROAR_SUPPORT_LISTEN
[68]61  if ( g_listen_socket != -1 ) {
62   ROAR_DBG("main_loop(*): check for new clients...");
63   net_check_listen();
64  }
[1494]65#endif
[0]66
67  ROAR_DBG("main_loop(*): check for new data...");
[1494]68#ifdef ROAR_SUPPORT_LISTEN
[547]69  if ( clients_check_all() == 0 && g_terminate && g_listen_socket == -1 ) {
[1494]70#else
71  if ( clients_check_all() == 0 && g_terminate ) {
72#endif
[547]73   term  = 1;
74  }
[0]75
[1903]76  ROAR_DBG("main_loop(*): updating midi subsystem...");
[1855]77  midi_update();
78
[0]79  ROAR_DBG("main_loop(*): mixing clients...");
80  if ( g_standby ) {
81   // while in standby we still neet to get the buffers to free input buffer space.
[547]82   streams = streams_get_mixbuffers(&streams_input, sa, g_pos);
[0]83  } else {
[547]84   if ( ( streams = streams_get_mixbuffers(&streams_input, sa, g_pos)) != -1 ) {
[0]85    mix_clients(g_output_buffer, sa->bits, streams_input, ROAR_OUTPUT_BUFFER_SAMPLES * sa->channels);
86   }
87  }
88
[547]89  if ( term && streams < 1 )
90   alive = 0;
91
[0]92/*
93  // while in standby we still need to write out our buffer to not run in an endless loop without
94  // a break
95*/
96
[1903]97
98  ROAR_DBG("main_loop(*): sending output data...");
99
[1750]100#ifdef ROAR_HAVE_USLEEP
[920]101  if ( g_standby || (streams < 1 && g_autostandby) ) {
[0]102   usleep((1000000 * ROAR_OUTPUT_BUFFER_SAMPLES) / sa->rate);
[729]103   ROAR_DBG("usleep(%u) = ?\n", (1000000 * ROAR_OUTPUT_BUFFER_SAMPLES) / sa->rate);
[0]104  } else {
[1750]105#endif
[258]106   clients_send_filter(sa, g_pos);
[0]107   output_buffer_flush(driver_inst, driver);
[258]108   clients_send_mon(sa, g_pos);
[1750]109#ifdef ROAR_HAVE_USLEEP
[0]110  }
[1750]111#endif
[257]112
[1855]113  midi_reinit();
[2489]114#ifndef ROAR_WITHOUT_DCOMP_SSYNTH
[2467]115  ssynth_update();
[2489]116#endif
[2495]117#ifndef ROAR_WITHOUT_DCOMP_LIGHT
[1966]118  light_reinit();
[2495]119#endif
[1855]120
[0]121//  output_buffer_reinit();
122
[982]123  g_pos = ROAR_MATH_OVERFLOW_ADD(g_pos, ROAR_OUTPUT_BUFFER_SAMPLES*g_sa->channels);
[259]124  ROAR_DBG("main_loop(*): current pos: %u", g_pos);
[1488]125#if defined(MONITOR_LATENCY) && defined(ROAR_HAVE_GETTIMEOFDAY)
[9]126 gettimeofday(&ans, NULL);
127
128 while (ans.tv_sec > try.tv_sec) {
129  ans.tv_sec--;
130  ans.tv_usec += 1000000;
131 }
132 ans.tv_usec -= try.tv_usec;
133
[36]134 if ( loopc % 128 ) {
[9]135  printf("\e[ucurrent latency: %.3fms  average: %.3fms   ",  ans.tv_usec                               / (double)1000,
136                                                            (ans.tv_usec+ans_3last+ans_2last+ans_1last)/ (double)4000);
137  fflush(stdout);
138 }
139
140 ans_3last = ans_2last;
141 ans_2last = ans_1last;
142 ans_1last = ans.tv_usec;
143#endif
[905]144
[1488]145#ifdef ROAR_HAVE_GETTIMEOFDAY
[906]146  if ( sysclocksync && !(loopc % sysclocksync) ) {
[905]147   gettimeofday(&ans, NULL);
148
149   while (ans.tv_sec > try.tv_sec) {
150    ans.tv_sec--;
151    ans.tv_usec += 1000000;
152   }
153   ans.tv_usec -= try.tv_usec;
154
155
156   freq = (sysclocksync * ROAR_OUTPUT_BUFFER_SAMPLES) / (ans.tv_usec / 1e6);
[2410]157   printf("SYNC: f_conf=%iHz, f_real=%.2fHz diff=%+.3f%%\n", sa->rate, freq, 100*(freq/sa->rate - 1));
[905]158
159//   memcpy(&try, &ans, sizeof(try));
160   gettimeofday(&try, NULL);
161  }
162
163  if ( sysclocksync )
164   loopc++;
[1488]165#endif
[0]166 }
167
168 return -1;
169}
170
171//ll
Note: See TracBrowser for help on using the repository browser.