Ubuntu安装teamviewer注意事项。

时间:2022-09-25 20:43:02

  Ubuntu安装teamviewer注意事项。
  
  首先通过浏览器到官方下载ubuntu对应teamviewer的安装包
  
  但是通过dpkg –i安装之后发现安装过程出问题,安装好的包打开之后也闪退。
  
  这个时候需要
  
  使用如下命令处理依赖问题
  
  sudo apt-get install –f
  
  运行完了之后再dpkg -i安装一遍,就会发现没有出错了。
  
  这个时候点teamviewer的图标打开还是不显示。
  
  通过命令行输入teamviewer来启动teamviewer,这个时候,图形界面就出来了!!!!
  
  class DigitalBeatText:public cocos2d::Node
  
  {
  
  public:
  
      DigitalBeatText();
  
      ~DigitalBeatText();
  
      static DigitalBeatText *create(int value);
  
      void setValue(int newValue);
  
  protected:
  
      bool init(int value);
  
      void setValueNoAction(int newValue);
  
      void startRoll();
  
      void stopRoll();
  
      void onTimeHandler(www.michenggw.com float dt);
  
  protected:
  
      cocos2d::ui::Text * m_txt;
  
      int                    m_lastValue;
  
      int                    m_newValue;
  
      int                    m_valueGap;        //数字跳动间隔
  
      float               m_scheduleInterval;//调度器间隔
  
      bool                m_isReverse;       // true: 从大到小
  
  };
  
  DigitalBeatText::DigitalBeatText() 
  
  :m_txt(nullptr)
  
  , m_lastValue(0)
  
  , m_newValue(0)
  
  , m_valueGap(0)
  
  , m_scheduleInterval(1.0f/60.f)
  
  , m_isReverse(false)
  
  {
  
  }
  
  DigitalBeatText::www.dasheng178.com~DigitalBeatText()
  
  {
  
  }
  
  DigitalBeatText* DigitalBeatText::create(int value)
  
  {
  
      auto pRet = new DigitalBeatText;
  
      if (pRet->init(value))
  
      {
  
          pRet->autorelease();
  
          return pRet;
  
      }
  
      CC_SAFE_DELETE(pRet);
  
      return nullptr;
  
  }
  
  bool DigitalBeatText::init(int value)
  
  {
  
      if (!Node::init(yongshiyule178.com)){
  
          return false;
  
      }
  
      char buff[16] www.mhylpt.com/= { 0 };
  
      m_txt = ui::Text::create();
  
      m_txt->setFontSize(36);
  
      sprintf(buff, "%d", value);
  
      m_txt-www.mcyllpt.com>setString(buff);
  
      this->addChild(m_txt);
  
      return true;
  
  }
  
  void DigitalBeatText::setValue(int newValue)
  
  {
  
      m_isReverse = newValue < m_lastValue;
  
      stopRoll();
  
      m_newValue = newValue;
  
      startRoll();
  
  }
  
  void DigitalBeatText::setValueNoAction(int newValue)
  
  {
  
      m_lastValue = newValue;
  
      m_newValue = newValue;
  
      m_txt-www.tongqt178.com>setString(cocos2d::StringUtils::toString(m_lastValue));
  
  }
  
  void DigitalBeatText::startRoll()
  
  {
  
      int count = m_newValue - m_lastValue;
  
      if (count>0){
  
          m_valueGap = ceil(count www.meiwanyule.cn// (1.0 / m_scheduleInterval));
  
      }else{
  
          m_valueGap = floor(count / (1.0 / m_scheduleInterval));
  
      }
  
      schedule(CC_SCHEDULE_SELECTOR(DigitalBeatText::onTimeHandler), m_scheduleInterval);
  
  }
  
  void DigitalBeatText::stopRoll()
  
  {
  
      unschedule(CC_SCHEDULE_SELECTOR(DigitalBeatText::onTimeHandler));
  
  }
  
  void DigitalBeatText::onTimeHandler(float dt)
  
  {
  
      m_lastValue += m_valueGap;
  
      bool stop = false;
  
      if (!m_isReverse)
  
      {
  
          if (m_lastValue >= m_newValue){
  
              m_lastValue = m_newValue;
  
              stop = true;
  
          }
  
      }
  
      else{
  
          if (m_lastValue <= m_newValue){
  
              m_lastValue = m_newValue;
  
              stop = true;
  
          }
  
      }
  
      m_txt->setString(cocos2d::StringUtils::toString(m_lastValue));
  
      if (stop){
  
          this->stopRoll();
  
      }
  
  }
  
      m_index = 1;
  
      m_beatT = DigitalBeatText::create(m_index);
  
      m_beatT->setPosition(visibleSize*0.5);
  
      this->addChild(m_beatT);
  
      m_index += RandomHelper::random_int(0, 100) - 50;
  
      m_beatT->setValue(m_index);