branch: interactive/develop 「№629」
Commited by: Rocco Moretti
GitHub commit link: 「166a64d78b6dc9d3」 「№6545」
Difference from previous tested commit:  code diff
Commit date: 2024-07-25 14:25:54
foldit.build.debug foldit.build.release foldit.defines foldit.levels foldit.unit.debug foldit.unit.release

Merge pull request #6545 from RosettaCommons/roccomoretti/fix_autoupload [Foldit] Address race condition in auto solution upload. We're currently getting disk usage errors with the auto solution upload. It looks like the cause is a race condition where the main thread is adding to the same data structure that the solution thread is uploading from, which results in fresh solutions being immediately uploaded, rather than waiting for the next upload window. We can move the to-upload data to a local data structure to avoid the race condition. (We just need to make sure to copy the not-yet-uploaded data back if we encounter a server error.)

...
Test: mac.clang.foldit.build.release

 View log

Loading...

 View log in dialog  View log in log in separate window


branch: interactive/develop 「№628」
Commited by: Andreas Petrides
GitHub commit link: 「f85b24d5cf840885」 「№6530」
Difference from previous tested commit:  code diff
Commit date: 2024-07-17 10:06:22
foldit.build.debug foldit.build.release foldit.defines foldit.levels foldit.unit.debug foldit.unit.release

Merge pull request #6530 from RosettaCommons/interactive/petrides/density_optimizations [Foldit] Optimizations to Density Refinement For Large Puzzles

...
Test: mac.clang.foldit.build.release

 View log

Loading...

 View log in dialog  View log in log in separate window


branch: interactive/develop 「№627」
Commited by: Andreas Petrides
GitHub commit link: 「b66d8cb9442f12e9」 「№6543」
Difference from previous tested commit:  code diff
Commit date: 2024-07-09 10:24:54
foldit.build.debug foldit.build.release foldit.defines foldit.levels foldit.unit.debug foldit.unit.release

Merge pull request #6543 from RosettaCommons/interactive/petrides/trim_untrim_lua_tweak [Foldit] Fix Method Used to Error on Bad Conditions for Trim and Untrim in Lua

...
Test: mac.clang.foldit.build.release

 View log

Loading...

 View log in dialog  View log in log in separate window
Test: ubuntu-20.04.clang.foldit.unit.debug

Failed sub-tests (click for more details):
game:GameApplicationTests_switch


branch: interactive/develop 「№626」
Commited by: Andreas Petrides
GitHub commit link: 「7bad3604cacf301d」 「№6529」
Difference from previous tested commit:  code diff
Commit date: 2024-06-26 15:33:42
foldit.build.debug foldit.build.release foldit.defines foldit.levels foldit.unit.debug foldit.unit.release

Merge pull request #6529 from RosettaCommons/interactive/petrides/add_trim_untrim_to_lua [Foldit] Add Trim and Untrim to Lua

...
Test: mac.clang.foldit.build.release

 View log

Loading...

 View log in dialog  View log in log in separate window
Test: ubuntu-20.04.clang.foldit.unit.debug

Failed sub-tests (click for more details):
game:GameApplicationTests_switch


branch: interactive/develop 「№625」
Commited by: Rocco Moretti
GitHub commit link: 「4abd9158a4d48dd0」 「№6539」
Difference from previous tested commit:  code diff
Commit date: 2024-06-20 09:49:06
foldit.build.debug foldit.build.release foldit.defines foldit.levels foldit.unit.debug foldit.unit.release

Merge pull request #6539 from RosettaCommons/roccomoretti/solutions_dialog [Foldit] Add download dialog for solution list. Player are complaining about not being able to fetch the list of shared solutions. This converts the solution list fetching to be behind the recently added Downloader dialog popup.

...
Test: mac.clang.foldit.build.release

 View log

Loading...

 View log in dialog  View log in log in separate window


