Home
last modified time | relevance | path

Searched refs:SongType (Results 1 – 25 of 45) sorted by relevance

12

/dports/audio/bambootracker/BambooTracker-0.4.5/BambooTracker/gui/
H A Dtrack_visibility_memory_handler.cpp39 const SongType type, const std::vector<int>& visTracks) in saveTrackVisibilityMemory()
46 case SongType::Standard: tid = 0; break; in saveTrackVisibilityMemory()
47 case SongType::FM3chExpanded: tid = 1; break; in saveTrackVisibilityMemory()
64 SongType& type, std::vector<int>& visTracks) in loadTrackVisibilityMemory()
71 case 0: type = SongType::Standard; break; in loadTrackVisibilityMemory()
72 case 1: type = SongType::FM3chExpanded; break; in loadTrackVisibilityMemory()
79 if ((type == SongType::Standard && 16 < list.size())) return false; in loadTrackVisibilityMemory()
80 else if ((type == SongType::FM3chExpanded && 19 < list.size())) return false; in loadTrackVisibilityMemory()
86 if ((type == SongType::Standard && 15 < tl.back())) return false; in loadTrackVisibilityMemory()
87 else if ((type == SongType::FM3chExpanded && 18 < tl.back())) return false; in loadTrackVisibilityMemory()
H A Dgui_util.hpp37 inline QString getTrackName(SongType songType, SoundSource src, int chInSrc) in getTrackName()
43 case SongType::Standard: in getTrackName()
46 case SongType::FM3chExpanded: in getTrackName()
98 const SongType prevType, const SongType curType) in adaptVisibleTrackList()
103 if (prevType == SongType::Standard) { in adaptVisibleTrackList()
H A Dmodule_properties_dialog.cpp32 const std::unordered_map<SongType, QString> ModulePropertiesDialog::SONG_TYPE_TEXT_ = {
33 { SongType::Standard, QT_TR_NOOP("Standard") },
34 { SongType::FM3chExpanded, QT_TR_NOOP("FM3ch expanded") }
74 …ui->sngTypeComboBox->addItem(SONG_TYPE_TEXT_.at(SongType::Standard), static_cast<int>(SongType::St… in ModulePropertiesDialog()
75 …ui->sngTypeComboBox->addItem(SONG_TYPE_TEXT_.at(SongType::FM3chExpanded), static_cast<int>(SongTyp… in ModulePropertiesDialog()
83 void ModulePropertiesDialog::insertSong(int row, QString title, SongType type, int prevNum) in insertSong()
180 static_cast<SongType>(ui->sngTypeComboBox->currentData(Qt::UserRole).toInt())); in on_insertPushButton_clicked()
225 SongType type = static_cast<SongType>(item->data(2, Qt::UserRole).toInt()); in onAccepted()
260 item->setText(2, SONG_TYPE_TEXT_.at(static_cast<SongType>(typeInt))); in on_updateButton_clicked()
H A Dtrack_visibility_memory_handler.hpp36 static bool saveTrackVisibilityMemory(const SongType type, const std::vector<int>& visTracks);
37 static bool loadTrackVisibilityMemory(SongType& type, std::vector<int>& visTracks);
H A Dmodule_properties_dialog.hpp71 static const std::unordered_map<SongType, QString> SONG_TYPE_TEXT_;
73 void insertSong(int row, QString title, SongType type, int prevNum = -1);
/dports/audio/bambootracker/BambooTracker-0.4.5/BambooTracker/module/
H A Dsong.hpp41 …Song(int number, SongType songType = SongType::Standard, std::string title = u8"", bool isUsedTemp…
63 void changeType(SongType type);
95 SongType type_;
111 SongType type;
H A Dsong.cpp31 Song::Song(int number, SongType songType, std::string title, bool isUsedTempo, in Song()
43 case SongType::Standard: in Song()
56 case SongType::FM3chExpanded: in Song()
180 void Song::changeType(SongType type) in changeType()
185 case SongType::Standard: // Previous type: FM3chExpanded in changeType()
193 case SongType::FM3chExpanded: // Previous type: Standard in changeType()
H A Dmodule.hpp76 void addSong(SongType songType, std::string title);
77 void addSong(int n, SongType songType, std::string title, bool isUsedTempo,
H A Dmodule.cpp168 void Module::addSong(SongType songType, std::string title) in addSong()
174 void Module::addSong(int n, SongType songType, std::string title, bool isUsedTempo, in addSong()
/dports/audio/vimpc/vimpc-0.09.2/src/window/
H A Dlibrarywindow.cpp150 case Mpc::SongType: in SearchPattern()
184 …y_.Get(CurrentLine())->expanded_ == true) && (library_.Get(CurrentLine())->type_ != Mpc::SongType)) in Left()
218 if (library_.Get(CurrentLine())->type_ != Mpc::SongType) in Click()
361 if (entry->type_ != Mpc::SongType) in Edit()
397 if (entry->type_ == Mpc::SongType) in Lyrics()
485 …((entry->type_ == Mpc::SongType) && (expression.CompleteMatch(entry->song_->FormatString(setting… in DetermineColour()
493 … if ((entry->type_ == Mpc::SongType) && (entry->song_ != NULL) && (entry->song_->Reference() > 0)) in DetermineColour()
497 else if (entry->type_ != Mpc::SongType) in DetermineColour()
H A Ddirectorywindow.cpp183 case Mpc::SongType:
452 if (entry->type_ == Mpc::SongType)
472 if (entry->type_ == Mpc::SongType)
569 … if ((entry->type_ == Mpc::SongType) && (entry->song_ != NULL) && (entry->song_->Reference() > 0))
/dports/audio/bambootracker/BambooTracker-0.4.5/BambooTracker/
H A Dmisc.hpp47 enum class SongType : int enum
198 inline static size_t getFMChannelCount(SongType type) in getFMChannelCount()
201 case SongType::Standard: return 6; in getFMChannelCount()
202 case SongType::FM3chExpanded: return 9; in getFMChannelCount()
H A Dopna_controller.hpp93 void setMode(SongType mode);
94 SongType getMode() const;
112 SongType mode_;
294 else if (mode_ == SongType::FM3chExpanded && 6 <= ch && ch < 9) return 2; in toInternalFMChannel()
H A Dopna_controller.cpp32 : mode_(SongType::Standard), in OPNAController()
232 void OPNAController::setMode(SongType mode) in setMode()
238 SongType OPNAController::getMode() const in getMode()
428 case SongType::Standard: in keyOnFM()
435 case SongType::FM3chExpanded: in keyOnFM()
488 case SongType::Standard: in keyOffFM()
493 case SongType::FM3chExpanded: in keyOffFM()
709 case SongType::Standard: in setInstrumentFMOperatorEnabled()
714 case SongType::FM3chExpanded: in setInstrumentFMOperatorEnabled()
1596 case SongType::Standard: in restoreFMEnvelopeFromReset()
[all …]
/dports/games/jfsw/jfsw-c434002/src/
H A Dsounds.c127 SongType_t SongType = SongTypeNone; variable
423 else if (SongType == SongTypeVoc) in PlaySong()
453 SongType = SongTypeCDA; in PlaySong()
502 SongType = SongTypeMIDI; in PlaySong()
513 SongType = SongTypeVoc; in PlaySong()
538 } else if (SongType == SongTypeCDA) { in StopSong()
541 SongType = SongTypeNone; in StopSong()
566 if (SongType == SongTypeMIDI) in PauseSong()
574 if (SongType == SongTypeCDA) in PauseSong()
596 if (SongType == SongTypeMIDI) in SongIsPlaying()
[all …]
/dports/audio/vimpc/vimpc-0.09.2/src/buffer/
H A Dlibrary.cpp212 entry->type_ = Mpc::SongType; in Add()
343 if ((entry->type_ == Mpc::SongType) && (entry->song_ != NULL)) in AddToPlaylist()
383 if ((entry->type_ == Mpc::SongType) && (entry->song_ != NULL)) in RemoveFromPlaylist()
412 else if (child->type_ == SongType) in ForEachChild()
479 if ((Get(line)->expanded_ == false) && (Get(line)->type_ != Mpc::SongType)) in Expand()
496 if ((entry->expanded_ == false) || (entry->type_ == Mpc::SongType)) in Collapse()
528 else if (type == Mpc::SongType) in String()
558 else if (type == Mpc::SongType) in PrintString()
H A Dlibrary.hpp48 type_ (SongType), in LibraryEntry()
127 …) && ((childrenInPlaylist_ == static_cast<int32_t>(children_.size())) || (type_ == Mpc::SongType))) in AddedToPlaylist()
135 …) && ((childrenInPlaylist_ == static_cast<int32_t>(children_.size())) || (type_ == Mpc::SongType))) in RemovedFromPlaylist()
H A Ddirectory.cpp98 new Mpc::DirectoryEntry(Mpc::SongType, FileFromURI(song->URI()), directory_, song); in ChangeDirectory()
271 if ((entry->type_ == Mpc::SongType) && (entry->song_ != NULL)) in AddToPlaylist()
300 if ((entry->type_ == Mpc::SongType) && (entry->song_ != NULL)) in RemoveFromPlaylist()
/dports/games/NBlood/NBlood-a1689a4/source/sw/src/
H A Dsounds.cpp131 SongType_t SongType = SongTypeNone; variable
468 if (SongType == SongTypeWave) in PlaySong()
480 else if (SongType == SongTypeMIDI) in PlaySong()
547 SongType = SongTypeMIDI; in PlaySong()
558 SongType = SongTypeWave; in PlaySong()
580 if (SongType == SongTypeWave && SongVoice > 0) in StopSong()
585 else if (SongType == SongTypeMIDI) in StopSong()
589 SongType = SongTypeNone; in StopSong()
604 if (SongType == SongTypeWave && SongVoice > 0) in PauseSong()
613 if (SongType == SongTypeWave && SongVoice > 0) in SetSongVolume()
[all …]
/dports/audio/libechonest/libechonest-2.3.1/tests/
H A DSongTest.cpp227 …params.append( Echonest::Song::SearchParamData( Echonest::Song::SongType, QLatin1String("christmas… in testSearchSongType()
228 …params.append( Echonest::Song::SearchParamData( Echonest::Song::SongType, QLatin1String("acoustic"… in testSearchSongType()
231 …tLocation | Echonest::SongInformation::ArtistFamiliarity | Echonest::SongInformation::SongType ) ); in testSearchSongType()
/dports/audio/libechonest/libechonest-2.3.1/src/
H A DTypeInformation.h100 SongType = 0x40, in Q_DECLARE_OPERATORS_FOR_FLAGS() enumerator
H A DSong.h81 SongType, enumerator
/dports/games/aquaria/Aquaria-OSE-v1.002-22-g84366ad/Aquaria/
H A DPath.h80 void song(SongType song);
H A DScriptedEntity.h60 void song(SongType songType);
/dports/audio/vimpc/vimpc-0.09.2/src/
H A Dsong.hpp41 SongType enumerator

12