mirror of
https://github.com/holub/mame
synced 2025-05-21 05:08:54 +03:00
1098 lines
28 KiB
C
1098 lines
28 KiB
C
/************************************************************************
|
|
*
|
|
* MAME - Discrete sound system emulation library
|
|
*
|
|
* Written by Keith Wilkins (mame@esplexo.co.uk)
|
|
*
|
|
* (c) K.Wilkins 2000
|
|
*
|
|
* Coding started in November 2000
|
|
* KW - Added Sawtooth waveforms Feb2003
|
|
*
|
|
***********************************************************************
|
|
*
|
|
* SEE DISCRETE.H for documentation on usage
|
|
*
|
|
***********************************************************************
|
|
*
|
|
* Each sound primative DSS_xxxx or DST_xxxx has its own implementation
|
|
* file. All discrete sound primatives MUST implement the following
|
|
* API:
|
|
*
|
|
* dsX_NAME_step(inputs, context, float timestep) - Perform time step
|
|
* return output value
|
|
* dsX_NAME_reset(context) - Reset to initial state
|
|
*
|
|
* Core software takes care of traversing the netlist in the correct
|
|
* order
|
|
*
|
|
* DEVICE_START(discrete) - Read Node list, initialise & reset
|
|
* DEVICE_STOP(discrete) - Shutdown discrete sound system
|
|
* DEVICE_RESET(discrete) - Put sound system back to time 0
|
|
* discrete_stream_update() - This does the real update to the sim
|
|
*
|
|
************************************************************************/
|
|
|
|
#include "emu.h"
|
|
#include "streams.h"
|
|
#include "wavwrite.h"
|
|
#include "discrete.h"
|
|
|
|
|
|
|
|
/*************************************
|
|
*
|
|
* Performance
|
|
*
|
|
*************************************/
|
|
|
|
/*
|
|
* Normally, the discrete core processes 960 samples per update.
|
|
* With the various buffers involved, this on a Core2 is not as
|
|
* performant as processing 240 samples 4 times.
|
|
* The setting most probably depends on CPU and which modules are
|
|
* run and how many tasks are defined.
|
|
*
|
|
* Values < 32 exhibit poor performance (too much overhead) while
|
|
* Values > 500 have a slightly worse performace (too much cache misses?).
|
|
*/
|
|
|
|
#define MAX_SAMPLES_PER_TASK_SLICE (960/4)
|
|
|
|
/*************************************
|
|
*
|
|
* Debugging
|
|
*
|
|
*************************************/
|
|
|
|
#define DISCRETE_DEBUGLOG (1)
|
|
|
|
|
|
/*************************************
|
|
*
|
|
* Profiling Nodes
|
|
*
|
|
*************************************/
|
|
|
|
#define DISCRETE_PROFILING (0)
|
|
|
|
/*************************************
|
|
*
|
|
* Internal classes
|
|
*
|
|
*************************************/
|
|
|
|
typedef struct
|
|
{
|
|
const discrete_task *task;
|
|
const double *ptr;
|
|
int output_node;
|
|
double buffer;
|
|
} discrete_source_node;
|
|
typedef dynamic_array_t<discrete_source_node *> source_node_list_t;
|
|
|
|
class discrete_task
|
|
{
|
|
friend class discrete_device;
|
|
public:
|
|
virtual ~discrete_task(void) { }
|
|
|
|
inline void step_nodes(void);
|
|
inline bool lock_threadid(INT32 threadid)
|
|
{
|
|
INT32 prev_id;
|
|
prev_id = compare_exchange32(&m_threadid, -1, threadid);
|
|
return (prev_id == -1 && m_threadid == threadid);
|
|
}
|
|
inline void unlock(void) { m_threadid = -1; }
|
|
|
|
discrete_device *device;
|
|
//const linked_list_entry *list;
|
|
node_step_list_t step_list;
|
|
|
|
/* list of source nodes */
|
|
source_node_list_t source_list; /* discrete_source_node */
|
|
|
|
int task_group;
|
|
|
|
double *m_ptr[DISCRETE_MAX_TASK_OUTPUTS];
|
|
|
|
protected:
|
|
discrete_task(discrete_device *pdev)
|
|
: device(pdev), task_group(0), m_threadid(-1), m_numbuffered(0)
|
|
{
|
|
source_list.clear();
|
|
step_list.clear();
|
|
}
|
|
|
|
static void *task_callback(void *param, int threadid);
|
|
inline bool process(void);
|
|
|
|
void check(discrete_task *dest_task);
|
|
void prepare_for_queue(int samples);
|
|
|
|
double *m_node_buf[DISCRETE_MAX_TASK_OUTPUTS];
|
|
|
|
private:
|
|
volatile INT32 m_threadid;
|
|
int m_numbuffered;
|
|
volatile int m_samples;
|
|
|
|
const double *m_source[DISCRETE_MAX_TASK_OUTPUTS];
|
|
const discrete_base_node *m_nodes[DISCRETE_MAX_TASK_OUTPUTS];
|
|
};
|
|
|
|
|
|
/*************************************
|
|
*
|
|
* Included simulation objects
|
|
*
|
|
*************************************/
|
|
|
|
#include "disc_sys.c" /* discrete core modules and support functions */
|
|
#include "disc_wav.c" /* Wave sources - SINE/SQUARE/NOISE/etc */
|
|
#include "disc_mth.c" /* Math Devices - ADD/GAIN/etc */
|
|
#include "disc_inp.c" /* Input Devices - INPUT/CONST/etc */
|
|
#include "disc_flt.c" /* Filter Devices - RCF/HPF/LPF */
|
|
#include "disc_dev.c" /* Popular Devices - NE555/etc */
|
|
|
|
/*************************************
|
|
*
|
|
* INLINEs
|
|
*
|
|
*************************************/
|
|
|
|
|
|
|
|
/*************************************
|
|
*
|
|
* Task implementation
|
|
*
|
|
*************************************/
|
|
|
|
inline void discrete_task::step_nodes(void)
|
|
{
|
|
|
|
for_each(discrete_source_node **, sn, &source_list)
|
|
{
|
|
(*sn)->buffer = *(*sn)->ptr++;
|
|
}
|
|
|
|
if (EXPECTED(!device->profiling()))
|
|
{
|
|
for_each(discrete_step_interface **, entry, &step_list)
|
|
{
|
|
/* Now step the node */
|
|
(*entry)->step();
|
|
}
|
|
}
|
|
else
|
|
{
|
|
osd_ticks_t last = get_profile_ticks();
|
|
|
|
for_each(discrete_step_interface **, entry, &step_list)
|
|
{
|
|
discrete_step_interface *node = *entry;
|
|
|
|
node->run_time -= last;
|
|
node->step();
|
|
last = get_profile_ticks();
|
|
node->run_time += last;
|
|
}
|
|
}
|
|
|
|
for (int i = 0; i < m_numbuffered; i++)
|
|
*(m_ptr[i]++) = *m_source[i];
|
|
}
|
|
|
|
void *discrete_task::task_callback(void *param, int threadid)
|
|
{
|
|
task_list_t *list = (task_list_t *) param;
|
|
do
|
|
{
|
|
for_each(discrete_task **, task, list)
|
|
{
|
|
/* try to lock */
|
|
if ((*task)->lock_threadid(threadid))
|
|
{
|
|
if (!(*task)->process())
|
|
return NULL;
|
|
(*task)->unlock();
|
|
}
|
|
}
|
|
} while (1);
|
|
|
|
return NULL;
|
|
}
|
|
|
|
bool discrete_task::process(void)
|
|
{
|
|
int samples = MIN(m_samples, MAX_SAMPLES_PER_TASK_SLICE);
|
|
|
|
/* check dependencies */
|
|
for_each(discrete_source_node **, sn, &source_list)
|
|
{
|
|
int avail;
|
|
|
|
avail = (*sn)->task->m_ptr[(*sn)->output_node] - (*sn)->ptr;
|
|
assert_always(avail >= 0, "task_callback: available samples are negative");
|
|
if (avail < samples)
|
|
samples = avail;
|
|
}
|
|
|
|
m_samples -= samples;
|
|
assert_always(m_samples >=0, "task_callback: task_samples got negative");
|
|
while (samples > 0)
|
|
{
|
|
/* step */
|
|
step_nodes();
|
|
samples--;
|
|
}
|
|
if (m_samples == 0)
|
|
{
|
|
/* return and keep the task locked so it is not picked up by other worker threads */
|
|
return false;
|
|
}
|
|
return true;
|
|
}
|
|
|
|
void discrete_task::prepare_for_queue(int samples)
|
|
{
|
|
m_samples = samples;
|
|
/* set up task buffers */
|
|
for (int i = 0; i < m_numbuffered; i++)
|
|
m_ptr[i] = m_node_buf[i];
|
|
|
|
/* initialize sources */
|
|
for_each(discrete_source_node **, sn, &source_list)
|
|
{
|
|
(*sn)->ptr = (*sn)->task->m_node_buf[(*sn)->output_node];
|
|
}
|
|
}
|
|
|
|
void discrete_task::check(discrete_task *dest_task)
|
|
{
|
|
int inputnum;
|
|
|
|
/* Determine, which nodes in the task are referenced by nodes in dest_task
|
|
* and add them to the list of nodes to be buffered for further processing
|
|
*/
|
|
for_each(discrete_step_interface **, node_entry, &step_list)
|
|
{
|
|
|
|
discrete_base_node *task_node = (*node_entry)->self;
|
|
|
|
for_each(discrete_step_interface **, step_entry, &dest_task->step_list)
|
|
{
|
|
discrete_base_node *dest_node = (*step_entry)->self;
|
|
|
|
/* loop over all active inputs */
|
|
for (inputnum = 0; inputnum < dest_node->active_inputs(); inputnum++)
|
|
{
|
|
int inputnode = dest_node->input_node(inputnum);
|
|
if IS_VALUE_A_NODE(inputnode)
|
|
{
|
|
if (NODE_DEFAULT_NODE(task_node->block_node()) == NODE_DEFAULT_NODE(inputnode))
|
|
{
|
|
discrete_source_node *source;
|
|
int i, found = -1;
|
|
|
|
for (i = 0; i < m_numbuffered; i++)
|
|
if (m_nodes[i]->block_node() == inputnode)
|
|
{
|
|
found = i;
|
|
break;
|
|
}
|
|
|
|
if (found<0)
|
|
{
|
|
if (m_numbuffered >= DISCRETE_MAX_TASK_OUTPUTS)
|
|
fatalerror("dso_task_start - Number of maximum buffered nodes exceeded");
|
|
|
|
m_node_buf[m_numbuffered] = auto_alloc_array(device->machine, double,
|
|
((task_node->sample_rate() + STREAMS_UPDATE_FREQUENCY) / STREAMS_UPDATE_FREQUENCY));
|
|
m_source[m_numbuffered] = (double *) dest_node->m_input[inputnum];
|
|
m_nodes[m_numbuffered] = device->discrete_find_node(inputnode);
|
|
i = m_numbuffered;
|
|
m_numbuffered++;
|
|
}
|
|
device->discrete_log("dso_task_start - buffering %d(%d) in task %p group %d referenced by %d group %d", NODE_INDEX(inputnode), NODE_CHILD_NODE_NUM(inputnode), this, task_group, dest_node->index(), dest_task->task_group);
|
|
|
|
/* register into source list */
|
|
source = auto_alloc(device->machine, discrete_source_node);
|
|
dest_task->source_list.add(source);
|
|
source->task = this;
|
|
source->output_node = i;
|
|
|
|
/* point the input to a buffered location */
|
|
dest_node->m_input[inputnum] = &source->buffer;
|
|
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
/*************************************
|
|
*
|
|
* Base node implementation
|
|
*
|
|
*************************************/
|
|
|
|
discrete_base_node::discrete_base_node() :
|
|
m_step_intf(NULL),
|
|
m_input_intf(NULL)
|
|
{
|
|
output[0] = 0.0;
|
|
}
|
|
|
|
|
|
discrete_base_node::~discrete_base_node(void)
|
|
{
|
|
/* currently noting */
|
|
}
|
|
|
|
void discrete_base_node::init(discrete_device * pdev, const discrete_sound_block *xblock)
|
|
{
|
|
m_device = pdev;
|
|
m_block = xblock;
|
|
|
|
m_custom = m_block->custom;
|
|
m_active_inputs = m_block->active_inputs;
|
|
|
|
m_step_intf = dynamic_cast<discrete_step_interface *>(this);
|
|
m_input_intf = dynamic_cast<discrete_input_interface *>(this);
|
|
m_output_intf = dynamic_cast<discrete_output_interface *>(this);
|
|
|
|
if (m_step_intf)
|
|
{
|
|
m_step_intf->run_time = 0;
|
|
m_step_intf->self = this;
|
|
}
|
|
}
|
|
|
|
void discrete_base_node::save_state(void)
|
|
{
|
|
if (m_block->node != NODE_SPECIAL)
|
|
state_save_register_device_item_array(m_device, m_block->node, output);
|
|
}
|
|
|
|
const discrete_base_node *discrete_device::discrete_find_node(int node)
|
|
{
|
|
if (node < NODE_START || node > NODE_END) return NULL;
|
|
return m_indexed_node[NODE_INDEX(node)];
|
|
}
|
|
|
|
void discrete_base_node::resolve_input_nodes(void)
|
|
{
|
|
int inputnum;
|
|
|
|
/* loop over all active inputs */
|
|
for (inputnum = 0; inputnum < m_active_inputs; inputnum++)
|
|
{
|
|
int inputnode = m_block->input_node[inputnum];
|
|
|
|
/* if this input is node-based, find the node in the indexed list */
|
|
if IS_VALUE_A_NODE(inputnode)
|
|
{
|
|
discrete_base_node *node_ref = m_device->m_indexed_node[NODE_INDEX(inputnode)];
|
|
if (!node_ref)
|
|
fatalerror("discrete_start - NODE_%02d referenced a non existent node NODE_%02d", index(), NODE_INDEX(inputnode));
|
|
|
|
if ((NODE_CHILD_NODE_NUM(inputnode) >= node_ref->max_output()) /*&& (node_ref->module_type() != DST_CUSTOM)*/)
|
|
fatalerror("discrete_start - NODE_%02d referenced non existent output %d on node NODE_%02d", index(), NODE_CHILD_NODE_NUM(inputnode), NODE_INDEX(inputnode));
|
|
|
|
m_input[inputnum] = &(node_ref->output[NODE_CHILD_NODE_NUM(inputnode)]); /* Link referenced node out to input */
|
|
m_input_is_node |= 1 << inputnum; /* Bit flag if input is node */
|
|
}
|
|
else
|
|
{
|
|
/* warn if trying to use a node for an input that can only be static */
|
|
if IS_VALUE_A_NODE(m_block->initial[inputnum])
|
|
{
|
|
m_device->discrete_log("Warning - discrete_start - NODE_%02d trying to use a node on static input %d", index(), inputnum);
|
|
/* also report it in the error log so it is not missed */
|
|
logerror("Warning - discrete_start - NODE_%02d trying to use a node on static input %d", index(), inputnum);
|
|
}
|
|
else
|
|
{
|
|
m_input[inputnum] = &(m_block->initial[inputnum]);
|
|
}
|
|
}
|
|
}
|
|
for (inputnum = m_active_inputs; inputnum < DISCRETE_MAX_INPUTS; inputnum++)
|
|
{
|
|
/* FIXME: Check that no nodes follow ! */
|
|
m_input[inputnum] = &(m_block->initial[inputnum]);
|
|
}
|
|
}
|
|
|
|
const double *discrete_device::node_output_ptr(int onode)
|
|
{
|
|
const discrete_base_node *node;
|
|
node = discrete_find_node(onode);
|
|
|
|
if (node != NULL)
|
|
{
|
|
return &(node->output[NODE_CHILD_NODE_NUM(onode)]);
|
|
}
|
|
else
|
|
return NULL;
|
|
}
|
|
|
|
/*************************************
|
|
*
|
|
* Device implementation
|
|
*
|
|
*************************************/
|
|
|
|
|
|
//-------------------------------------------------
|
|
// discrete_log: Debug logging
|
|
//-------------------------------------------------
|
|
|
|
void CLIB_DECL ATTR_PRINTF(2,3) discrete_device::discrete_log(const char *text, ...) const
|
|
{
|
|
if (DISCRETE_DEBUGLOG)
|
|
{
|
|
va_list arg;
|
|
va_start(arg, text);
|
|
|
|
if(m_disclogfile)
|
|
{
|
|
vfprintf(m_disclogfile, text, arg);
|
|
fprintf(m_disclogfile, "\n");
|
|
fflush(m_disclogfile);
|
|
}
|
|
|
|
va_end(arg);
|
|
}
|
|
}
|
|
|
|
//-------------------------------------------------
|
|
// discrete_build_list: Build import list
|
|
//-------------------------------------------------
|
|
|
|
void discrete_device::discrete_build_list(const discrete_sound_block *intf, sound_block_list_t &block_list)
|
|
{
|
|
int node_count = 0;
|
|
|
|
for (; intf[node_count].type != DSS_NULL; )
|
|
{
|
|
/* scan imported */
|
|
if (intf[node_count].type == DSO_IMPORT)
|
|
{
|
|
discrete_log("discrete_build_list() - DISCRETE_IMPORT @ NODE_%02d", NODE_INDEX(intf[node_count].node) );
|
|
discrete_build_list((discrete_sound_block *) intf[node_count].custom, block_list);
|
|
}
|
|
else if (intf[node_count].type == DSO_REPLACE)
|
|
{
|
|
bool found = false;
|
|
node_count++;
|
|
if (intf[node_count].type == DSS_NULL)
|
|
fatalerror("discrete_build_list: DISCRETE_REPLACE at end of node_list");
|
|
|
|
for (int i=0; i < block_list.count(); i++)
|
|
{
|
|
const discrete_sound_block *block = block_list[i];
|
|
|
|
if (block->type != NODE_SPECIAL )
|
|
if (block->node == intf[node_count].node)
|
|
{
|
|
block_list[i] = &intf[node_count];
|
|
discrete_log("discrete_build_list() - DISCRETE_REPLACE @ NODE_%02d", NODE_INDEX(intf[node_count].node) );
|
|
found = true;
|
|
break;
|
|
}
|
|
}
|
|
|
|
if (!found)
|
|
fatalerror("discrete_build_list: DISCRETE_REPLACE did not found node %d", NODE_INDEX(intf[node_count].node));
|
|
|
|
}
|
|
else if (intf[node_count].type == DSO_DELETE)
|
|
{
|
|
dynamic_array_t<int> deletethem;
|
|
|
|
for (int i=0; i<block_list.count(); i++)
|
|
{
|
|
const discrete_sound_block *block = block_list[i];
|
|
|
|
if ((block->node >= intf[node_count].input_node[0]) &&
|
|
(block->node <= intf[node_count].input_node[1]))
|
|
{
|
|
discrete_log("discrete_build_list() - DISCRETE_DELETE deleted NODE_%02d", NODE_INDEX(block->node) );
|
|
deletethem.add(i);
|
|
}
|
|
}
|
|
for_each (int *, i, &deletethem)
|
|
block_list.delete(*i);
|
|
}
|
|
else
|
|
{
|
|
discrete_log("discrete_build_list() - adding node %d\n", node_count);
|
|
block_list.add(&intf[node_count]);
|
|
}
|
|
|
|
node_count++;
|
|
}
|
|
}
|
|
|
|
//-------------------------------------------------
|
|
// discrete_sanity_check: Sanity check list
|
|
//-------------------------------------------------
|
|
|
|
void discrete_device::discrete_sanity_check(const sound_block_list_t &block_list)
|
|
{
|
|
int node_count = 0;
|
|
|
|
discrete_log("discrete_start() - Doing node list sanity check");
|
|
for (int i=0; i < block_list.count(); i++)
|
|
{
|
|
const discrete_sound_block *block = block_list[i];
|
|
|
|
/* make sure we don't have too many nodes overall */
|
|
if (node_count > DISCRETE_MAX_NODES)
|
|
fatalerror("discrete_start() - Upper limit of %d nodes exceeded, have you terminated the interface block?", DISCRETE_MAX_NODES);
|
|
|
|
/* make sure the node number is in range */
|
|
if (block->node < NODE_START || block->node > NODE_END)
|
|
fatalerror("discrete_start() - Invalid node number on node %02d descriptor", block->node);
|
|
|
|
/* make sure the node type is valid */
|
|
if (block->type > DSO_OUTPUT)
|
|
fatalerror("discrete_start() - Invalid function type on NODE_%02d", NODE_INDEX(block->node) );
|
|
|
|
/* make sure this is a main node */
|
|
if (NODE_CHILD_NODE_NUM(block->node) > 0)
|
|
fatalerror("discrete_start() - Child node number on NODE_%02d", NODE_INDEX(block->node) );
|
|
|
|
node_count++;
|
|
}
|
|
discrete_log("discrete_start() - Sanity check counted %d nodes", node_count);
|
|
|
|
}
|
|
|
|
//-------------------------------------------------
|
|
// discrete_sanity_check: Sanity check list
|
|
//-------------------------------------------------
|
|
|
|
/*************************************
|
|
*
|
|
* Master discrete system start
|
|
*
|
|
*************************************/
|
|
|
|
|
|
/*************************************
|
|
*
|
|
* Master discrete system stop
|
|
*
|
|
*************************************/
|
|
|
|
static UINT64 list_run_time(const node_list_t &list)
|
|
{
|
|
UINT64 total = 0;
|
|
|
|
for_each(discrete_base_node **, node, &list)
|
|
{
|
|
discrete_step_interface *step;
|
|
if ((*node)->interface(step))
|
|
total += step->run_time;
|
|
}
|
|
return total;
|
|
}
|
|
|
|
static UINT64 step_list_run_time(const node_step_list_t &list)
|
|
{
|
|
UINT64 total = 0;
|
|
|
|
for_each(discrete_step_interface **, node, &list)
|
|
{
|
|
total += (*node)->run_time;
|
|
}
|
|
return total;
|
|
}
|
|
|
|
void discrete_device::display_profiling(void)
|
|
{
|
|
int count;
|
|
UINT64 total;
|
|
UINT64 tresh;
|
|
double tt;
|
|
|
|
/* calculate total time */
|
|
total = list_run_time(m_node_list);
|
|
count = m_node_list.count();
|
|
/* print statistics */
|
|
printf("Total Samples : %16" I64FMT "d\n", m_total_samples);
|
|
tresh = total / count;
|
|
printf("Threshold (mean): %16" I64FMT "d\n", tresh / m_total_samples );
|
|
for_each(discrete_base_node **, node, &m_node_list)
|
|
{
|
|
discrete_step_interface *step;
|
|
if ((*node)->interface(step))
|
|
if (step->run_time > tresh)
|
|
printf("%3d: %20s %8.2f %10.2f\n", (*node)->index(), (*node)->module_name(), (float) step->run_time / (float) total * 100.0, ((float) step->run_time) / (float) m_total_samples);
|
|
}
|
|
|
|
/* Task information */
|
|
for_each(discrete_task **, task, &task_list)
|
|
{
|
|
tt = step_list_run_time((*task)->step_list);
|
|
|
|
printf("Task(%d): %8.2f %15.2f\n", (*task)->task_group, tt / (double) total * 100.0, tt / (double) m_total_samples);
|
|
}
|
|
|
|
printf("Average samples/stream_update: %8.2f\n", (double) m_total_samples / (double) m_total_stream_updates);
|
|
}
|
|
|
|
|
|
/*************************************
|
|
*
|
|
* First pass init of nodes
|
|
*
|
|
*************************************/
|
|
|
|
|
|
void discrete_device::init_nodes(const sound_block_list_t &block_list)
|
|
{
|
|
discrete_task *task = NULL;
|
|
/* list tail pointers */
|
|
int has_tasks = 0;
|
|
|
|
/* check whether we have tasks ... */
|
|
for (int i = 0; i < block_list.count(); i++)
|
|
{
|
|
if (block_list[i]->type == DSO_TASK_START)
|
|
has_tasks = 1;
|
|
}
|
|
|
|
if (!has_tasks)
|
|
{
|
|
/* make sure we have one simple task
|
|
* No need to create a node since there are no dependencies.
|
|
*/
|
|
task = auto_alloc_clear(machine, discrete_task(this));
|
|
task_list.add(task);
|
|
}
|
|
|
|
/* loop over all nodes */
|
|
for (int i = 0; i < block_list.count(); i++)
|
|
{
|
|
const discrete_sound_block *block = block_list[i];
|
|
|
|
discrete_base_node *node = block->factory->Create(this, block);
|
|
/* keep track of special nodes */
|
|
if (block->node == NODE_SPECIAL)
|
|
{
|
|
switch(block->type)
|
|
{
|
|
/* Output Node */
|
|
case DSO_OUTPUT:
|
|
/* nothing -> handled later */
|
|
break;
|
|
|
|
/* CSVlog Node for debugging */
|
|
case DSO_CSVLOG:
|
|
break;
|
|
|
|
/* Wavelog Node for debugging */
|
|
case DSO_WAVELOG:
|
|
break;
|
|
|
|
/* Task processing */
|
|
case DSO_TASK_START:
|
|
if (task != NULL)
|
|
fatalerror("init_nodes() - Nested DISCRETE_START_TASK.");
|
|
task = auto_alloc_clear(machine, discrete_task(this));
|
|
task->task_group = block->initial[0];
|
|
if (task->task_group < 0 || task->task_group >= DISCRETE_MAX_TASK_GROUPS)
|
|
fatalerror("discrete_dso_task: illegal task_group %d", task->task_group);
|
|
//printf("task group %d\n", task->task_group);
|
|
task_list.add(task);
|
|
break;
|
|
|
|
case DSO_TASK_END:
|
|
if (task == NULL)
|
|
fatalerror("init_nodes() - NO DISCRETE_START_TASK.");
|
|
break;
|
|
|
|
default:
|
|
fatalerror("init_nodes() - Failed, trying to create unknown special discrete node.");
|
|
}
|
|
}
|
|
|
|
/* otherwise, make sure we are not a duplicate, and put ourselves into the indexed list */
|
|
else
|
|
{
|
|
if (m_indexed_node[NODE_INDEX(block->node)])
|
|
fatalerror("init_nodes() - Duplicate entries for NODE_%02d", NODE_INDEX(block->node));
|
|
m_indexed_node[NODE_INDEX(block->node)] = node;
|
|
}
|
|
|
|
/* if we are an stream input node, track that */
|
|
discrete_dss_input_stream_node *input_stream = dynamic_cast<discrete_dss_input_stream_node *>(node);
|
|
if (input_stream != NULL)
|
|
{
|
|
m_input_stream_list.add(input_stream);
|
|
}
|
|
|
|
/* add to node list */
|
|
m_node_list.add(node);
|
|
|
|
/* our running order just follows the order specified */
|
|
/* does the node step ? */
|
|
discrete_step_interface *step;
|
|
if (node->interface(step))
|
|
{
|
|
/* do we belong to a task? */
|
|
if (task == NULL)
|
|
fatalerror("init_nodes() - found node outside of task: %s", node->module_name() );
|
|
else
|
|
task->step_list.add(step);
|
|
}
|
|
|
|
/* if this is an output interface, add it the output list */
|
|
discrete_output_interface *out;
|
|
if (node->interface(out))
|
|
m_output_list.add(out);
|
|
|
|
|
|
if (block->type == DSO_TASK_END)
|
|
{
|
|
task = NULL;
|
|
}
|
|
|
|
/* and register save state */
|
|
node->save_state();
|
|
}
|
|
|
|
if (!has_tasks)
|
|
{
|
|
}
|
|
|
|
/* if no outputs, give an error */
|
|
if (m_output_list.count() == 0)
|
|
fatalerror("init_nodes() - Couldn't find an output node");
|
|
}
|
|
|
|
|
|
/*************************************
|
|
*
|
|
* node_description implementation
|
|
*
|
|
*************************************/
|
|
|
|
|
|
int discrete_device::same_module_index(const discrete_base_node &node)
|
|
{
|
|
int index = 0;
|
|
|
|
for_each(discrete_base_node **, n, &m_node_list)
|
|
{
|
|
if (*n == &node)
|
|
return index;
|
|
if ((*n)->module_type() == node.module_type())
|
|
index++;
|
|
}
|
|
return -1;
|
|
}
|
|
|
|
|
|
//**************************************************************************
|
|
// GLOBAL VARIABLES
|
|
//**************************************************************************
|
|
|
|
const device_type DISCRETE = discrete_device_config::static_alloc_device_config;
|
|
|
|
//**************************************************************************
|
|
// DEVICE CONFIGURATION
|
|
//**************************************************************************
|
|
|
|
//-------------------------------------------------
|
|
// static_set_intf - configuration helper to set
|
|
// the interface
|
|
//-------------------------------------------------
|
|
|
|
void discrete_device_config::static_set_intf(device_config *device, const discrete_sound_block *intf)
|
|
{
|
|
discrete_device_config *disc = downcast<discrete_device_config *>(device);
|
|
disc->m_intf = intf;
|
|
}
|
|
|
|
//-------------------------------------------------
|
|
// discrete_device_config - constructor
|
|
//-------------------------------------------------
|
|
|
|
discrete_device_config::discrete_device_config(const machine_config &mconfig, const char *tag, const device_config *owner, UINT32 clock)
|
|
: device_config(mconfig, static_alloc_device_config, "DISCRETE", tag, owner, clock),
|
|
device_config_sound_interface(mconfig, *this), m_intf(NULL)
|
|
{
|
|
}
|
|
|
|
|
|
//-------------------------------------------------
|
|
// static_alloc_device_config - allocate a new
|
|
// configuration object
|
|
//-------------------------------------------------
|
|
|
|
device_config *discrete_device_config::static_alloc_device_config(const machine_config &mconfig, const char *tag, const device_config *owner, UINT32 clock)
|
|
{
|
|
return global_alloc(discrete_device_config(mconfig, tag, owner, clock));
|
|
}
|
|
|
|
|
|
//-------------------------------------------------
|
|
// alloc_device - allocate a new device object
|
|
//-------------------------------------------------
|
|
|
|
device_t *discrete_device_config::alloc_device(running_machine &machine) const
|
|
{
|
|
return auto_alloc(&machine, discrete_device(machine, *this));
|
|
}
|
|
|
|
|
|
//-------------------------------------------------
|
|
// discrete_device - constructor
|
|
//-------------------------------------------------
|
|
|
|
discrete_device::discrete_device(running_machine &_machine, const discrete_device_config &config)
|
|
: device_t(_machine, config),
|
|
device_sound_interface(_machine, config, *this),
|
|
m_config(config)
|
|
{
|
|
//memset(&m_info, 0, sizeof(m_info));
|
|
|
|
}
|
|
|
|
discrete_device::~discrete_device(void)
|
|
{
|
|
osd_work_queue_free(m_queue);
|
|
|
|
if (m_profiling)
|
|
{
|
|
display_profiling();
|
|
}
|
|
|
|
/* Process nodes which have a stop func */
|
|
|
|
for_each(discrete_base_node **, node, &m_node_list)
|
|
{
|
|
(*node)->stop();
|
|
}
|
|
|
|
if (DISCRETE_DEBUGLOG)
|
|
{
|
|
/* close the debug log */
|
|
if (m_disclogfile)
|
|
fclose(m_disclogfile);
|
|
m_disclogfile = NULL;
|
|
}
|
|
}
|
|
|
|
//-------------------------------------------------
|
|
// device_start - device-specific startup
|
|
//-------------------------------------------------
|
|
|
|
void discrete_device::device_start()
|
|
{
|
|
// create the stream
|
|
//m_stream = stream_create(this, 0, 2, 22257, this, static_stream_generate);
|
|
|
|
const discrete_sound_block *intf_start = (m_config.m_intf != NULL) ? m_config.m_intf : (discrete_sound_block *) baseconfig().static_config();
|
|
char name[32];
|
|
|
|
/* If a clock is specified we will use it, otherwise run at the audio sample rate. */
|
|
if (this->clock())
|
|
m_sample_rate = this->clock();
|
|
else
|
|
m_sample_rate = this->machine->sample_rate;
|
|
m_sample_time = 1.0 / m_sample_rate;
|
|
m_neg_sample_time = - m_sample_time;
|
|
|
|
m_total_samples = 0;
|
|
m_total_stream_updates = 0;
|
|
|
|
/* create the logfile */
|
|
sprintf(name, "discrete%s.log", this->tag());
|
|
if (DISCRETE_DEBUGLOG)
|
|
m_disclogfile = fopen(name, "w");
|
|
|
|
/* enable profiling */
|
|
m_profiling = 0;
|
|
if (getenv("DISCRETE_PROFILING"))
|
|
m_profiling = atoi(getenv("DISCRETE_PROFILING"));
|
|
|
|
/* Build the final block list */
|
|
sound_block_list_t block_list;
|
|
discrete_build_list(intf_start, block_list);
|
|
|
|
/* first pass through the nodes: sanity check, fill in the indexed_nodes, and make a total count */
|
|
discrete_sanity_check(block_list);
|
|
|
|
/* Start with empty lists */
|
|
m_node_list.clear();
|
|
m_output_list.clear();
|
|
m_input_stream_list.clear();
|
|
|
|
/* allocate memory to hold pointers to nodes by index */
|
|
m_indexed_node = auto_alloc_array_clear(this->machine, discrete_base_node *, DISCRETE_MAX_NODES);
|
|
|
|
/* initialize the node data */
|
|
init_nodes(block_list);
|
|
|
|
/* now go back and find pointers to all input nodes */
|
|
for_each(discrete_base_node **, node, &m_node_list)
|
|
{
|
|
(*node)->resolve_input_nodes();
|
|
}
|
|
|
|
/* initialize the stream(s) */
|
|
m_stream = stream_create(this,m_input_stream_list.count(), m_output_list.count(), m_sample_rate, this, static_stream_generate);
|
|
|
|
/* allocate a queue */
|
|
|
|
m_queue = osd_work_queue_alloc(WORK_QUEUE_FLAG_MULTI | WORK_QUEUE_FLAG_HIGH_FREQ);
|
|
|
|
/* Process nodes which have a start func */
|
|
|
|
for_each(discrete_base_node **, node, &m_node_list)
|
|
{
|
|
(*node)->start();
|
|
}
|
|
|
|
/* Now set up tasks */
|
|
|
|
for_each(discrete_task **, task, &task_list)
|
|
{
|
|
for_each(discrete_task **, dest_task, &task_list)
|
|
{
|
|
if ((*task)->task_group > (*dest_task)->task_group)
|
|
(*dest_task)->check((*task));
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
//-------------------------------------------------
|
|
// device_reset - device-specific reset
|
|
//-------------------------------------------------
|
|
|
|
void discrete_device::device_reset()
|
|
{
|
|
|
|
update();
|
|
|
|
/* loop over all nodes */
|
|
for_each (discrete_base_node **, node, &m_node_list)
|
|
{
|
|
/* Fimxe : node_level */
|
|
(*node)->output[0] = 0;
|
|
|
|
(*node)->reset();
|
|
}
|
|
}
|
|
|
|
//-------------------------------------------------
|
|
// stream_generate - handle update requests for
|
|
// our sound stream
|
|
//-------------------------------------------------
|
|
|
|
STREAM_UPDATE( discrete_device::static_stream_generate )
|
|
{
|
|
reinterpret_cast<discrete_device *>(param)->stream_generate(inputs, outputs, samples);
|
|
}
|
|
|
|
void discrete_device::stream_generate(stream_sample_t **inputs, stream_sample_t **outputs, int samples)
|
|
{
|
|
int outputnum;
|
|
//, task_group;
|
|
|
|
if (samples == 0)
|
|
return;
|
|
/* Setup any output streams */
|
|
outputnum = 0;
|
|
for_each(discrete_output_interface **, node, &m_output_list)
|
|
{
|
|
(*node)->set_output(outputs[outputnum]);
|
|
outputnum++;
|
|
}
|
|
|
|
/* Setup any input streams */
|
|
for_each(discrete_dss_input_stream_node **, node, &m_input_stream_list)
|
|
{
|
|
(*node)->m_ptr = (stream_sample_t *) inputs[(*node)->m_stream_in_number];
|
|
}
|
|
|
|
/* Setup tasks */
|
|
for_each(discrete_task **, task, &task_list)
|
|
{
|
|
/* unlock the thread */
|
|
(*task)->unlock();
|
|
|
|
(*task)->prepare_for_queue(samples);
|
|
}
|
|
|
|
for_each(discrete_task **, task, &task_list)
|
|
{
|
|
/* Fire a work item for each task */
|
|
osd_work_item_queue(m_queue, discrete_task::task_callback, (void *) &task_list, WORK_ITEM_FLAG_AUTO_RELEASE);
|
|
}
|
|
osd_work_queue_wait(m_queue, osd_ticks_per_second()*10);
|
|
|
|
if (m_profiling)
|
|
{
|
|
m_total_samples += samples;
|
|
m_total_stream_updates++;
|
|
}
|
|
}
|
|
|
|
//-------------------------------------------------
|
|
// read - read from the chip's registers and internal RAM
|
|
//-------------------------------------------------
|
|
|
|
READ8_MEMBER( discrete_device::read )
|
|
{
|
|
const discrete_base_node *node = discrete_find_node(offset);
|
|
|
|
UINT8 data = 0;
|
|
|
|
/* Read the node input value if allowed */
|
|
if (node)
|
|
{
|
|
/* Bring the system up to now */
|
|
stream_update(m_stream);
|
|
|
|
data = (UINT8) node->output[NODE_CHILD_NODE_NUM(offset)];
|
|
}
|
|
else
|
|
fatalerror("discrete_sound_r read from non-existent NODE_%02d\n", offset-NODE_00);
|
|
|
|
return data;
|
|
}
|
|
|
|
//-------------------------------------------------
|
|
// write - write to the chip's registers and internal RAM
|
|
//-------------------------------------------------
|
|
|
|
WRITE8_MEMBER( discrete_device::write )
|
|
{
|
|
const discrete_base_node *node = discrete_find_node(offset);
|
|
|
|
/* Update the node input value if it's a proper input node */
|
|
if (node)
|
|
{
|
|
discrete_input_interface *intf;
|
|
if (node->interface(intf))
|
|
intf->input_write(0, data);
|
|
else
|
|
discrete_log("discrete_sound_w write to non-input NODE_%02d\n", offset-NODE_00);
|
|
}
|
|
else
|
|
{
|
|
discrete_log("discrete_sound_w write to non-existent NODE_%02d\n", offset-NODE_00);
|
|
}
|
|
}
|