branch: interactive/develop 「№624」
Commited by: Rocco Moretti
GitHub commit link: 「d7a834818f06ce44」 「№6537」
Difference from previous tested commit:  code diff
Commit date: 2024-06-18 19:12:11
foldit.build.debug foldit.build.release foldit.defines foldit.levels foldit.unit.debug foldit.unit.release

Merge pull request #6537 from RosettaCommons/roccmoretti/network_popup [Foldit] Add loading/progress dialog popup for puzzle and solution loading Automated timeouts seem to be an issue for some players. Instead of playing guess-and-check with the timeout thresholds (which were getting to be long from a UI perspective anyway), create a dialog box which allows users to cancel the download if the server is stalled. The central clock is animated, to allow players to see that the Foldit client hasn't frozen. The clock will bounce left and right as data is received from the server, which allows players to know if something is happening, or if the server might be stuck. The cancel button will cancel the data transfer, returning the user to what they were doing before. Puzzle download, solution download and solution upload (the actions which we have players complaining about devprev on) have been converted to use the new popup dialog. Since the user has control over transfer cancellation, if we have a progress callback (i.e. we have a dialog box up), we don't have a timeout -- Foldit will sit at the dialog box until the transfer succeeds, gets a failure code from the server, or the user presses cancel. One of the complications is that we can't be holding the GUI mutex while we're waiting for the download to complete. This would keep the dialog box from displaying and updating. The big complication here is that GUI button response callbacks have the GUI mutex held early on in the response chain. So we need to break out the download management into a separate thread. We also need to update the Curl library calls to use a slightly different interface, to allow us to poll for cancellation during the transfer. (Otherwise the download will block until some sort of transfer happens.) There's also some code to make server thread error handling more robust, as well as soft crash timeouts in automated solution uploading (so we can monitor for issues).

...
Test: mac.clang.foldit.build.release

 View log

Loading...

 View log in dialog  View log in log in separate window


branch: interactive/develop 「№623」
Commited by: Jeff Flatten
GitHub commit link: 「ca646d3afc7b461e」 「№6535」
Difference from previous tested commit:  code diff
Commit date: 2024-06-13 15:20:26
foldit.build.debug foldit.build.release foldit.defines foldit.levels foldit.unit.debug foldit.unit.release

Merge pull request #6535 from RosettaCommons/roccomoretti/server_timeout_adjust [Foldit] Update solution/puzzle timeout to be longer.

...
Test: mac.clang.foldit.build.release

 View log

Loading...

 View log in dialog  View log in log in separate window


branch: interactive/develop 「№622」
Commited by: Rocco Moretti
GitHub commit link: 「c9fc6287ed4767dd」 「№6533」
Difference from previous tested commit:  code diff
Commit date: 2024-06-07 15:56:15
foldit.build.debug foldit.build.release foldit.defines foldit.levels foldit.unit.debug foldit.unit.release

Merge pull request #6533 from RosettaCommons/roccmoretti/server_unavailable [Foldit] Add timeout for server communication We're running into a situation where the Foldit server is nominally "up" (so you don't get a full out connection error), but is taking forever to respond. The curl library has a timeout option, so we can recognize we're not getting a response back in a reasonable amount of time, and then raise an error appropriately. I double checked, and it looks like everything communicating with the server should be properly wrapped to catch the exception -- whether it behaves reasonably when the server connection goes away is another question. I tested it with the local server, and things seem to work decently when the connection goes away. (It also works with the login on the main server -- we wait for 5 seconds and then report the appropriate connection error.)

...
Test: mac.clang.foldit.build.release

 View log

Loading...

 View log in dialog  View log in log in separate window


branch: interactive/develop 「№621」
Commited by: Rocco Moretti
GitHub commit link: 「83ce1ccffcc1edbc」 「№6532」
Difference from previous tested commit:  code diff
Commit date: 2024-06-07 15:55:49
foldit.build.debug foldit.build.release foldit.defines foldit.levels foldit.unit.debug foldit.unit.release

