symbgen.cpp
上传用户:jtjnyq9001
上传日期:2014-11-21
资源大小:3974k
文件大小:2k
源码类别:

3G开发

开发平台:

Visual C++

  1. //
  2. //  File = symbgen.cpp
  3. //
  4. #include <stdlib.h>
  5. #include <fstream>
  6. #include "symbgen.h"
  7. #include "uni_rand.h"
  8. #include "parmfile.h"
  9. #include "model_graph.h"
  10. extern ParmFile *ParmInput;
  11. #ifdef _DEBUG
  12.   extern ofstream *DebugFile;
  13. #endif
  14. //======================================================
  15. SymbGener::SymbGener( char* instance_name,
  16.                       PracSimModel* outer_model,
  17.                       Signal<byte_t>* out_sig )
  18.           :PracSimModel(  instance_name,
  19.                           outer_model)
  20. {
  21.   MODEL_NAME(SymbGener);
  22.   OPEN_PARM_BLOCK;
  23.   GET_LONG_PARM(Initial_Seed);
  24.   Seed = Initial_Seed;
  25.   GET_INT_PARM(Bits_Per_Symb);
  26.   Out_Sig = out_sig;
  27.   MAKE_OUTPUT(Out_Sig);
  28. }
  29. //===========================================
  30. SymbGener::~SymbGener( void ){ };
  31. //========================================
  32. void SymbGener::Initialize(void)
  33. {
  34.   #ifdef _DEBUG
  35.     *DebugFile << "Now in SymbGener::Initialize()" << endl;
  36.   #endif
  37.   Block_Size = Out_Sig->GetBlockSize();
  38. };
  39. //========================================
  40. int SymbGener::Execute()
  41. {
  42.   int is;
  43.   byte_t *symbs_out;
  44.   long seed;
  45.   //--------------------------------
  46.   //  Get pointer for output buffer
  47.   Out_Sig->SetValidBlockSize(Block_Size);
  48.   symbs_out = GET_OUTPUT_PTR(Out_Sig);
  49.   seed = Seed;
  50.   int shift_val = 31 - Bits_Per_Symb;
  51.   for (is=0; is<Block_Size; is++)
  52.     {
  53.     //rand_num = UniformRandom(&seed);
  54.     //test_val = int(Num_Symbs*rand_num);
  55.     //symb_val = test_val;
  56.     //*symbs_out = symb_val;
  57.     *symbs_out = RandomLong(&seed)>>shift_val;
  58.     symbs_out++;
  59.     }
  60.   Seed = seed;
  61.   return(_MES_AOK);
  62. }