Merge pull request #6532 from RosettaCommons/roccomoretti/queue_play_events [Foldit] Convert play event logging to use a deferred queue Previously, the play event logging uploaded to the server directly each time it was called. This PR changes it such that the data gets uploaded to the server at the same time the game scores and the cached solutions get uploaded, hopefully reducing lag due to server communication. (The deferred uploads happen in a separate thread.) I've also changed things around such that the server mutex isn't held throughout the upload process, which should hopefully reduce client freezing due to mutex contention. (e.g. if the main thread wants to post a queued server upload while the periodic upload is happening.)

...
Test: mac.clang.foldit.build.release

 View log

Loading...

 View log in dialog  View log in log in separate window
Test: ubuntu-20.04.clang.foldit.unit.debug

Failed sub-tests (click for more details):
game:ServerTests


branch: interactive/develop 「№620」
Commited by: Rocco Moretti
GitHub commit link: 「a44f5aacc9eac414」 「№6502」
Difference from previous tested commit:  code diff
Commit date: 2024-05-16 16:22:17
foldit.build.debug foldit.build.release foldit.defines foldit.levels foldit.unit.debug foldit.unit.release

Merge pull request #6502 from RosettaCommons/roccomoretti/interactive_telemetry [Foldit] Re-enable event logging With the switch to the new server, the event logging framework was disabled. This makes it hard to get statistics for player behavior, limiting how much info we can pull out for onboarding analysis. It looks like the data storage facilities are functional server-side, we just need to update the client to actually use the new approach. This PR updates the old logging facility to fit into the new framework. I've also cleaned up some of the old logging events which we probably don't need to keep track of (should be easy enough to re-enable), and I've also added logging of tool interactions -- every ~15min or so (or when they exit a puzzle) the count of each move type is uploaded, split by script vs. manual usage. Most actions should be already logged, but there's facilities for adding additional actions to monitor. Note that this needs manual server-side intervention to work. There's a GameplayEvents table which needs to be populated with the contents of standalone::application::GameplayEvent, such that the numbers in the enum match up with the ID in the database table. This can/should be done manually, and can be done any time prior to this code being released. (But should be done before the code goes into devprev.)

...
Test: mac.clang.foldit.build.release

 View log

Loading...

 View log in dialog  View log in log in separate window
Test: ubuntu-20.04.clang.foldit.unit.debug

Failed sub-tests (click for more details):
game:GameApplicationTests_switch


branch: interactive/develop 「№619」
Commited by: Rocco Moretti
GitHub commit link: 「9ed1e813cf376870」 「№6521」
Difference from previous tested commit:  code diff
Commit date: 2024-05-16 16:21:30
foldit.build.debug foldit.build.release foldit.defines foldit.levels foldit.unit.debug foldit.unit.release

Merge pull request #6521 from RosettaCommons/roccomoretti/tag_solutions [Foldit] Upload snapshots of tagged solutions Currently, every five minutes the Foldit client uploads the top scoring solution it saw in the last five minutes. This is broken out by puzzle id, but on certain puzzles it would be nice to be able to get finer-grained results. For example, on ligand design puzzles, it might be nice to have results for the top scoring structure per ligand identity, rather than for as the puzzle as a whole. (Such that you can get more diverse design approaches.) This is particularly true for the ligand puzzles which are more docking puzzle: we want results for all structures, not just the top scoring ones. This PR adds an option to the puzzle_setup file. "post_solution_tag" -- this allows the puzzle creator to specify additional characteristics of the solution result to tag/separate them out. Currently the two options are "Smiles" (splitting the results by the chemical identity of the designable ligand) and "Sequence" (splitting the results by the [protein] sequence of the structure). The default behavior is set to "None", which results in the current one-per-puzzle behavior. Additionally, I discovered that we're not pushing the results (including scores) to the server on client shutdown. It theoretically should be done in the Server destructor, but that's apparently not getting called, possibly due to details of how std::exit() works with destructors. I've also added facilities to GameApplication::handle_exit() to make sure that the pending solutions and scores are properly flushed on client closing.

...
Test: ubuntu-20.04.clang.foldit.build.debug

 View log

Loading...

 View log in dialog  View log in log in separate window
Test: mac.clang.foldit.build.release

 View log

Loading...

 View log in dialog  View log in log in separate window
Test: ubuntu-20.04.clang.foldit.unit.debug

 View log

Loading...

 View log in dialog  View log in log in separate window
Test: ubuntu-20.04.clang.foldit.unit.release

 View log

Loading...

 View log in dialog  View log in log in separate window


branch: interactive/develop 「№618」
Commited by: Rocco Moretti
GitHub commit link: 「12da23e48b24f248」 「№6525」
Difference from previous tested commit:  code diff
Commit date: 2024-05-16 16:20:07
foldit.build.debug foldit.build.release foldit.defines foldit.levels foldit.unit.debug foldit.unit.release

Merge pull request #6525 from RosettaCommons/roccomoretti/auto_ss_load [Foldit] Autogenerate secondary structures if puzzle inputs are missing them I'm tired of having to load a new pdb in with secret keys, running DSSP, then saving it again in order to get decent default secondary structure display with the protein. This PR makes it such that if the puzzle input PDB doesn't contain the secondary structure information block, it will automatically run DSSP on the structure and use that instead. You should still be able to get a non-DSSP secondary structure annotation by manually providing the secondary structure block. But if you forget, you'll get the DSSP based one. (Which is probably what you want, if you didn't think to explicitly specify what it was.)

...
Test: ubuntu-20.04.clang.foldit.build.debug

 View log

Loading...

 View log in dialog  View log in log in separate window
Test: mac.clang.foldit.build.release

 View log

Loading...

 View log in dialog  View log in log in separate window
Test: ubuntu-20.04.clang.foldit.unit.debug

 View log

Loading...

 View log in dialog  View log in log in separate window
Test: ubuntu-20.04.clang.foldit.unit.release

 View log

Loading...

 View log in dialog  View log in log in separate window


branch: interactive/develop 「№617」
Commited by: Rocco Moretti
GitHub commit link: 「d3fa8777ca24647f」 「№6522」
Difference from previous tested commit:  code diff
Commit date: 2024-05-16 16:19:51
foldit.build.debug foldit.build.release foldit.defines foldit.levels foldit.unit.debug foldit.unit.release

Merge pull request #6522 from RosettaCommons/roccomoretti/interactive_qtn [Foldit] Add ability to suppress Quest to the Native popup. If you include a guide structure in the puzzle, you automatically get a "This protein's structure is known. See if you can match it!" popup. There's the possibility you may want to include a guide structure without having that popup. (e.g. to provide a reference backbone in case you don't want to move too far.) This commit adds a puzzle_setup option "quest_to_native" which can be set false to turn off the popup. The default if the option isn't given is true, so existing puzzles should work as they have. Intro/Education/Dojo puzzles should also be unaffected.

...
Test: ubuntu-20.04.clang.foldit.build.debug

 View log

Loading...

 View log in dialog  View log in log in separate window
Test: mac.clang.foldit.build.release

 View log

Loading...

 View log in dialog  View log in log in separate window
Test: ubuntu-20.04.clang.foldit.unit.debug

 View log

Loading...

 View log in dialog  View log in log in separate window
Test: ubuntu-20.04.clang.foldit.unit.release

 View log

Loading...

 View log in dialog  View log in log in separate window


branch: interactive/develop 「№616」
Commited by: Rocco Moretti
GitHub commit link: 「7563242c9ae82580」 「№6524」
Difference from previous tested commit:  code diff
Commit date: 2024-05-16 16:19:04
foldit.build.debug foldit.build.release foldit.defines foldit.levels foldit.unit.debug foldit.unit.release

Merge pull request #6524 from RosettaCommons/roccomoretti/tweak_ligand_anchor [Foldit] Add anchor for Tweak Ligand tool Players have been asking for a way to control which "side" of the ligand changes with the TweakLigand tool. This PR adds a movable Pin (like the FoldTree pin) which allows them to specify an anchor atom. The anchor atom is held fixed, and everything else rotates from it. (Technically, the ligand is rotated, and then the position and orientation of the anchor atom is adjusted to match.) This involved abstracting and generalizing the PinGeom from the FoldTreeComposite. I also adjusted how the rotation amounts were processed, to allow for slightly smoother click-and-hold behavior.

...
Test: ubuntu-20.04.clang.foldit.build.debug

 View log

Loading...

 View log in dialog  View log in log in separate window
Test: mac.clang.foldit.build.release

 View log

Loading...

 View log in dialog  View log in log in separate window
Test: ubuntu-20.04.clang.foldit.unit.debug

 View log

Loading...

 View log in dialog  View log in log in separate window
Test: ubuntu-20.04.clang.foldit.unit.release

 View log

Loading...

 View log in dialog  View log in log in separate window


branch: interactive/develop 「№615」
Commited by: Rocco Moretti
GitHub commit link: 「5dbcb2e595989d8e」 「№6523」
Difference from previous tested commit:  code diff
Commit date: 2024-05-16 16:18:28
foldit.build.debug foldit.build.release foldit.defines foldit.levels foldit.unit.debug foldit.unit.release

Merge pull request #6523 from RosettaCommons/roccomoretti/interactive_ligand_panel_closure [Foldit] Close ligand design panel when action isn't possible The Ligand design panel saves its visiblilty state when switching puzzles. This is a problem when you switch between puzzles where the tool is or is not availible. We had previously added code to turn off the panel for non-ligand design puzzles. However, we missed the case where the puzzle is a ligand design puzzle, but the ligand design panel tool is turned off (in the puzzle setup).

...
Test: ubuntu-20.04.clang.foldit.build.debug

 View log

Loading...

 View log in dialog  View log in log in separate window
Test: mac.clang.foldit.build.release

 View log

Loading...

 View log in dialog  View log in log in separate window
Test: ubuntu-20.04.clang.foldit.unit.debug

 View log

Loading...

 View log in dialog  View log in log in separate window
Test: ubuntu-20.04.clang.foldit.unit.release

 View log

Loading...

 View log in dialog  View log in log in separate window


branch: interactive/develop 「№614」
Commited by: Rocco Moretti
GitHub commit link: 「61c66c5c098799c3」
Difference from previous tested commit:  code diff
Commit date: 2024-05-06 18:36:16
foldit.build.debug foldit.build.release foldit.defines foldit.levels foldit.unit.debug foldit.unit.release

[Foldit] Add abilty to suppress Quest to the Native popup. If you include a guide structure in the puzzle, you automatically get a "This protein's structure is known. See if you can match it!" popup. There's the possiblility you may want to include a guide structure without having that popup. (e.g. to provide a reference backbone in case you don't want to move too far.) This commit adds a puzzle_setup option `"quest_to_native"` which can be set false to turn off the popup. The default if the option isn't given is true, so existing puzzles should work as they have. Intro/Education/Dojo puzzles should also be unaffected.

...
Test: ubuntu-20.04.clang.foldit.build.debug

 View log

Loading...

 View log in dialog  View log in log in separate window
Test: mac.clang.foldit.build.release

 View log

Loading...

 View log in dialog  View log in log in separate window
Test: ubuntu-20.04.clang.foldit.unit.debug

 View log

Loading...

 View log in dialog  View log in log in separate window
Test: ubuntu-20.04.clang.foldit.unit.release

 View log

Loading...

 View log in dialog  View log in log in separate window


1 2 3 4 5 6 7 8 9 .. 40 >

Legend:
queued Queued Test
queued for comparison Test finished running but not yet compared
running Test is Running right now
comparing Test results is now comparing with previous results
finished Test is finished without errors
failed Test failed
build Failed Test could not be run because build failed
script failed Test results is unknow because test-script failed
canceled Test was canceled